Class CfnDataSource.DataSourceVpcConfigurationProperty
Provides configuration information needed to connect to an Amazon VPC (Virtual Private Cloud).
Inheritance
System.Object
CfnDataSource.DataSourceVpcConfigurationProperty
Namespace: Amazon.CDK.AwsQbusiness
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DataSourceVpcConfigurationProperty : Object, CfnDataSource.IDataSourceVpcConfigurationProperty
Syntax (vb)
Public Class DataSourceVpcConfigurationProperty
Inherits Object
Implements CfnDataSource.IDataSourceVpcConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_qbusiness;
var dataSourceVpcConfigurationProperty = new DataSourceVpcConfigurationProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" }
};
Synopsis
Constructors
DataSourceVpcConfigurationProperty() |
Properties
SecurityGroupIds | A list of identifiers of security groups within your Amazon VPC. |
SubnetIds | A list of identifiers for subnets within your Amazon VPC. |
Constructors
DataSourceVpcConfigurationProperty()
public DataSourceVpcConfigurationProperty()
Properties
SecurityGroupIds
A list of identifiers of security groups within your Amazon VPC.
public string[] SecurityGroupIds { get; set; }
Property Value
System.String[]
Remarks
The security groups should enable Amazon Q Business to connect to the data source.
SubnetIds
A list of identifiers for subnets within your Amazon VPC.
public string[] SubnetIds { get; set; }
Property Value
System.String[]
Remarks
The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.