#[non_exhaustive]pub struct CreateJobTemplateInput {Show 13 fields
pub job_template_id: Option<String>,
pub job_arn: Option<String>,
pub document_source: Option<String>,
pub document: Option<String>,
pub description: Option<String>,
pub presigned_url_config: Option<PresignedUrlConfig>,
pub job_executions_rollout_config: Option<JobExecutionsRolloutConfig>,
pub abort_config: Option<AbortConfig>,
pub timeout_config: Option<TimeoutConfig>,
pub tags: Option<Vec<Tag>>,
pub job_executions_retry_config: Option<JobExecutionsRetryConfig>,
pub maintenance_windows: Option<Vec<MaintenanceWindow>>,
pub destination_package_versions: Option<Vec<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.job_template_id: Option<String>
A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.
job_arn: Option<String>
The ARN of the job to use as the basis for the job template.
document_source: Option<String>
An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for document
.
For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0
For more information, see Methods for accessing a bucket.
document: Option<String>
The job document. Required if you don't specify a value for documentSource
.
description: Option<String>
A description of the job document.
presigned_url_config: Option<PresignedUrlConfig>
Configuration for pre-signed S3 URLs.
job_executions_rollout_config: Option<JobExecutionsRolloutConfig>
Allows you to create a staged rollout of a job.
abort_config: Option<AbortConfig>
The criteria that determine when and how a job abort takes place.
timeout_config: Option<TimeoutConfig>
Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS
. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT
.
Metadata that can be used to manage the job template.
job_executions_retry_config: Option<JobExecutionsRetryConfig>
Allows you to create the criteria to retry a job.
maintenance_windows: Option<Vec<MaintenanceWindow>>
Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.
destination_package_versions: Option<Vec<String>>
The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes.
Note:The following Length Constraints relates to a single string. Up to five strings are allowed.
Implementations§
source§impl CreateJobTemplateInput
impl CreateJobTemplateInput
sourcepub fn job_template_id(&self) -> Option<&str>
pub fn job_template_id(&self) -> Option<&str>
A unique identifier for the job template. We recommend using a UUID. Alpha-numeric characters, "-", and "_" are valid for use here.
sourcepub fn job_arn(&self) -> Option<&str>
pub fn job_arn(&self) -> Option<&str>
The ARN of the job to use as the basis for the job template.
sourcepub fn document_source(&self) -> Option<&str>
pub fn document_source(&self) -> Option<&str>
An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for document
.
For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0
For more information, see Methods for accessing a bucket.
sourcepub fn document(&self) -> Option<&str>
pub fn document(&self) -> Option<&str>
The job document. Required if you don't specify a value for documentSource
.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the job document.
sourcepub fn presigned_url_config(&self) -> Option<&PresignedUrlConfig>
pub fn presigned_url_config(&self) -> Option<&PresignedUrlConfig>
Configuration for pre-signed S3 URLs.
sourcepub fn job_executions_rollout_config(
&self
) -> Option<&JobExecutionsRolloutConfig>
pub fn job_executions_rollout_config( &self ) -> Option<&JobExecutionsRolloutConfig>
Allows you to create a staged rollout of a job.
sourcepub fn abort_config(&self) -> Option<&AbortConfig>
pub fn abort_config(&self) -> Option<&AbortConfig>
The criteria that determine when and how a job abort takes place.
sourcepub fn timeout_config(&self) -> Option<&TimeoutConfig>
pub fn timeout_config(&self) -> Option<&TimeoutConfig>
Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS
. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT
.
Metadata that can be used to manage the job template.
sourcepub fn job_executions_retry_config(&self) -> Option<&JobExecutionsRetryConfig>
pub fn job_executions_retry_config(&self) -> Option<&JobExecutionsRetryConfig>
Allows you to create the criteria to retry a job.
sourcepub fn maintenance_windows(&self) -> Option<&[MaintenanceWindow]>
pub fn maintenance_windows(&self) -> Option<&[MaintenanceWindow]>
Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.
sourcepub fn destination_package_versions(&self) -> Option<&[String]>
pub fn destination_package_versions(&self) -> Option<&[String]>
The package version Amazon Resource Names (ARNs) that are installed on the device when the job successfully completes.
Note:The following Length Constraints relates to a single string. Up to five strings are allowed.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateJobTemplateInput
impl Debug for CreateJobTemplateInput
source§impl PartialEq for CreateJobTemplateInput
impl PartialEq for CreateJobTemplateInput
source§fn eq(&self, other: &CreateJobTemplateInput) -> bool
fn eq(&self, other: &CreateJobTemplateInput) -> bool
self
and other
values to be equal, and is used
by ==
.