#[non_exhaustive]pub struct CreateJobTemplateInput {
pub name: Option<String>,
pub client_token: Option<String>,
pub job_template_data: Option<JobTemplateData>,
pub tags: Option<HashMap<String, String>>,
pub kms_key_arn: Option<String>,
}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.name: Option<String>The specified name of the job template.
client_token: Option<String>The client token of the job template.
job_template_data: Option<JobTemplateData>The job template data which holds values of StartJobRun API request.
The tags that are associated with the job template.
kms_key_arn: Option<String>The KMS key ARN used to encrypt the job template.
Implementations§
source§impl CreateJobTemplateInput
impl CreateJobTemplateInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The client token of the job template.
sourcepub fn job_template_data(&self) -> Option<&JobTemplateData>
pub fn job_template_data(&self) -> Option<&JobTemplateData>
The job template data which holds values of StartJobRun API request.
The tags that are associated with the job template.
sourcepub fn kms_key_arn(&self) -> Option<&str>
pub fn kms_key_arn(&self) -> Option<&str>
The KMS key ARN used to encrypt the job template.
source§impl CreateJobTemplateInput
impl CreateJobTemplateInput
sourcepub fn builder() -> CreateJobTemplateInputBuilder
pub fn builder() -> CreateJobTemplateInputBuilder
Creates a new builder-style object to manufacture CreateJobTemplateInput.
Trait Implementations§
source§impl Clone for CreateJobTemplateInput
impl Clone for CreateJobTemplateInput
source§fn clone(&self) -> CreateJobTemplateInput
fn clone(&self) -> CreateJobTemplateInput
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 CreateJobTemplateInput
impl Debug for CreateJobTemplateInput
source§impl PartialEq<CreateJobTemplateInput> for CreateJobTemplateInput
impl PartialEq<CreateJobTemplateInput> for CreateJobTemplateInput
source§fn eq(&self, other: &CreateJobTemplateInput) -> bool
fn eq(&self, other: &CreateJobTemplateInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateJobTemplateInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateJobTemplateInput
impl Send for CreateJobTemplateInput
impl Sync for CreateJobTemplateInput
impl Unpin for CreateJobTemplateInput
impl UnwindSafe for CreateJobTemplateInput
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