Struct aws_sdk_sfn::types::InspectionDataResponse
source · #[non_exhaustive]pub struct InspectionDataResponse {
pub protocol: Option<String>,
pub status_code: Option<String>,
pub status_message: Option<String>,
pub headers: Option<String>,
pub body: Option<String>,
}Expand description
Contains additional details about the state's execution, including its input and output data processing flow, and HTTP response information. The inspectionLevel request parameter specifies which details are returned.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.protocol: Option<String>The protocol used to return the HTTP response.
status_code: Option<String>The HTTP response status code for the HTTP response.
status_message: Option<String>The message associated with the HTTP status code.
headers: Option<String>The response headers associated with the HTTP response.
body: Option<String>The HTTP response returned.
Implementations§
source§impl InspectionDataResponse
impl InspectionDataResponse
sourcepub fn status_code(&self) -> Option<&str>
pub fn status_code(&self) -> Option<&str>
The HTTP response status code for the HTTP response.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The message associated with the HTTP status code.
source§impl InspectionDataResponse
impl InspectionDataResponse
sourcepub fn builder() -> InspectionDataResponseBuilder
pub fn builder() -> InspectionDataResponseBuilder
Creates a new builder-style object to manufacture InspectionDataResponse.
Trait Implementations§
source§impl Clone for InspectionDataResponse
impl Clone for InspectionDataResponse
source§fn clone(&self) -> InspectionDataResponse
fn clone(&self) -> InspectionDataResponse
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 InspectionDataResponse
impl Debug for InspectionDataResponse
source§impl PartialEq for InspectionDataResponse
impl PartialEq for InspectionDataResponse
source§fn eq(&self, other: &InspectionDataResponse) -> bool
fn eq(&self, other: &InspectionDataResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InspectionDataResponse
Auto Trait Implementations§
impl Freeze for InspectionDataResponse
impl RefUnwindSafe for InspectionDataResponse
impl Send for InspectionDataResponse
impl Sync for InspectionDataResponse
impl Unpin for InspectionDataResponse
impl UnwindSafe for InspectionDataResponse
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> 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.