Class: Aws::Synthetics::Types::VpcConfigOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::VpcConfigOutput
- 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
-
#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.
-
#vpc_id ⇒ String
The IDs of the VPC where this canary is to run.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
The IDs of the security groups for this canary.
2011 2012 2013 2014 2015 2016 2017 |
# File 'lib/aws-sdk-synthetics/types.rb', line 2011 class VpcConfigOutput < Struct.new( :vpc_id, :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The IDs of the subnets where this canary is to run.
2011 2012 2013 2014 2015 2016 2017 |
# File 'lib/aws-sdk-synthetics/types.rb', line 2011 class VpcConfigOutput < Struct.new( :vpc_id, :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The IDs of the VPC where this canary is to run.
2011 2012 2013 2014 2015 2016 2017 |
# File 'lib/aws-sdk-synthetics/types.rb', line 2011 class VpcConfigOutput < Struct.new( :vpc_id, :subnet_ids, :security_group_ids) SENSITIVE = [] include Aws::Structure end |