Class: Aws::ManagedGrafana::Types::VpcConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedGrafana::Types::VpcConfiguration
- Defined in:
- gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb
Overview
The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to.
securityGroupIds
and subnetIds
must be part of the same
VPC.
Connecting to a private VPC is not yet available in the Asia Pacific (Seoul) Region (ap-northeast-2).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
The list of Amazon EC2 security group IDs attached to the Amazon VPC for your Grafana workspace to connect.
-
#subnet_ids ⇒ Array<String>
The list of Amazon EC2 subnet IDs created in the Amazon VPC for your Grafana workspace to connect.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
The list of Amazon EC2 security group IDs attached to the Amazon VPC for your Grafana workspace to connect. Duplicates not allowed.
1977 1978 1979 1980 1981 1982 |
# File 'gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb', line 1977 class VpcConfiguration < Struct.new( :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The list of Amazon EC2 subnet IDs created in the Amazon VPC for your Grafana workspace to connect. Duplicates not allowed.
1977 1978 1979 1980 1981 1982 |
# File 'gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb', line 1977 class VpcConfiguration < Struct.new( :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |