Interface StartDevEnvironmentRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeCatalystRequest.Builder,CopyableBuilder<StartDevEnvironmentRequest.Builder,StartDevEnvironmentRequest>,SdkBuilder<StartDevEnvironmentRequest.Builder,StartDevEnvironmentRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- StartDevEnvironmentRequest
public static interface StartDevEnvironmentRequest.Builder extends CodeCatalystRequest.Builder, SdkPojo, CopyableBuilder<StartDevEnvironmentRequest.Builder,StartDevEnvironmentRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StartDevEnvironmentRequest.Builderid(String id)The system-generated unique ID of the Dev Environment.StartDevEnvironmentRequest.Builderides(Collection<IdeConfiguration> ides)Information about the integrated development environment (IDE) configured for a Dev Environment.StartDevEnvironmentRequest.Builderides(Consumer<IdeConfiguration.Builder>... ides)Information about the integrated development environment (IDE) configured for a Dev Environment.StartDevEnvironmentRequest.Builderides(IdeConfiguration... ides)Information about the integrated development environment (IDE) configured for a Dev Environment.StartDevEnvironmentRequest.BuilderinactivityTimeoutMinutes(Integer inactivityTimeoutMinutes)The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.StartDevEnvironmentRequest.BuilderinstanceType(String instanceType)The Amazon EC2 instace type to use for the Dev Environment.StartDevEnvironmentRequest.BuilderinstanceType(InstanceType instanceType)The Amazon EC2 instace type to use for the Dev Environment.StartDevEnvironmentRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)StartDevEnvironmentRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)StartDevEnvironmentRequest.BuilderprojectName(String projectName)The name of the project in the space.StartDevEnvironmentRequest.BuilderspaceName(String spaceName)The name of the space.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codecatalyst.model.CodeCatalystRequest.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, sdkFields
-
-
-
-
Method Detail
-
spaceName
StartDevEnvironmentRequest.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
StartDevEnvironmentRequest.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.
-
id
StartDevEnvironmentRequest.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.
-
ides
StartDevEnvironmentRequest.Builder ides(Collection<IdeConfiguration> ides)
Information about the integrated development environment (IDE) configured for a Dev Environment.
- Parameters:
ides- Information about the integrated development environment (IDE) configured for a Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ides
StartDevEnvironmentRequest.Builder ides(IdeConfiguration... ides)
Information about the integrated development environment (IDE) configured for a Dev Environment.
- Parameters:
ides- Information about the integrated development environment (IDE) configured for a Dev Environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ides
StartDevEnvironmentRequest.Builder ides(Consumer<IdeConfiguration.Builder>... ides)
Information about the integrated development environment (IDE) configured for a 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
StartDevEnvironmentRequest.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
StartDevEnvironmentRequest.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
StartDevEnvironmentRequest.Builder inactivityTimeoutMinutes(Integer inactivityTimeoutMinutes)
The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
- Parameters:
inactivityTimeoutMinutes- The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
StartDevEnvironmentRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
StartDevEnvironmentRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-