Interface GetAccountSettingsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetAccountSettingsResponse.Builder,GetAccountSettingsResponse>,LambdaResponse.Builder,SdkBuilder<GetAccountSettingsResponse.Builder,GetAccountSettingsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetAccountSettingsResponse
@Mutable @NotThreadSafe public static interface GetAccountSettingsResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<GetAccountSettingsResponse.Builder,GetAccountSettingsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetAccountSettingsResponse.BuilderaccountLimit(Consumer<AccountLimit.Builder> accountLimit)Limits that are related to concurrency and code storage.GetAccountSettingsResponse.BuilderaccountLimit(AccountLimit accountLimit)Limits that are related to concurrency and code storage.default GetAccountSettingsResponse.BuilderaccountUsage(Consumer<AccountUsage.Builder> accountUsage)The number of functions and amount of storage in use.GetAccountSettingsResponse.BuilderaccountUsage(AccountUsage accountUsage)The number of functions and amount of storage in use.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lambda.model.LambdaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
accountLimit
GetAccountSettingsResponse.Builder accountLimit(AccountLimit accountLimit)
Limits that are related to concurrency and code storage.
- Parameters:
accountLimit- Limits that are related to concurrency and code storage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountLimit
default GetAccountSettingsResponse.Builder accountLimit(Consumer<AccountLimit.Builder> accountLimit)
Limits that are related to concurrency and code storage.
This is a convenience method that creates an instance of theAccountLimit.Builderavoiding the need to create one manually viaAccountLimit.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaccountLimit(AccountLimit).- Parameters:
accountLimit- a consumer that will call methods onAccountLimit.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
accountLimit(AccountLimit)
-
accountUsage
GetAccountSettingsResponse.Builder accountUsage(AccountUsage accountUsage)
The number of functions and amount of storage in use.
- Parameters:
accountUsage- The number of functions and amount of storage in use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountUsage
default GetAccountSettingsResponse.Builder accountUsage(Consumer<AccountUsage.Builder> accountUsage)
The number of functions and amount of storage in use.
This is a convenience method that creates an instance of theAccountUsage.Builderavoiding the need to create one manually viaAccountUsage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaccountUsage(AccountUsage).- Parameters:
accountUsage- a consumer that will call methods onAccountUsage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
accountUsage(AccountUsage)
-
-