Class: Aws::CodeBuild::Types::VpcConfig

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

Overview

Note:

When making an API call, you may pass VpcConfig data as a hash:

{
  vpc_id: "NonEmptyString",
  subnets: ["NonEmptyString"],
  security_group_ids: ["NonEmptyString"],
}

Information about the VPC configuration that AWS CodeBuild accesses.

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

A list of one or more security groups IDs in your Amazon VPC.

Returns:

  • (Array<String>)


2931
2932
2933
2934
2935
2936
# File 'lib/aws-sdk-codebuild/types.rb', line 2931

class VpcConfig < Struct.new(
  :vpc_id,
  :subnets,
  :security_group_ids)
  include Aws::Structure
end

#subnetsArray<String>

A list of one or more subnet IDs in your Amazon VPC.

Returns:

  • (Array<String>)


2931
2932
2933
2934
2935
2936
# File 'lib/aws-sdk-codebuild/types.rb', line 2931

class VpcConfig < Struct.new(
  :vpc_id,
  :subnets,
  :security_group_ids)
  include Aws::Structure
end

#vpc_idString

The ID of the Amazon VPC.

Returns:

  • (String)


2931
2932
2933
2934
2935
2936
# File 'lib/aws-sdk-codebuild/types.rb', line 2931

class VpcConfig < Struct.new(
  :vpc_id,
  :subnets,
  :security_group_ids)
  include Aws::Structure
end