#[non_exhaustive]pub struct CreateFlowLogsOutputBuilder { /* private fields */ }
Expand description
A builder for CreateFlowLogsOutput
.
Implementations§
source§impl CreateFlowLogsOutputBuilder
impl CreateFlowLogsOutputBuilder
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn flow_log_ids(self, input: impl Into<String>) -> Self
pub fn flow_log_ids(self, input: impl Into<String>) -> Self
Appends an item to flow_log_ids
.
To override the contents of this collection use set_flow_log_ids
.
The IDs of the flow logs.
sourcepub fn set_flow_log_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_flow_log_ids(self, input: Option<Vec<String>>) -> Self
The IDs of the flow logs.
sourcepub fn get_flow_log_ids(&self) -> &Option<Vec<String>>
pub fn get_flow_log_ids(&self) -> &Option<Vec<String>>
The IDs of the flow logs.
sourcepub fn unsuccessful(self, input: UnsuccessfulItem) -> Self
pub fn unsuccessful(self, input: UnsuccessfulItem) -> Self
Appends an item to unsuccessful
.
To override the contents of this collection use set_unsuccessful
.
Information about the flow logs that could not be created successfully.
sourcepub fn set_unsuccessful(self, input: Option<Vec<UnsuccessfulItem>>) -> Self
pub fn set_unsuccessful(self, input: Option<Vec<UnsuccessfulItem>>) -> Self
Information about the flow logs that could not be created successfully.
sourcepub fn get_unsuccessful(&self) -> &Option<Vec<UnsuccessfulItem>>
pub fn get_unsuccessful(&self) -> &Option<Vec<UnsuccessfulItem>>
Information about the flow logs that could not be created successfully.
sourcepub fn build(self) -> CreateFlowLogsOutput
pub fn build(self) -> CreateFlowLogsOutput
Consumes the builder and constructs a CreateFlowLogsOutput
.
Trait Implementations§
source§impl Clone for CreateFlowLogsOutputBuilder
impl Clone for CreateFlowLogsOutputBuilder
source§fn clone(&self) -> CreateFlowLogsOutputBuilder
fn clone(&self) -> CreateFlowLogsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateFlowLogsOutputBuilder
impl Debug for CreateFlowLogsOutputBuilder
source§impl Default for CreateFlowLogsOutputBuilder
impl Default for CreateFlowLogsOutputBuilder
source§fn default() -> CreateFlowLogsOutputBuilder
fn default() -> CreateFlowLogsOutputBuilder
source§impl PartialEq for CreateFlowLogsOutputBuilder
impl PartialEq for CreateFlowLogsOutputBuilder
source§fn eq(&self, other: &CreateFlowLogsOutputBuilder) -> bool
fn eq(&self, other: &CreateFlowLogsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateFlowLogsOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateFlowLogsOutputBuilder
impl RefUnwindSafe for CreateFlowLogsOutputBuilder
impl Send for CreateFlowLogsOutputBuilder
impl Sync for CreateFlowLogsOutputBuilder
impl Unpin for CreateFlowLogsOutputBuilder
impl UnwindSafe for CreateFlowLogsOutputBuilder
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
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)
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>
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>
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 more