pub struct UpdateCompanyNetworkConfigurationRequest {
pub fleet_arn: String,
pub security_group_ids: Vec<String>,
pub subnet_ids: Vec<String>,
pub vpc_id: String,
}
Fields§
§fleet_arn: String
The ARN of the fleet.
security_group_ids: Vec<String>
The security groups associated with access to the provided subnets.
subnet_ids: Vec<String>
The subnets used for X-ENI connections from Amazon WorkLink rendering containers.
vpc_id: String
The VPC with connectivity to associated websites.
Trait Implementations§
Source§impl Clone for UpdateCompanyNetworkConfigurationRequest
impl Clone for UpdateCompanyNetworkConfigurationRequest
Source§fn clone(&self) -> UpdateCompanyNetworkConfigurationRequest
fn clone(&self) -> UpdateCompanyNetworkConfigurationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for UpdateCompanyNetworkConfigurationRequest
impl Default for UpdateCompanyNetworkConfigurationRequest
Source§fn default() -> UpdateCompanyNetworkConfigurationRequest
fn default() -> UpdateCompanyNetworkConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateCompanyNetworkConfigurationRequest
impl PartialEq for UpdateCompanyNetworkConfigurationRequest
Source§fn eq(&self, other: &UpdateCompanyNetworkConfigurationRequest) -> bool
fn eq(&self, other: &UpdateCompanyNetworkConfigurationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateCompanyNetworkConfigurationRequest
Auto Trait Implementations§
impl Freeze for UpdateCompanyNetworkConfigurationRequest
impl RefUnwindSafe for UpdateCompanyNetworkConfigurationRequest
impl Send for UpdateCompanyNetworkConfigurationRequest
impl Sync for UpdateCompanyNetworkConfigurationRequest
impl Unpin for UpdateCompanyNetworkConfigurationRequest
impl UnwindSafe for UpdateCompanyNetworkConfigurationRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more