Struct aws_sdk_workspacesweb::model::network_settings::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for NetworkSettings
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn network_settings_arn(self, input: impl Into<String>) -> Self
pub fn network_settings_arn(self, input: impl Into<String>) -> Self
The ARN of the network settings.
sourcepub fn set_network_settings_arn(self, input: Option<String>) -> Self
pub fn set_network_settings_arn(self, input: Option<String>) -> Self
The ARN of the network settings.
sourcepub fn associated_portal_arns(self, input: impl Into<String>) -> Self
pub fn associated_portal_arns(self, input: impl Into<String>) -> Self
Appends an item to associated_portal_arns
.
To override the contents of this collection use set_associated_portal_arns
.
A list of web portal ARNs that this network settings is associated with.
sourcepub fn set_associated_portal_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_associated_portal_arns(self, input: Option<Vec<String>>) -> Self
A list of web portal ARNs that this network settings is associated with.
sourcepub fn vpc_id(self, input: impl Into<String>) -> Self
pub fn vpc_id(self, input: impl Into<String>) -> Self
The VPC that streaming instances will connect to.
sourcepub fn set_vpc_id(self, input: Option<String>) -> Self
pub fn set_vpc_id(self, input: Option<String>) -> Self
The VPC that streaming instances will connect to.
sourcepub fn subnet_ids(self, input: impl Into<String>) -> Self
pub fn subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to subnet_ids
.
To override the contents of this collection use set_subnet_ids
.
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.
sourcepub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
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.
sourcepub fn security_group_ids(self, input: impl Into<String>) -> Self
pub fn security_group_ids(self, input: impl Into<String>) -> Self
Appends an item to security_group_ids
.
To override the contents of this collection use set_security_group_ids
.
One or more security groups used to control access from streaming instances to your VPC.
sourcepub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
One or more security groups used to control access from streaming instances to your VPC.
sourcepub fn build(self) -> NetworkSettings
pub fn build(self) -> NetworkSettings
Consumes the builder and constructs a NetworkSettings
.