Struct aws_sdk_sagemakergeospatial::operation::export_earth_observation_job::ExportEarthObservationJobInput
source · #[non_exhaustive]pub struct ExportEarthObservationJobInput {
pub arn: Option<String>,
pub client_token: Option<String>,
pub execution_role_arn: Option<String>,
pub output_config: Option<OutputConfigInput>,
pub export_source_images: Option<bool>,
}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.arn: Option<String>The input Amazon Resource Name (ARN) of the Earth Observation job being exported.
client_token: Option<String>A unique token that guarantees that the call to this API is idempotent.
execution_role_arn: Option<String>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
output_config: Option<OutputConfigInput>An object containing information about the output file.
export_source_images: Option<bool>The source images provided to the Earth Observation job being exported.
Implementations§
source§impl ExportEarthObservationJobInput
impl ExportEarthObservationJobInput
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The input Amazon Resource Name (ARN) of the Earth Observation job being exported.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique token that guarantees that the call to this API is idempotent.
sourcepub fn execution_role_arn(&self) -> Option<&str>
pub fn execution_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
sourcepub fn output_config(&self) -> Option<&OutputConfigInput>
pub fn output_config(&self) -> Option<&OutputConfigInput>
An object containing information about the output file.
sourcepub fn export_source_images(&self) -> Option<bool>
pub fn export_source_images(&self) -> Option<bool>
The source images provided to the Earth Observation job being exported.
source§impl ExportEarthObservationJobInput
impl ExportEarthObservationJobInput
sourcepub fn builder() -> ExportEarthObservationJobInputBuilder
pub fn builder() -> ExportEarthObservationJobInputBuilder
Creates a new builder-style object to manufacture ExportEarthObservationJobInput.
Trait Implementations§
source§impl Clone for ExportEarthObservationJobInput
impl Clone for ExportEarthObservationJobInput
source§fn clone(&self) -> ExportEarthObservationJobInput
fn clone(&self) -> ExportEarthObservationJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ExportEarthObservationJobInput
impl PartialEq for ExportEarthObservationJobInput
source§fn eq(&self, other: &ExportEarthObservationJobInput) -> bool
fn eq(&self, other: &ExportEarthObservationJobInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExportEarthObservationJobInput
Auto Trait Implementations§
impl Freeze for ExportEarthObservationJobInput
impl RefUnwindSafe for ExportEarthObservationJobInput
impl Send for ExportEarthObservationJobInput
impl Sync for ExportEarthObservationJobInput
impl Unpin for ExportEarthObservationJobInput
impl UnwindSafe for ExportEarthObservationJobInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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