pub struct InstanceConnectEndpoint {Show 15 fields
pub instance_connect_endpoint_id: String,
pub instance_connect_endpoint_arn: String,
pub subnet_id: String,
pub vpc_id: String,
pub availability_zone: String,
pub state: String,
pub created_at: String,
pub preserve_client_ip: bool,
pub security_group_ids: Vec<String>,
pub network_interface_ids: Vec<String>,
pub dns_name: String,
pub fips_dns_name: String,
pub ip_address_type: String,
pub owner_id: String,
pub tags: Tags,
}Fields§
§instance_connect_endpoint_id: String§instance_connect_endpoint_arn: String§subnet_id: String§vpc_id: String§availability_zone: String§state: String§created_at: String§preserve_client_ip: bool§security_group_ids: Vec<String>§network_interface_ids: Vec<String>§dns_name: String§fips_dns_name: String§ip_address_type: String§owner_id: StringTrait Implementations§
Source§impl Clone for InstanceConnectEndpoint
impl Clone for InstanceConnectEndpoint
Source§fn clone(&self) -> InstanceConnectEndpoint
fn clone(&self) -> InstanceConnectEndpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstanceConnectEndpoint
impl Debug for InstanceConnectEndpoint
Source§impl From<&InstanceConnectEndpoint> for InstanceConnectEndpointView
impl From<&InstanceConnectEndpoint> for InstanceConnectEndpointView
Source§fn from(i: &InstanceConnectEndpoint) -> Self
fn from(i: &InstanceConnectEndpoint) -> Self
Converts to this type from the input type.
Source§impl From<InstanceConnectEndpointView> for InstanceConnectEndpoint
impl From<InstanceConnectEndpointView> for InstanceConnectEndpoint
Source§fn from(i: InstanceConnectEndpointView) -> Self
fn from(i: InstanceConnectEndpointView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InstanceConnectEndpoint
impl RefUnwindSafe for InstanceConnectEndpoint
impl Send for InstanceConnectEndpoint
impl Sync for InstanceConnectEndpoint
impl Unpin for InstanceConnectEndpoint
impl UnsafeUnpin for InstanceConnectEndpoint
impl UnwindSafe for InstanceConnectEndpoint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.