Struct aws_sdk_ec2::operation::get_ipam_discovered_accounts::builders::GetIpamDiscoveredAccountsOutputBuilder
source · #[non_exhaustive]pub struct GetIpamDiscoveredAccountsOutputBuilder { /* private fields */ }Expand description
A builder for GetIpamDiscoveredAccountsOutput.
Implementations§
source§impl GetIpamDiscoveredAccountsOutputBuilder
impl GetIpamDiscoveredAccountsOutputBuilder
sourcepub fn ipam_discovered_accounts(self, input: IpamDiscoveredAccount) -> Self
pub fn ipam_discovered_accounts(self, input: IpamDiscoveredAccount) -> Self
Appends an item to ipam_discovered_accounts.
To override the contents of this collection use set_ipam_discovered_accounts.
Discovered accounts.
sourcepub fn set_ipam_discovered_accounts(
self,
input: Option<Vec<IpamDiscoveredAccount>>,
) -> Self
pub fn set_ipam_discovered_accounts( self, input: Option<Vec<IpamDiscoveredAccount>>, ) -> Self
Discovered accounts.
sourcepub fn get_ipam_discovered_accounts(
&self,
) -> &Option<Vec<IpamDiscoveredAccount>>
pub fn get_ipam_discovered_accounts( &self, ) -> &Option<Vec<IpamDiscoveredAccount>>
Discovered accounts.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn build(self) -> GetIpamDiscoveredAccountsOutput
pub fn build(self) -> GetIpamDiscoveredAccountsOutput
Consumes the builder and constructs a GetIpamDiscoveredAccountsOutput.
Trait Implementations§
source§impl Clone for GetIpamDiscoveredAccountsOutputBuilder
impl Clone for GetIpamDiscoveredAccountsOutputBuilder
source§fn clone(&self) -> GetIpamDiscoveredAccountsOutputBuilder
fn clone(&self) -> GetIpamDiscoveredAccountsOutputBuilder
Returns a copy 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 GetIpamDiscoveredAccountsOutputBuilder
impl Default for GetIpamDiscoveredAccountsOutputBuilder
source§fn default() -> GetIpamDiscoveredAccountsOutputBuilder
fn default() -> GetIpamDiscoveredAccountsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetIpamDiscoveredAccountsOutputBuilder
impl PartialEq for GetIpamDiscoveredAccountsOutputBuilder
source§fn eq(&self, other: &GetIpamDiscoveredAccountsOutputBuilder) -> bool
fn eq(&self, other: &GetIpamDiscoveredAccountsOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetIpamDiscoveredAccountsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetIpamDiscoveredAccountsOutputBuilder
impl RefUnwindSafe for GetIpamDiscoveredAccountsOutputBuilder
impl Send for GetIpamDiscoveredAccountsOutputBuilder
impl Sync for GetIpamDiscoveredAccountsOutputBuilder
impl Unpin for GetIpamDiscoveredAccountsOutputBuilder
impl UnwindSafe for GetIpamDiscoveredAccountsOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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.