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 ==
.