Class: Aws::CodeBuild::Types::DockerServer
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::DockerServer
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Contains docker server information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compute_type ⇒ String
Information about the compute resources the docker server uses.
-
#security_group_ids ⇒ Array<String>
A list of one or more security groups IDs.
-
#status ⇒ Types::DockerServerStatus
A DockerServerStatus object to use for this docker server.
Instance Attribute Details
#compute_type ⇒ String
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.
2609 2610 2611 2612 2613 2614 2615 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2609 class DockerServer < Struct.new( :compute_type, :security_group_ids, :status) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
A list of one or more security groups IDs.
<note markdown=“1”> 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.
</note>
2609 2610 2611 2612 2613 2614 2615 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2609 class DockerServer < Struct.new( :compute_type, :security_group_ids, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ Types::DockerServerStatus
A DockerServerStatus object to use for this docker server.
2609 2610 2611 2612 2613 2614 2615 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2609 class DockerServer < Struct.new( :compute_type, :security_group_ids, :status) SENSITIVE = [] include Aws::Structure end |