Struct aws_sdk_sfn::types::builders::InspectionDataBuilder
source · #[non_exhaustive]pub struct InspectionDataBuilder { /* private fields */ }Expand description
A builder for InspectionData.
Implementations§
source§impl InspectionDataBuilder
impl InspectionDataBuilder
sourcepub fn after_input_path(self, input: impl Into<String>) -> Self
pub fn after_input_path(self, input: impl Into<String>) -> Self
The input after Step Functions applies the InputPath filter.
sourcepub fn set_after_input_path(self, input: Option<String>) -> Self
pub fn set_after_input_path(self, input: Option<String>) -> Self
The input after Step Functions applies the InputPath filter.
sourcepub fn get_after_input_path(&self) -> &Option<String>
pub fn get_after_input_path(&self) -> &Option<String>
The input after Step Functions applies the InputPath filter.
sourcepub fn after_parameters(self, input: impl Into<String>) -> Self
pub fn after_parameters(self, input: impl Into<String>) -> Self
The effective input after Step Functions applies the Parameters filter.
sourcepub fn set_after_parameters(self, input: Option<String>) -> Self
pub fn set_after_parameters(self, input: Option<String>) -> Self
The effective input after Step Functions applies the Parameters filter.
sourcepub fn get_after_parameters(&self) -> &Option<String>
pub fn get_after_parameters(&self) -> &Option<String>
The effective input after Step Functions applies the Parameters filter.
sourcepub fn set_result(self, input: Option<String>) -> Self
pub fn set_result(self, input: Option<String>) -> Self
The state's raw result.
sourcepub fn get_result(&self) -> &Option<String>
pub fn get_result(&self) -> &Option<String>
The state's raw result.
sourcepub fn after_result_selector(self, input: impl Into<String>) -> Self
pub fn after_result_selector(self, input: impl Into<String>) -> Self
The effective result after Step Functions applies the ResultSelector filter.
sourcepub fn set_after_result_selector(self, input: Option<String>) -> Self
pub fn set_after_result_selector(self, input: Option<String>) -> Self
The effective result after Step Functions applies the ResultSelector filter.
sourcepub fn get_after_result_selector(&self) -> &Option<String>
pub fn get_after_result_selector(&self) -> &Option<String>
The effective result after Step Functions applies the ResultSelector filter.
sourcepub fn after_result_path(self, input: impl Into<String>) -> Self
pub fn after_result_path(self, input: impl Into<String>) -> Self
The effective result combined with the raw state input after Step Functions applies the ResultPath filter.
sourcepub fn set_after_result_path(self, input: Option<String>) -> Self
pub fn set_after_result_path(self, input: Option<String>) -> Self
The effective result combined with the raw state input after Step Functions applies the ResultPath filter.
sourcepub fn get_after_result_path(&self) -> &Option<String>
pub fn get_after_result_path(&self) -> &Option<String>
The effective result combined with the raw state input after Step Functions applies the ResultPath filter.
sourcepub fn request(self, input: InspectionDataRequest) -> Self
pub fn request(self, input: InspectionDataRequest) -> Self
The raw HTTP request that is sent when you test an HTTP Task.
sourcepub fn set_request(self, input: Option<InspectionDataRequest>) -> Self
pub fn set_request(self, input: Option<InspectionDataRequest>) -> Self
The raw HTTP request that is sent when you test an HTTP Task.
sourcepub fn get_request(&self) -> &Option<InspectionDataRequest>
pub fn get_request(&self) -> &Option<InspectionDataRequest>
The raw HTTP request that is sent when you test an HTTP Task.
sourcepub fn response(self, input: InspectionDataResponse) -> Self
pub fn response(self, input: InspectionDataResponse) -> Self
The raw HTTP response that is returned when you test an HTTP Task.
sourcepub fn set_response(self, input: Option<InspectionDataResponse>) -> Self
pub fn set_response(self, input: Option<InspectionDataResponse>) -> Self
The raw HTTP response that is returned when you test an HTTP Task.
sourcepub fn get_response(&self) -> &Option<InspectionDataResponse>
pub fn get_response(&self) -> &Option<InspectionDataResponse>
The raw HTTP response that is returned when you test an HTTP Task.
sourcepub fn build(self) -> InspectionData
pub fn build(self) -> InspectionData
Consumes the builder and constructs a InspectionData.
Trait Implementations§
source§impl Clone for InspectionDataBuilder
impl Clone for InspectionDataBuilder
source§fn clone(&self) -> InspectionDataBuilder
fn clone(&self) -> InspectionDataBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for InspectionDataBuilder
impl Debug for InspectionDataBuilder
source§impl Default for InspectionDataBuilder
impl Default for InspectionDataBuilder
source§fn default() -> InspectionDataBuilder
fn default() -> InspectionDataBuilder
source§impl PartialEq for InspectionDataBuilder
impl PartialEq for InspectionDataBuilder
source§fn eq(&self, other: &InspectionDataBuilder) -> bool
fn eq(&self, other: &InspectionDataBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InspectionDataBuilder
Auto Trait Implementations§
impl Freeze for InspectionDataBuilder
impl RefUnwindSafe for InspectionDataBuilder
impl Send for InspectionDataBuilder
impl Sync for InspectionDataBuilder
impl Unpin for InspectionDataBuilder
impl UnwindSafe for InspectionDataBuilder
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