Struct aws_sdk_b2bi::operation::test_parsing::TestParsingInput
source · #[non_exhaustive]pub struct TestParsingInput {
pub input_file: Option<S3Location>,
pub file_format: Option<FileFormat>,
pub edi_type: Option<EdiType>,
}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.input_file: Option<S3Location>Specifies an S3Location object, which contains the Amazon S3 bucket and prefix for the location of the input file.
file_format: Option<FileFormat>Specifies that the currently supported file formats for EDI transformations are JSON and XML.
edi_type: Option<EdiType>Specifies the details for the EDI standard that is being used for the transformer. Currently, only X12 is supported. X12 is a set of standards and corresponding messages that define specific business documents.
Implementations§
source§impl TestParsingInput
impl TestParsingInput
sourcepub fn input_file(&self) -> Option<&S3Location>
pub fn input_file(&self) -> Option<&S3Location>
Specifies an S3Location object, which contains the Amazon S3 bucket and prefix for the location of the input file.
sourcepub fn file_format(&self) -> Option<&FileFormat>
pub fn file_format(&self) -> Option<&FileFormat>
Specifies that the currently supported file formats for EDI transformations are JSON and XML.
source§impl TestParsingInput
impl TestParsingInput
sourcepub fn builder() -> TestParsingInputBuilder
pub fn builder() -> TestParsingInputBuilder
Creates a new builder-style object to manufacture TestParsingInput.
Trait Implementations§
source§impl Clone for TestParsingInput
impl Clone for TestParsingInput
source§fn clone(&self) -> TestParsingInput
fn clone(&self) -> TestParsingInput
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 TestParsingInput
impl Debug for TestParsingInput
source§impl PartialEq for TestParsingInput
impl PartialEq for TestParsingInput
source§fn eq(&self, other: &TestParsingInput) -> bool
fn eq(&self, other: &TestParsingInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TestParsingInput
Auto Trait Implementations§
impl Freeze for TestParsingInput
impl RefUnwindSafe for TestParsingInput
impl Send for TestParsingInput
impl Sync for TestParsingInput
impl Unpin for TestParsingInput
impl UnwindSafe for TestParsingInput
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.