interface CfnNetworkSettingsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnNetworkSettingsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnNetworkSettingsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnNetworkSettingsMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnNetworkSettingsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnNetworkSettingsMixinProps |
Properties for CfnNetworkSettingsPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const cfnNetworkSettingsMixinProps: workspacesweb_mixins.CfnNetworkSettingsMixinProps = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | One or more security groups used to control access from streaming instances to your VPC. |
| subnet | string[] | The subnets in which network interfaces are created to connect streaming instances to your VPC. |
| tags? | Cfn[] | The tags to add to the network settings resource. |
| vpc | string | The VPC that streaming instances will connect to. |
securityGroupIds?
Type:
string[]
(optional)
One or more security groups used to control access from streaming instances to your VPC.
Pattern : ^[\w+\-]+$
subnetIds?
Type:
string[]
(optional)
The subnets in which network interfaces are created to connect streaming instances to your VPC.
At least two of these subnets must be in different availability zones.
Pattern : ^subnet-([0-9a-f]{8}|[0-9a-f]{17})$
tags?
Type:
Cfn[]
(optional)
The tags to add to the network settings resource.
A tag is a key-value pair.
vpcId?
Type:
string
(optional)
The VPC that streaming instances will connect to.
Pattern : ^vpc-[0-9a-z]*$

.NET
Go
Java
Python
TypeScript