Class: Aws::ManagedGrafana::Types::VpcConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

<note markdown=“1”> Provided ‘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).

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

The list of Amazon EC2 security group IDs attached to the Amazon VPC for your Grafana workspace to connect. Duplicates not allowed.

Returns:

  • (Array<String>)


1977
1978
1979
1980
1981
1982
# File 'lib/aws-sdk-managedgrafana/types.rb', line 1977

class VpcConfiguration < Struct.new(
  :security_group_ids,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idsArray<String>

The list of Amazon EC2 subnet IDs created in the Amazon VPC for your Grafana workspace to connect. Duplicates not allowed.

Returns:

  • (Array<String>)


1977
1978
1979
1980
1981
1982
# File 'lib/aws-sdk-managedgrafana/types.rb', line 1977

class VpcConfiguration < Struct.new(
  :security_group_ids,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end