#[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 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 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 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
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 Debug for CreateFlowLogsOutputBuilder
impl Debug for CreateFlowLogsOutputBuilder
source§impl Default for CreateFlowLogsOutputBuilder
impl Default for CreateFlowLogsOutputBuilder
source§fn default() -> CreateFlowLogsOutputBuilder
fn default() -> CreateFlowLogsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CreateFlowLogsOutputBuilder> for CreateFlowLogsOutputBuilder
impl PartialEq<CreateFlowLogsOutputBuilder> for CreateFlowLogsOutputBuilder
source§fn eq(&self, other: &CreateFlowLogsOutputBuilder) -> bool
fn eq(&self, other: &CreateFlowLogsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateFlowLogsOutputBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more