Class: Aws::SecurityAgent::Types::VpcConfig

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

Overview

The VPC configuration for a pentest, specifying the VPC, security groups, and subnets to use during testing.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_arnsArray<String>

The Amazon Resource Names (ARNs) of the security groups for the VPC configuration.

Returns:

  • (Array<String>)


4377
4378
4379
4380
4381
4382
4383
# File 'lib/aws-sdk-securityagent/types.rb', line 4377

class VpcConfig < Struct.new(
  :vpc_arn,
  :security_group_arns,
  :subnet_arns)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_arnsArray<String>

The Amazon Resource Names (ARNs) of the subnets for the VPC configuration.

Returns:

  • (Array<String>)


4377
4378
4379
4380
4381
4382
4383
# File 'lib/aws-sdk-securityagent/types.rb', line 4377

class VpcConfig < Struct.new(
  :vpc_arn,
  :security_group_arns,
  :subnet_arns)
  SENSITIVE = []
  include Aws::Structure
end

#vpc_arnString

The Amazon Resource Name (ARN) of the VPC.

Returns:

  • (String)


4377
4378
4379
4380
4381
4382
4383
# File 'lib/aws-sdk-securityagent/types.rb', line 4377

class VpcConfig < Struct.new(
  :vpc_arn,
  :security_group_arns,
  :subnet_arns)
  SENSITIVE = []
  include Aws::Structure
end