Struct aws_sdk_securityhub::types::builders::AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
source · #[non_exhaustive]pub struct AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder { /* private fields */ }
Expand description
A builder for AwsStepFunctionStateMachineLoggingConfigurationDetails
.
Implementations§
source§impl AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
sourcepub fn destinations(
self,
input: AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails
) -> Self
pub fn destinations( self, input: AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails ) -> Self
Appends an item to destinations
.
To override the contents of this collection use set_destinations
.
An array of objects that describes where your execution history events will be logged.
sourcepub fn set_destinations(
self,
input: Option<Vec<AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails>>
) -> Self
pub fn set_destinations( self, input: Option<Vec<AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails>> ) -> Self
An array of objects that describes where your execution history events will be logged.
sourcepub fn get_destinations(
&self
) -> &Option<Vec<AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails>>
pub fn get_destinations( &self ) -> &Option<Vec<AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails>>
An array of objects that describes where your execution history events will be logged.
sourcepub fn include_execution_data(self, input: bool) -> Self
pub fn include_execution_data(self, input: bool) -> Self
Determines whether execution data is included in your log. When set to false, data is excluded.
sourcepub fn set_include_execution_data(self, input: Option<bool>) -> Self
pub fn set_include_execution_data(self, input: Option<bool>) -> Self
Determines whether execution data is included in your log. When set to false, data is excluded.
sourcepub fn get_include_execution_data(&self) -> &Option<bool>
pub fn get_include_execution_data(&self) -> &Option<bool>
Determines whether execution data is included in your log. When set to false, data is excluded.
sourcepub fn level(self, input: impl Into<String>) -> Self
pub fn level(self, input: impl Into<String>) -> Self
Defines which category of execution history events are logged.
sourcepub fn set_level(self, input: Option<String>) -> Self
pub fn set_level(self, input: Option<String>) -> Self
Defines which category of execution history events are logged.
sourcepub fn get_level(&self) -> &Option<String>
pub fn get_level(&self) -> &Option<String>
Defines which category of execution history events are logged.
sourcepub fn build(self) -> AwsStepFunctionStateMachineLoggingConfigurationDetails
pub fn build(self) -> AwsStepFunctionStateMachineLoggingConfigurationDetails
Consumes the builder and constructs a AwsStepFunctionStateMachineLoggingConfigurationDetails
.
Trait Implementations§
source§impl Clone for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl Clone for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
source§fn clone(&self) -> AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
fn clone(&self) -> AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl Default for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
source§fn default() -> AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
fn default() -> AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
source§impl PartialEq for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl PartialEq for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
source§fn eq(
&self,
other: &AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
) -> bool
fn eq( &self, other: &AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl RefUnwindSafe for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl Send for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl Sync for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl Unpin for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
impl UnwindSafe for AwsStepFunctionStateMachineLoggingConfigurationDetailsBuilder
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> 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