Struct aws_sdk_workspacesweb::model::NetworkSettings [−][src]
#[non_exhaustive]pub struct NetworkSettings {
pub network_settings_arn: Option<String>,
pub associated_portal_arns: Option<Vec<String>>,
pub vpc_id: Option<String>,
pub subnet_ids: Option<Vec<String>>,
pub security_group_ids: Option<Vec<String>>,
}
Expand description
A network settings resource that can be associated with a web portal. Once associated with a web portal, network settings define how streaming instances will connect with your specified VPC.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.network_settings_arn: Option<String>
The ARN of the network settings.
associated_portal_arns: Option<Vec<String>>
A list of web portal ARNs that this network settings is associated with.
vpc_id: Option<String>
The VPC that streaming instances will connect to.
subnet_ids: Option<Vec<String>>
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.
security_group_ids: Option<Vec<String>>
One or more security groups used to control access from streaming instances to your VPC.
Implementations
The ARN of the network settings.
A list of web portal ARNs that this network settings is associated with.
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.
Creates a new builder-style object to manufacture NetworkSettings
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for NetworkSettings
impl Send for NetworkSettings
impl Sync for NetworkSettings
impl Unpin for NetworkSettings
impl UnwindSafe for NetworkSettings
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more