Struct aws_sdk_sagemakergeospatial::operation::start_earth_observation_job::StartEarthObservationJobInput
source · #[non_exhaustive]pub struct StartEarthObservationJobInput {
pub name: Option<String>,
pub client_token: Option<String>,
pub kms_key_id: Option<String>,
pub input_config: Option<InputConfigInput>,
pub job_config: Option<JobConfigInput>,
pub execution_role_arn: Option<String>,
pub tags: Option<HashMap<String, String>>,
}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.name: Option<String>The name of the Earth Observation job.
client_token: Option<String>A unique token that guarantees that the call to this API is idempotent.
kms_key_id: Option<String>The Key Management Service key ID for server-side encryption.
input_config: Option<InputConfigInput>Input configuration information for the Earth Observation job.
job_config: Option<JobConfigInput>An object containing information about the job configuration.
execution_role_arn: Option<String>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.
Each tag consists of a key and a value.
Implementations§
source§impl StartEarthObservationJobInput
impl StartEarthObservationJobInput
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 kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The Key Management Service key ID for server-side encryption.
sourcepub fn input_config(&self) -> Option<&InputConfigInput>
pub fn input_config(&self) -> Option<&InputConfigInput>
Input configuration information for the Earth Observation job.
sourcepub fn job_config(&self) -> Option<&JobConfigInput>
pub fn job_config(&self) -> Option<&JobConfigInput>
An object containing information about the job configuration.
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.
Each tag consists of a key and a value.
source§impl StartEarthObservationJobInput
impl StartEarthObservationJobInput
sourcepub fn builder() -> StartEarthObservationJobInputBuilder
pub fn builder() -> StartEarthObservationJobInputBuilder
Creates a new builder-style object to manufacture StartEarthObservationJobInput.
Trait Implementations§
source§impl Clone for StartEarthObservationJobInput
impl Clone for StartEarthObservationJobInput
source§fn clone(&self) -> StartEarthObservationJobInput
fn clone(&self) -> StartEarthObservationJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for StartEarthObservationJobInput
impl PartialEq for StartEarthObservationJobInput
source§fn eq(&self, other: &StartEarthObservationJobInput) -> bool
fn eq(&self, other: &StartEarthObservationJobInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartEarthObservationJobInput
Auto Trait Implementations§
impl Freeze for StartEarthObservationJobInput
impl RefUnwindSafe for StartEarthObservationJobInput
impl Send for StartEarthObservationJobInput
impl Sync for StartEarthObservationJobInput
impl Unpin for StartEarthObservationJobInput
impl UnwindSafe for StartEarthObservationJobInput
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