pub struct Builder { /* private fields */ }
Expand description
A builder for PutThirdPartyJobFailureResultInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn job_id(self, input: impl Into<String>) -> Self
pub fn job_id(self, input: impl Into<String>) -> Self
The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs
.
sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs
.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
sourcepub fn failure_details(self, input: FailureDetails) -> Self
pub fn failure_details(self, input: FailureDetails) -> Self
Represents information about failure details.
sourcepub fn set_failure_details(self, input: Option<FailureDetails>) -> Self
pub fn set_failure_details(self, input: Option<FailureDetails>) -> Self
Represents information about failure details.
sourcepub fn build(self) -> Result<PutThirdPartyJobFailureResultInput, BuildError>
pub fn build(self) -> Result<PutThirdPartyJobFailureResultInput, BuildError>
Consumes the builder and constructs a PutThirdPartyJobFailureResultInput
.