interface CfnNetworkSettingsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkSpacesWeb.CfnNetworkSettingsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspacesweb#CfnNetworkSettingsMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspacesweb.CfnNetworkSettingsMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_workspacesweb.CfnNetworkSettingsMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspacesweb » 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 { aws_workspacesweb as workspacesweb } from '@aws-cdk/cfn-property-mixins';
const cfnNetworkSettingsMixinProps: workspacesweb.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