Class CfnNetworkSettingsMixinProps
Properties for CfnNetworkSettingsPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnNetworkSettingsMixinProps : ICfnNetworkSettingsMixinProps
Syntax (vb)
Public Class CfnNetworkSettingsMixinProps Implements ICfnNetworkSettingsMixinProps
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.Mixins.Preview.AWS.WorkSpacesWeb.Mixins;
var cfnNetworkSettingsMixinProps = new CfnNetworkSettingsMixinProps {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
VpcId = "vpcId"
};
Synopsis
Constructors
| CfnNetworkSettingsMixinProps() | Properties for CfnNetworkSettingsPropsMixin. |
Properties
| SecurityGroupIds | One or more security groups used to control access from streaming instances to your VPC. |
| SubnetIds | The subnets in which network interfaces are created to connect streaming instances to your VPC. |
| Tags | The tags to add to the network settings resource. |
| VpcId | The VPC that streaming instances will connect to. |
Constructors
CfnNetworkSettingsMixinProps()
Properties for CfnNetworkSettingsPropsMixin.
public CfnNetworkSettingsMixinProps()
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.Mixins.Preview.AWS.WorkSpacesWeb.Mixins;
var cfnNetworkSettingsMixinProps = new CfnNetworkSettingsMixinProps {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
VpcId = "vpcId"
};
Properties
SecurityGroupIds
One or more security groups used to control access from streaming instances to your VPC.
public string[]? SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
SubnetIds
The subnets in which network interfaces are created to connect streaming instances to your VPC.
public string[]? SubnetIds { get; set; }
Property Value
string[]
Remarks
At least two of these subnets must be in different availability zones.
Pattern : ^subnet-([0-9a-f]{8}|[0-9a-f]{17})$
Tags
The tags to add to the network settings resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
VpcId
The VPC that streaming instances will connect to.
public string? VpcId { get; set; }