Interface CfnWorkspace.VpcConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspace.VpcConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnWorkspace
@Stability(Stable)
public static interface CfnWorkspace.VpcConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to.
Provided
securityGroupIds
andsubnetIds
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).
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.grafana.*; VpcConfigurationProperty vpcConfigurationProperty = VpcConfigurationProperty.builder() .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkspace.VpcConfigurationProperty
static final class
An implementation forCfnWorkspace.VpcConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The list of Amazon EC2 security group IDs attached to the Amazon VPC for your Grafana workspace to connect.The list of Amazon EC2 subnet IDs created in the Amazon VPC for your Grafana workspace to connect.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The list of Amazon EC2 security group IDs attached to the Amazon VPC for your Grafana workspace to connect.Duplicates not allowed.
Array Members : Minimum number of 1 items. Maximum number of 5 items.
Length : Minimum length of 0. Maximum length of 255.
- See Also:
-
getSubnetIds
The list of Amazon EC2 subnet IDs created in the Amazon VPC for your Grafana workspace to connect.Duplicates not allowed.
Array Members : Minimum number of 2 items. Maximum number of 6 items.
Length : Minimum length of 0. Maximum length of 255.
- See Also:
-
builder
-