Struct aws_sdk_s3control::input::CreateJobInput [−][src]
#[non_exhaustive]pub struct CreateJobInput {
pub account_id: Option<String>,
pub confirmation_required: Option<bool>,
pub operation: Option<JobOperation>,
pub report: Option<JobReport>,
pub client_request_token: Option<String>,
pub manifest: Option<JobManifest>,
pub description: Option<String>,
pub priority: Option<i32>,
pub role_arn: Option<String>,
pub tags: Option<Vec<S3Tag>>,
}
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.account_id: Option<String>
The Amazon Web Services account ID that creates the job.
confirmation_required: Option<bool>
Indicates whether confirmation is required before Amazon S3 runs the job. Confirmation is only required for jobs created through the Amazon S3 console.
operation: Option<JobOperation>
The action that you want this job to perform on every object listed in the manifest. For more information about the available actions, see Operations in the Amazon S3 User Guide.
report: Option<JobReport>
Configuration parameters for the optional job-completion report.
client_request_token: Option<String>
An idempotency token to ensure that you don't accidentally submit the same request twice. You can use any string up to the maximum length.
manifest: Option<JobManifest>
Configuration parameters for the manifest.
description: Option<String>
A description for this job. You can use any string within the permitted length. Descriptions don't need to be unique and can be used for multiple jobs.
priority: Option<i32>
The numerical priority for this job. Higher numbers indicate higher priority.
role_arn: Option<String>
The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role that Batch Operations will use to run this job's action on every object in the manifest.
A set of tags to associate with the S3 Batch Operations job. This is an optional parameter.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateJob, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateJob, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateJob
>
Creates a new builder-style object to manufacture CreateJobInput
The Amazon Web Services account ID that creates the job.
Indicates whether confirmation is required before Amazon S3 runs the job. Confirmation is only required for jobs created through the Amazon S3 console.
The action that you want this job to perform on every object listed in the manifest. For more information about the available actions, see Operations in the Amazon S3 User Guide.
Configuration parameters for the optional job-completion report.
An idempotency token to ensure that you don't accidentally submit the same request twice. You can use any string up to the maximum length.
Configuration parameters for the manifest.
A description for this job. You can use any string within the permitted length. Descriptions don't need to be unique and can be used for multiple jobs.
The numerical priority for this job. Higher numbers indicate higher priority.
The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role that Batch Operations will use to run this job's action on every object in the manifest.
A set of tags to associate with the S3 Batch Operations job. This is an optional parameter.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateJobInput
impl Send for CreateJobInput
impl Sync for CreateJobInput
impl Unpin for CreateJobInput
impl UnwindSafe for CreateJobInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more