Interface AccountUsage.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AccountUsage.Builder,AccountUsage>
,SdkBuilder<AccountUsage.Builder,AccountUsage>
,SdkPojo
- Enclosing class:
- AccountUsage
public static interface AccountUsage.Builder extends SdkPojo, CopyableBuilder<AccountUsage.Builder,AccountUsage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountUsage.Builder
functionCount(Long functionCount)
The number of Lambda functions.AccountUsage.Builder
totalCodeSize(Long totalCodeSize)
The amount of storage space, in bytes, that's being used by deployment packages and layer archives.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
totalCodeSize
AccountUsage.Builder totalCodeSize(Long totalCodeSize)
The amount of storage space, in bytes, that's being used by deployment packages and layer archives.
- Parameters:
totalCodeSize
- The amount of storage space, in bytes, that's being used by deployment packages and layer archives.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionCount
AccountUsage.Builder functionCount(Long functionCount)
The number of Lambda functions.
- Parameters:
functionCount
- The number of Lambda functions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-