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
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.
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.

tags: Option<Vec<S3Tag>>

A set of tags to associate with the S3 Batch Operations job. This is an optional parameter.

Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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