Class: Aws::CodeBuild::Types::DockerServer

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb

Overview

Contains docker server information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#compute_typeString

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:

  • (String)


2614
2615
2616
2617
2618
2619
2620
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 2614

class DockerServer < Struct.new(
  :compute_type,
  :security_group_ids,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#security_group_idsArray<String>

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:

  • (Array<String>)


2614
2615
2616
2617
2618
2619
2620
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 2614

class DockerServer < Struct.new(
  :compute_type,
  :security_group_ids,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusTypes::DockerServerStatus

A DockerServerStatus object to use for this docker server.

Note that status is only an output and cannot be passed in as an input.



2614
2615
2616
2617
2618
2619
2620
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 2614

class DockerServer < Struct.new(
  :compute_type,
  :security_group_ids,
  :status)
  SENSITIVE = []
  include Aws::Structure
end