pub struct StartJobRunFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to StartJobRun
.
Starts a job run.
Implementations§
source§impl StartJobRunFluentBuilder
impl StartJobRunFluentBuilder
sourcepub fn as_input(&self) -> &StartJobRunInputBuilder
pub fn as_input(&self) -> &StartJobRunInputBuilder
Access the StartJobRun as a reference.
sourcepub async fn send(
self
) -> Result<StartJobRunOutput, SdkError<StartJobRunError, HttpResponse>>
pub async fn send( self ) -> Result<StartJobRunOutput, SdkError<StartJobRunError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<StartJobRunOutput, StartJobRunError, Self>
pub fn customize( self ) -> CustomizableOperation<StartJobRunOutput, StartJobRunError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
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 get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
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 get_execution_role_arn(&self) -> &Option<String>
pub fn get_execution_role_arn(&self) -> &Option<String>
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 get_job_driver(&self) -> &Option<JobDriver>
pub fn get_job_driver(&self) -> &Option<JobDriver>
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.
sourcepub fn get_configuration_overrides(&self) -> &Option<ConfigurationOverrides>
pub fn get_configuration_overrides(&self) -> &Option<ConfigurationOverrides>
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.
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.
sourcepub fn get_execution_timeout_minutes(&self) -> &Option<i64>
pub fn get_execution_timeout_minutes(&self) -> &Option<i64>
The maximum duration for the job run to run. If the job run runs beyond this duration, it will be automatically cancelled.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The optional job run name. This doesn't have to be unique.
Trait Implementations§
source§impl Clone for StartJobRunFluentBuilder
impl Clone for StartJobRunFluentBuilder
source§fn clone(&self) -> StartJobRunFluentBuilder
fn clone(&self) -> StartJobRunFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more