Class: Aws::SecurityAgent::Types::VpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::VpcConfig
- 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
-
#security_group_arns ⇒ Array<String>
The Amazon Resource Names (ARNs) of the security groups for the VPC configuration.
-
#subnet_arns ⇒ Array<String>
The Amazon Resource Names (ARNs) of the subnets for the VPC configuration.
-
#vpc_arn ⇒ String
The Amazon Resource Name (ARN) of the VPC.
Instance Attribute Details
#security_group_arns ⇒ Array<String>
The Amazon Resource Names (ARNs) of the security groups for the VPC configuration.
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_arns ⇒ Array<String>
The Amazon Resource Names (ARNs) of the subnets for the VPC configuration.
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 |