Interface CreateApplicationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeDeployRequest.Builder,CopyableBuilder<CreateApplicationRequest.Builder,CreateApplicationRequest>,SdkBuilder<CreateApplicationRequest.Builder,CreateApplicationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateApplicationRequest
public static interface CreateApplicationRequest.Builder extends CodeDeployRequest.Builder, SdkPojo, CopyableBuilder<CreateApplicationRequest.Builder,CreateApplicationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateApplicationRequest.BuilderapplicationName(String applicationName)The name of the application.CreateApplicationRequest.BuildercomputePlatform(String computePlatform)The destination platform type for the deployment (Lambda,Server, orECS).CreateApplicationRequest.BuildercomputePlatform(ComputePlatform computePlatform)The destination platform type for the deployment (Lambda,Server, orECS).CreateApplicationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateApplicationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateApplicationRequest.Buildertags(Collection<Tag> tags)The metadata that you apply to CodeDeploy applications to help you organize and categorize them.CreateApplicationRequest.Buildertags(Consumer<Tag.Builder>... tags)The metadata that you apply to CodeDeploy applications to help you organize and categorize them.CreateApplicationRequest.Buildertags(Tag... tags)The metadata that you apply to CodeDeploy applications to help you organize and categorize them.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codedeploy.model.CodeDeployRequest.Builder
build
-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
applicationName
CreateApplicationRequest.Builder applicationName(String applicationName)
The name of the application. This name must be unique with the applicable user or Amazon Web Services account.
- Parameters:
applicationName- The name of the application. This name must be unique with the applicable user or Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computePlatform
CreateApplicationRequest.Builder computePlatform(String computePlatform)
The destination platform type for the deployment (
Lambda,Server, orECS).- Parameters:
computePlatform- The destination platform type for the deployment (Lambda,Server, orECS).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComputePlatform,ComputePlatform
-
computePlatform
CreateApplicationRequest.Builder computePlatform(ComputePlatform computePlatform)
The destination platform type for the deployment (
Lambda,Server, orECS).- Parameters:
computePlatform- The destination platform type for the deployment (Lambda,Server, orECS).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComputePlatform,ComputePlatform
-
tags
CreateApplicationRequest.Builder tags(Collection<Tag> tags)
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
- Parameters:
tags- The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateApplicationRequest.Builder tags(Tag... tags)
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
- Parameters:
tags- The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateApplicationRequest.Builder tags(Consumer<Tag.Builder>... tags)
The metadata that you apply to CodeDeploy applications to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
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
CreateApplicationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateApplicationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-