Interface CreateAppBundleRequest.Builder
-
- All Superinterfaces:
AppFabricRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<CreateAppBundleRequest.Builder,CreateAppBundleRequest>,SdkBuilder<CreateAppBundleRequest.Builder,CreateAppBundleRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateAppBundleRequest
public static interface CreateAppBundleRequest.Builder extends AppFabricRequest.Builder, SdkPojo, CopyableBuilder<CreateAppBundleRequest.Builder,CreateAppBundleRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateAppBundleRequest.BuilderclientToken(String clientToken)Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request.CreateAppBundleRequest.BuildercustomerManagedKeyIdentifier(String customerManagedKeyIdentifier)The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data.CreateAppBundleRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateAppBundleRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateAppBundleRequest.Buildertags(Collection<Tag> tags)A map of the key-value pairs of the tag or tags to assign to the resource.CreateAppBundleRequest.Buildertags(Consumer<Tag.Builder>... tags)A map of the key-value pairs of the tag or tags to assign to the resource.CreateAppBundleRequest.Buildertags(Tag... tags)A map of the key-value pairs of the tag or tags to assign to the resource.-
Methods inherited from interface software.amazon.awssdk.services.appfabric.model.AppFabricRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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
-
clientToken
CreateAppBundleRequest.Builder clientToken(String clientToken)
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.
If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same
ClientToken, but with different parameters, the retry fails with anIdempotentParameterMismatcherror.- Parameters:
clientToken- Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.If you don't provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same
ClientToken, but with different parameters, the retry fails with anIdempotentParameterMismatcherror.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customerManagedKeyIdentifier
CreateAppBundleRequest.Builder customerManagedKeyIdentifier(String customerManagedKeyIdentifier)
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption.
- Parameters:
customerManagedKeyIdentifier- The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateAppBundleRequest.Builder tags(Collection<Tag> tags)
A map of the key-value pairs of the tag or tags to assign to the resource.
- Parameters:
tags- A map of the key-value pairs of the tag or tags to assign to the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateAppBundleRequest.Builder tags(Tag... tags)
A map of the key-value pairs of the tag or tags to assign to the resource.
- Parameters:
tags- A map of the key-value pairs of the tag or tags to assign to the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateAppBundleRequest.Builder tags(Consumer<Tag.Builder>... tags)
A map of the key-value pairs of the tag or tags to assign to the resource.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
overrideConfiguration
CreateAppBundleRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateAppBundleRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-