#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for AwsEc2NetworkInterfaceDetails
Implementations
sourceimpl Builder
impl Builder
sourcepub fn attachment(self, input: AwsEc2NetworkInterfaceAttachment) -> Self
pub fn attachment(self, input: AwsEc2NetworkInterfaceAttachment) -> Self
The network interface attachment.
sourcepub fn set_attachment(
self,
input: Option<AwsEc2NetworkInterfaceAttachment>
) -> Self
pub fn set_attachment(
self,
input: Option<AwsEc2NetworkInterfaceAttachment>
) -> Self
The network interface attachment.
sourcepub fn network_interface_id(self, input: impl Into<String>) -> Self
pub fn network_interface_id(self, input: impl Into<String>) -> Self
The ID of the network interface.
sourcepub fn set_network_interface_id(self, input: Option<String>) -> Self
pub fn set_network_interface_id(self, input: Option<String>) -> Self
The ID of the network interface.
sourcepub fn security_groups(self, input: AwsEc2NetworkInterfaceSecurityGroup) -> Self
pub fn security_groups(self, input: AwsEc2NetworkInterfaceSecurityGroup) -> Self
Appends an item to security_groups
.
To override the contents of this collection use set_security_groups
.
Security groups for the network interface.
sourcepub fn set_security_groups(
self,
input: Option<Vec<AwsEc2NetworkInterfaceSecurityGroup>>
) -> Self
pub fn set_security_groups(
self,
input: Option<Vec<AwsEc2NetworkInterfaceSecurityGroup>>
) -> Self
Security groups for the network interface.
sourcepub fn source_dest_check(self, input: bool) -> Self
pub fn source_dest_check(self, input: bool) -> Self
Indicates whether traffic to or from the instance is validated.
sourcepub fn set_source_dest_check(self, input: Option<bool>) -> Self
pub fn set_source_dest_check(self, input: Option<bool>) -> Self
Indicates whether traffic to or from the instance is validated.
sourcepub fn ip_v6_addresses(
self,
input: AwsEc2NetworkInterfaceIpV6AddressDetail
) -> Self
pub fn ip_v6_addresses(
self,
input: AwsEc2NetworkInterfaceIpV6AddressDetail
) -> Self
Appends an item to ip_v6_addresses
.
To override the contents of this collection use set_ip_v6_addresses
.
The IPv6 addresses associated with the network interface.
sourcepub fn set_ip_v6_addresses(
self,
input: Option<Vec<AwsEc2NetworkInterfaceIpV6AddressDetail>>
) -> Self
pub fn set_ip_v6_addresses(
self,
input: Option<Vec<AwsEc2NetworkInterfaceIpV6AddressDetail>>
) -> Self
The IPv6 addresses associated with the network interface.
sourcepub fn private_ip_addresses(
self,
input: AwsEc2NetworkInterfacePrivateIpAddressDetail
) -> Self
pub fn private_ip_addresses(
self,
input: AwsEc2NetworkInterfacePrivateIpAddressDetail
) -> Self
Appends an item to private_ip_addresses
.
To override the contents of this collection use set_private_ip_addresses
.
The private IPv4 addresses associated with the network interface.
sourcepub fn set_private_ip_addresses(
self,
input: Option<Vec<AwsEc2NetworkInterfacePrivateIpAddressDetail>>
) -> Self
pub fn set_private_ip_addresses(
self,
input: Option<Vec<AwsEc2NetworkInterfacePrivateIpAddressDetail>>
) -> Self
The private IPv4 addresses associated with the network interface.
sourcepub fn public_dns_name(self, input: impl Into<String>) -> Self
pub fn public_dns_name(self, input: impl Into<String>) -> Self
The public DNS name of the network interface.
sourcepub fn set_public_dns_name(self, input: Option<String>) -> Self
pub fn set_public_dns_name(self, input: Option<String>) -> Self
The public DNS name of the network interface.
sourcepub fn public_ip(self, input: impl Into<String>) -> Self
pub fn public_ip(self, input: impl Into<String>) -> Self
The address of the Elastic IP address bound to the network interface.
sourcepub fn set_public_ip(self, input: Option<String>) -> Self
pub fn set_public_ip(self, input: Option<String>) -> Self
The address of the Elastic IP address bound to the network interface.
sourcepub fn build(self) -> AwsEc2NetworkInterfaceDetails
pub fn build(self) -> AwsEc2NetworkInterfaceDetails
Consumes the builder and constructs a AwsEc2NetworkInterfaceDetails
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more