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.
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.
1473 1474 1475 1476 1477 1478 |
# File 'gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb', line 1473 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.
1473 1474 1475 1476 1477 1478 |
# File 'gems/aws-sdk-managedgrafana/lib/aws-sdk-managedgrafana/types.rb', line 1473 class VpcConfiguration < Struct.new( :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |