Struct aws_sdk_sagemakergeospatial::operation::start_vector_enrichment_job::StartVectorEnrichmentJobInput
source · #[non_exhaustive]pub struct StartVectorEnrichmentJobInput {
pub name: Option<String>,
pub client_token: Option<String>,
pub kms_key_id: Option<String>,
pub input_config: Option<VectorEnrichmentJobInputConfig>,
pub job_config: Option<VectorEnrichmentJobConfig>,
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 Vector Enrichment 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<VectorEnrichmentJobInputConfig>
Input configuration information for the Vector Enrichment job.
job_config: Option<VectorEnrichmentJobConfig>
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 StartVectorEnrichmentJobInput
impl StartVectorEnrichmentJobInput
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<&VectorEnrichmentJobInputConfig>
pub fn input_config(&self) -> Option<&VectorEnrichmentJobInputConfig>
Input configuration information for the Vector Enrichment job.
sourcepub fn job_config(&self) -> Option<&VectorEnrichmentJobConfig>
pub fn job_config(&self) -> Option<&VectorEnrichmentJobConfig>
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 StartVectorEnrichmentJobInput
impl StartVectorEnrichmentJobInput
sourcepub fn builder() -> StartVectorEnrichmentJobInputBuilder
pub fn builder() -> StartVectorEnrichmentJobInputBuilder
Creates a new builder-style object to manufacture StartVectorEnrichmentJobInput
.
Trait Implementations§
source§impl Clone for StartVectorEnrichmentJobInput
impl Clone for StartVectorEnrichmentJobInput
source§fn clone(&self) -> StartVectorEnrichmentJobInput
fn clone(&self) -> StartVectorEnrichmentJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for StartVectorEnrichmentJobInput
impl PartialEq for StartVectorEnrichmentJobInput
source§fn eq(&self, other: &StartVectorEnrichmentJobInput) -> bool
fn eq(&self, other: &StartVectorEnrichmentJobInput) -> bool
self
and other
values to be equal, and is used
by ==
.