Struct aws_sdk_sfn::types::InspectionData
source · #[non_exhaustive]pub struct InspectionData {
pub input: Option<String>,
pub after_input_path: Option<String>,
pub after_parameters: Option<String>,
pub result: Option<String>,
pub after_result_selector: Option<String>,
pub after_result_path: Option<String>,
pub request: Option<InspectionDataRequest>,
pub response: Option<InspectionDataResponse>,
}Expand description
Contains additional details about the state's execution, including its input and output data processing flow, and HTTP request and response information.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.input: Option<String>The raw state input.
after_input_path: Option<String>The input after Step Functions applies the InputPath filter.
after_parameters: Option<String>The effective input after Step Functions applies the Parameters filter.
result: Option<String>The state's raw result.
after_result_selector: Option<String>The effective result after Step Functions applies the ResultSelector filter.
after_result_path: Option<String>The effective result combined with the raw state input after Step Functions applies the ResultPath filter.
request: Option<InspectionDataRequest>The raw HTTP request that is sent when you test an HTTP Task.
response: Option<InspectionDataResponse>The raw HTTP response that is returned when you test an HTTP Task.
Implementations§
source§impl InspectionData
impl InspectionData
sourcepub fn after_input_path(&self) -> Option<&str>
pub fn after_input_path(&self) -> Option<&str>
The input after Step Functions applies the InputPath filter.
sourcepub fn after_parameters(&self) -> Option<&str>
pub fn after_parameters(&self) -> Option<&str>
The effective input after Step Functions applies the Parameters filter.
sourcepub fn after_result_selector(&self) -> Option<&str>
pub fn after_result_selector(&self) -> Option<&str>
The effective result after Step Functions applies the ResultSelector filter.
sourcepub fn after_result_path(&self) -> Option<&str>
pub fn after_result_path(&self) -> Option<&str>
The effective result combined with the raw state input after Step Functions applies the ResultPath filter.
sourcepub fn request(&self) -> Option<&InspectionDataRequest>
pub fn request(&self) -> Option<&InspectionDataRequest>
The raw HTTP request that is sent when you test an HTTP Task.
sourcepub fn response(&self) -> Option<&InspectionDataResponse>
pub fn response(&self) -> Option<&InspectionDataResponse>
The raw HTTP response that is returned when you test an HTTP Task.
source§impl InspectionData
impl InspectionData
sourcepub fn builder() -> InspectionDataBuilder
pub fn builder() -> InspectionDataBuilder
Creates a new builder-style object to manufacture InspectionData.
Trait Implementations§
source§impl Clone for InspectionData
impl Clone for InspectionData
source§fn clone(&self) -> InspectionData
fn clone(&self) -> InspectionData
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for InspectionData
impl Debug for InspectionData
source§impl PartialEq for InspectionData
impl PartialEq for InspectionData
source§fn eq(&self, other: &InspectionData) -> bool
fn eq(&self, other: &InspectionData) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InspectionData
Auto Trait Implementations§
impl Freeze for InspectionData
impl RefUnwindSafe for InspectionData
impl Send for InspectionData
impl Sync for InspectionData
impl Unpin for InspectionData
impl UnwindSafe for InspectionData
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