Interface CfnNetworkSettingsMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkSettingsMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:06.360Z")
@Stability(Stable)
public interface CfnNetworkSettingsMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnNetworkSettingsPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.workspacesweb.*;
CfnNetworkSettingsMixinProps cfnNetworkSettingsMixinProps = CfnNetworkSettingsMixinProps.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNetworkSettingsMixinPropsstatic final classAn implementation forCfnNetworkSettingsMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()One or more security groups used to control access from streaming instances to your VPC.The subnets in which network interfaces are created to connect streaming instances to your VPC.getTags()The tags to add to the network settings resource.default StringgetVpcId()The VPC that streaming instances will connect to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
One or more security groups used to control access from streaming instances to your VPC.Pattern :
^[\w+\-]+$- See Also:
-
getSubnetIds
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})$- See Also:
-
getTags
The tags to add to the network settings resource.A tag is a key-value pair.
- See Also:
-
getVpcId
The VPC that streaming instances will connect to.Pattern :
^vpc-[0-9a-z]*$- See Also:
-
builder
-