Struct aws_sdk_emrserverless::client::fluent_builders::StartJobRun
source · [−]pub struct StartJobRun { /* private fields */ }
Expand description
Fluent builder constructing a request to StartJobRun
.
Starts a job run.
Implementations
sourceimpl StartJobRun
impl StartJobRun
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartJobRun, AwsResponseRetryClassifier>, SdkError<StartJobRunError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<StartJobRun, AwsResponseRetryClassifier>, SdkError<StartJobRunError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<StartJobRunOutput, SdkError<StartJobRunError>>
pub async fn send(self) -> Result<StartJobRunOutput, SdkError<StartJobRunError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The ID of the application on which to run the job.
sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The ID of the application on which to run the job.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
The client idempotency token of the job run to start. Its value must be unique for each request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
The client idempotency token of the job run to start. Its value must be unique for each request.
sourcepub fn execution_role_arn(self, input: impl Into<String>) -> Self
pub fn execution_role_arn(self, input: impl Into<String>) -> Self
The execution role ARN for the job run.
sourcepub fn set_execution_role_arn(self, input: Option<String>) -> Self
pub fn set_execution_role_arn(self, input: Option<String>) -> Self
The execution role ARN for the job run.
sourcepub fn job_driver(self, input: JobDriver) -> Self
pub fn job_driver(self, input: JobDriver) -> Self
The job driver for the job run.
sourcepub fn set_job_driver(self, input: Option<JobDriver>) -> Self
pub fn set_job_driver(self, input: Option<JobDriver>) -> Self
The job driver for the job run.
sourcepub fn configuration_overrides(self, input: ConfigurationOverrides) -> Self
pub fn configuration_overrides(self, input: ConfigurationOverrides) -> Self
The configuration overrides for the job run.
sourcepub fn set_configuration_overrides(
self,
input: Option<ConfigurationOverrides>
) -> Self
pub fn set_configuration_overrides(
self,
input: Option<ConfigurationOverrides>
) -> Self
The configuration overrides for the job run.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The tags assigned to the job run.
The tags assigned to the job run.
sourcepub fn execution_timeout_minutes(self, input: i64) -> Self
pub fn execution_timeout_minutes(self, input: i64) -> Self
The maximum duration for the job run to run. If the job run runs beyond this duration, it will be automatically cancelled.
sourcepub fn set_execution_timeout_minutes(self, input: Option<i64>) -> Self
pub fn set_execution_timeout_minutes(self, input: Option<i64>) -> Self
The maximum duration for the job run to run. If the job run runs beyond this duration, it will be automatically cancelled.
Trait Implementations
sourceimpl Clone for StartJobRun
impl Clone for StartJobRun
sourcefn clone(&self) -> StartJobRun
fn clone(&self) -> StartJobRun
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more