Interface DockerServer.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DockerServer.Builder,
,DockerServer> SdkBuilder<DockerServer.Builder,
,DockerServer> SdkPojo
- Enclosing class:
DockerServer
-
Method Summary
Modifier and TypeMethodDescriptioncomputeType
(String computeType) Information about the compute resources the docker server uses.computeType
(ComputeType computeType) Information about the compute resources the docker server uses.securityGroupIds
(String... securityGroupIds) A list of one or more security groups IDs.securityGroupIds
(Collection<String> securityGroupIds) A list of one or more security groups IDs.default DockerServer.Builder
status
(Consumer<DockerServerStatus.Builder> status) A DockerServerStatus object to use for this docker server.status
(DockerServerStatus status) A DockerServerStatus object to use for this docker server.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 Details
-
computeType
Information about the compute resources the docker server uses. Available values include:
-
BUILD_GENERAL1_SMALL
: Use up to 4 GiB memory and 2 vCPUs for your docker server. -
BUILD_GENERAL1_MEDIUM
: Use up to 8 GiB memory and 4 vCPUs for your docker server. -
BUILD_GENERAL1_LARGE
: Use up to 16 GiB memory and 8 vCPUs for your docker server. -
BUILD_GENERAL1_XLARGE
: Use up to 64 GiB memory and 32 vCPUs for your docker server. -
BUILD_GENERAL1_2XLARGE
: Use up to 128 GiB memory and 64 vCPUs for your docker server.
- Parameters:
computeType
- Information about the compute resources the docker server uses. Available values include:-
BUILD_GENERAL1_SMALL
: Use up to 4 GiB memory and 2 vCPUs for your docker server. -
BUILD_GENERAL1_MEDIUM
: Use up to 8 GiB memory and 4 vCPUs for your docker server. -
BUILD_GENERAL1_LARGE
: Use up to 16 GiB memory and 8 vCPUs for your docker server. -
BUILD_GENERAL1_XLARGE
: Use up to 64 GiB memory and 32 vCPUs for your docker server. -
BUILD_GENERAL1_2XLARGE
: Use up to 128 GiB memory and 64 vCPUs for your docker server.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
computeType
Information about the compute resources the docker server uses. Available values include:
-
BUILD_GENERAL1_SMALL
: Use up to 4 GiB memory and 2 vCPUs for your docker server. -
BUILD_GENERAL1_MEDIUM
: Use up to 8 GiB memory and 4 vCPUs for your docker server. -
BUILD_GENERAL1_LARGE
: Use up to 16 GiB memory and 8 vCPUs for your docker server. -
BUILD_GENERAL1_XLARGE
: Use up to 64 GiB memory and 32 vCPUs for your docker server. -
BUILD_GENERAL1_2XLARGE
: Use up to 128 GiB memory and 64 vCPUs for your docker server.
- Parameters:
computeType
- Information about the compute resources the docker server uses. Available values include:-
BUILD_GENERAL1_SMALL
: Use up to 4 GiB memory and 2 vCPUs for your docker server. -
BUILD_GENERAL1_MEDIUM
: Use up to 8 GiB memory and 4 vCPUs for your docker server. -
BUILD_GENERAL1_LARGE
: Use up to 16 GiB memory and 8 vCPUs for your docker server. -
BUILD_GENERAL1_XLARGE
: Use up to 64 GiB memory and 32 vCPUs for your docker server. -
BUILD_GENERAL1_2XLARGE
: Use up to 128 GiB memory and 64 vCPUs for your docker server.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
securityGroupIds
A list of one or more security groups IDs.
Security groups configured for Docker servers should allow ingress network traffic from the VPC configured in the project. They should allow ingress on port 9876.
- Parameters:
securityGroupIds
- A list of one or more security groups IDs.Security groups configured for Docker servers should allow ingress network traffic from the VPC configured in the project. They should allow ingress on port 9876.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
A list of one or more security groups IDs.
Security groups configured for Docker servers should allow ingress network traffic from the VPC configured in the project. They should allow ingress on port 9876.
- Parameters:
securityGroupIds
- A list of one or more security groups IDs.Security groups configured for Docker servers should allow ingress network traffic from the VPC configured in the project. They should allow ingress on port 9876.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
A DockerServerStatus object to use for this docker server.
- Parameters:
status
- A DockerServerStatus object to use for this docker server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
A DockerServerStatus object to use for this docker server.
This is a convenience method that creates an instance of theDockerServerStatus.Builder
avoiding the need to create one manually viaDockerServerStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostatus(DockerServerStatus)
.- Parameters:
status
- a consumer that will call methods onDockerServerStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-