Struct aws_sdk_amplify::operation::start_job::builders::StartJobInputBuilder
source · #[non_exhaustive]pub struct StartJobInputBuilder { /* private fields */ }Expand description
A builder for StartJobInput.
Implementations§
source§impl StartJobInputBuilder
impl StartJobInputBuilder
sourcepub fn app_id(self, input: impl Into<String>) -> Self
pub fn app_id(self, input: impl Into<String>) -> Self
The unique ID for an Amplify app.
This field is required.sourcepub fn set_app_id(self, input: Option<String>) -> Self
pub fn set_app_id(self, input: Option<String>) -> Self
The unique ID for an Amplify app.
sourcepub fn get_app_id(&self) -> &Option<String>
pub fn get_app_id(&self) -> &Option<String>
The unique ID for an Amplify app.
sourcepub fn branch_name(self, input: impl Into<String>) -> Self
pub fn branch_name(self, input: impl Into<String>) -> Self
The name of the branch to use for the job.
This field is required.sourcepub fn set_branch_name(self, input: Option<String>) -> Self
pub fn set_branch_name(self, input: Option<String>) -> Self
The name of the branch to use for the job.
sourcepub fn get_branch_name(&self) -> &Option<String>
pub fn get_branch_name(&self) -> &Option<String>
The name of the branch to use for the job.
sourcepub fn job_id(self, input: impl Into<String>) -> Self
pub fn job_id(self, input: impl Into<String>) -> Self
The unique ID for an existing job. This is required if the value of jobType is RETRY.
sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
The unique ID for an existing job. This is required if the value of jobType is RETRY.
sourcepub fn get_job_id(&self) -> &Option<String>
pub fn get_job_id(&self) -> &Option<String>
The unique ID for an existing job. This is required if the value of jobType is RETRY.
sourcepub fn job_type(self, input: JobType) -> Self
pub fn job_type(self, input: JobType) -> Self
Describes the type for the job. The job type RELEASE starts a new job with the latest change from the specified branch. This value is available only for apps that are connected to a repository.
The job type RETRY retries an existing job. If the job type value is RETRY, the jobId is also required.
sourcepub fn set_job_type(self, input: Option<JobType>) -> Self
pub fn set_job_type(self, input: Option<JobType>) -> Self
Describes the type for the job. The job type RELEASE starts a new job with the latest change from the specified branch. This value is available only for apps that are connected to a repository.
The job type RETRY retries an existing job. If the job type value is RETRY, the jobId is also required.
sourcepub fn get_job_type(&self) -> &Option<JobType>
pub fn get_job_type(&self) -> &Option<JobType>
Describes the type for the job. The job type RELEASE starts a new job with the latest change from the specified branch. This value is available only for apps that are connected to a repository.
The job type RETRY retries an existing job. If the job type value is RETRY, the jobId is also required.
sourcepub fn job_reason(self, input: impl Into<String>) -> Self
pub fn job_reason(self, input: impl Into<String>) -> Self
A descriptive reason for starting the job.
sourcepub fn set_job_reason(self, input: Option<String>) -> Self
pub fn set_job_reason(self, input: Option<String>) -> Self
A descriptive reason for starting the job.
sourcepub fn get_job_reason(&self) -> &Option<String>
pub fn get_job_reason(&self) -> &Option<String>
A descriptive reason for starting the job.
sourcepub fn commit_id(self, input: impl Into<String>) -> Self
pub fn commit_id(self, input: impl Into<String>) -> Self
The commit ID from a third-party repository provider for the job.
sourcepub fn set_commit_id(self, input: Option<String>) -> Self
pub fn set_commit_id(self, input: Option<String>) -> Self
The commit ID from a third-party repository provider for the job.
sourcepub fn get_commit_id(&self) -> &Option<String>
pub fn get_commit_id(&self) -> &Option<String>
The commit ID from a third-party repository provider for the job.
sourcepub fn commit_message(self, input: impl Into<String>) -> Self
pub fn commit_message(self, input: impl Into<String>) -> Self
The commit message from a third-party repository provider for the job.
sourcepub fn set_commit_message(self, input: Option<String>) -> Self
pub fn set_commit_message(self, input: Option<String>) -> Self
The commit message from a third-party repository provider for the job.
sourcepub fn get_commit_message(&self) -> &Option<String>
pub fn get_commit_message(&self) -> &Option<String>
The commit message from a third-party repository provider for the job.
sourcepub fn commit_time(self, input: DateTime) -> Self
pub fn commit_time(self, input: DateTime) -> Self
The commit date and time for the job.
sourcepub fn set_commit_time(self, input: Option<DateTime>) -> Self
pub fn set_commit_time(self, input: Option<DateTime>) -> Self
The commit date and time for the job.
sourcepub fn get_commit_time(&self) -> &Option<DateTime>
pub fn get_commit_time(&self) -> &Option<DateTime>
The commit date and time for the job.
sourcepub fn build(self) -> Result<StartJobInput, BuildError>
pub fn build(self) -> Result<StartJobInput, BuildError>
Consumes the builder and constructs a StartJobInput.
source§impl StartJobInputBuilder
impl StartJobInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<StartJobOutput, SdkError<StartJobError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<StartJobOutput, SdkError<StartJobError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartJobInputBuilder
impl Clone for StartJobInputBuilder
source§fn clone(&self) -> StartJobInputBuilder
fn clone(&self) -> StartJobInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartJobInputBuilder
impl Debug for StartJobInputBuilder
source§impl Default for StartJobInputBuilder
impl Default for StartJobInputBuilder
source§fn default() -> StartJobInputBuilder
fn default() -> StartJobInputBuilder
source§impl PartialEq for StartJobInputBuilder
impl PartialEq for StartJobInputBuilder
source§fn eq(&self, other: &StartJobInputBuilder) -> bool
fn eq(&self, other: &StartJobInputBuilder) -> bool
self and other values to be equal, and is used
by ==.