Interface UpdateDevEnvironmentResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeCatalystResponse.Builder,CopyableBuilder<UpdateDevEnvironmentResponse.Builder,UpdateDevEnvironmentResponse>,SdkBuilder<UpdateDevEnvironmentResponse.Builder,UpdateDevEnvironmentResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateDevEnvironmentResponse
public static interface UpdateDevEnvironmentResponse.Builder extends CodeCatalystResponse.Builder, SdkPojo, CopyableBuilder<UpdateDevEnvironmentResponse.Builder,UpdateDevEnvironmentResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateDevEnvironmentResponse.Builderalias(String alias)The user-specified alias for the Dev Environment.UpdateDevEnvironmentResponse.BuilderclientToken(String clientToken)A user-specified idempotency token.UpdateDevEnvironmentResponse.Builderid(String id)The system-generated unique ID of the Dev Environment.UpdateDevEnvironmentResponse.Builderides(Collection<IdeConfiguration> ides)Information about the integrated development environment (IDE) configured for the Dev Environment.UpdateDevEnvironmentResponse.Builderides(Consumer<IdeConfiguration.Builder>... ides)Information about the integrated development environment (IDE) configured for the Dev Environment.UpdateDevEnvironmentResponse.Builderides(IdeConfiguration... ides)Information about the integrated development environment (IDE) configured for the Dev Environment.UpdateDevEnvironmentResponse.BuilderinactivityTimeoutMinutes(Integer inactivityTimeoutMinutes)The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.UpdateDevEnvironmentResponse.BuilderinstanceType(String instanceType)The Amazon EC2 instace type to use for the Dev Environment.UpdateDevEnvironmentResponse.BuilderinstanceType(InstanceType instanceType)The Amazon EC2 instace type to use for the Dev Environment.UpdateDevEnvironmentResponse.BuilderprojectName(String projectName)The name of the project in the space.UpdateDevEnvironmentResponse.BuilderspaceName(String spaceName)The name of the space.-
Methods inherited from interface software.amazon.awssdk.services.codecatalyst.model.CodeCatalystResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
id
UpdateDevEnvironmentResponse.Builder id(String id)
The system-generated unique ID of the Dev Environment.
- Parameters:
id- The system-generated unique ID of the Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spaceName
UpdateDevEnvironmentResponse.Builder spaceName(String spaceName)
The name of the space.
- Parameters:
spaceName- The name of the space.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
projectName
UpdateDevEnvironmentResponse.Builder projectName(String projectName)
The name of the project in the space.
- Parameters:
projectName- The name of the project in the space.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
alias
UpdateDevEnvironmentResponse.Builder alias(String alias)
The user-specified alias for the Dev Environment.
- Parameters:
alias- The user-specified alias for the Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ides
UpdateDevEnvironmentResponse.Builder ides(Collection<IdeConfiguration> ides)
Information about the integrated development environment (IDE) configured for the Dev Environment.
- Parameters:
ides- Information about the integrated development environment (IDE) configured for the Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ides
UpdateDevEnvironmentResponse.Builder ides(IdeConfiguration... ides)
Information about the integrated development environment (IDE) configured for the Dev Environment.
- Parameters:
ides- Information about the integrated development environment (IDE) configured for the Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ides
UpdateDevEnvironmentResponse.Builder ides(Consumer<IdeConfiguration.Builder>... ides)
Information about the integrated development environment (IDE) configured for the Dev Environment.
This is a convenience method that creates an instance of theIdeConfiguration.Builderavoiding the need to create one manually viaIdeConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#ides(List.) - Parameters:
ides- a consumer that will call methods onIdeConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#ides(java.util.Collection)
-
instanceType
UpdateDevEnvironmentResponse.Builder instanceType(String instanceType)
The Amazon EC2 instace type to use for the Dev Environment.
- Parameters:
instanceType- The Amazon EC2 instace type to use for the Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InstanceType,InstanceType
-
instanceType
UpdateDevEnvironmentResponse.Builder instanceType(InstanceType instanceType)
The Amazon EC2 instace type to use for the Dev Environment.
- Parameters:
instanceType- The Amazon EC2 instace type to use for the Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InstanceType,InstanceType
-
inactivityTimeoutMinutes
UpdateDevEnvironmentResponse.Builder inactivityTimeoutMinutes(Integer inactivityTimeoutMinutes)
The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.
- Parameters:
inactivityTimeoutMinutes- The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
UpdateDevEnvironmentResponse.Builder clientToken(String clientToken)
A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.
- Parameters:
clientToken- A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-