Struct aws_sdk_iot::input::CreateJobTemplateInput
source · [−]#[non_exhaustive]pub struct CreateJobTemplateInput { /* private fields */ }
Implementations
sourceimpl CreateJobTemplateInput
impl CreateJobTemplateInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateJobTemplate, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateJobTemplate, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateJobTemplate
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateJobTemplateInput
.
sourceimpl 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 to the job document to use in the template. Required if you don't specify a value for document
.
If the job document resides in an S3 bucket, you must use a placeholder link when specifying the document.
The placeholder link is of the following form:
${aws:iot:s3-presigned-url:https://s3.amazonaws.com/bucket/key}
where bucket is your bucket name and key is the object in the bucket to which you are linking.
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.
Trait Implementations
sourceimpl Clone for CreateJobTemplateInput
impl Clone for CreateJobTemplateInput
sourcefn clone(&self) -> CreateJobTemplateInput
fn clone(&self) -> CreateJobTemplateInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateJobTemplateInput
impl Debug for CreateJobTemplateInput
sourceimpl PartialEq<CreateJobTemplateInput> for CreateJobTemplateInput
impl PartialEq<CreateJobTemplateInput> for CreateJobTemplateInput
sourcefn 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 ==
. Read more
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more