Class: Aws::Synthetics::Types::VpcConfigInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::VpcConfigInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-synthetics/types.rb
Overview
If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see [ Running a Canary in a VPC].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_VPC.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ipv_6_allowed_for_dual_stack ⇒ Boolean
Set this to ‘true` to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets.
-
#security_group_ids ⇒ Array<String>
The IDs of the security groups for this canary.
-
#subnet_ids ⇒ Array<String>
The IDs of the subnets where this canary is to run.
Instance Attribute Details
#ipv_6_allowed_for_dual_stack ⇒ Boolean
Set this to ‘true` to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets. The default is `false`
1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1989 class VpcConfigInput < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
The IDs of the security groups for this canary.
1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1989 class VpcConfigInput < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The IDs of the subnets where this canary is to run.
1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1989 class VpcConfigInput < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |