Struct aws_sdk_comprehend::operation::start_pii_entities_detection_job::builders::StartPiiEntitiesDetectionJobOutputBuilder
source · #[non_exhaustive]pub struct StartPiiEntitiesDetectionJobOutputBuilder { /* private fields */ }Expand description
A builder for StartPiiEntitiesDetectionJobOutput.
Implementations§
source§impl StartPiiEntitiesDetectionJobOutputBuilder
impl StartPiiEntitiesDetectionJobOutputBuilder
sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
The identifier generated for the job.
sourcepub fn get_job_id(&self) -> &Option<String>
pub fn get_job_id(&self) -> &Option<String>
The identifier generated for the job.
sourcepub fn job_arn(self, input: impl Into<String>) -> Self
pub fn job_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the PII entity detection job. It is a unique, fully qualified identifier for the job. It includes the Amazon Web Services account, Amazon Web Services Region, and the job ID. The format of the ARN is as follows:
arn:
The following is an example job ARN:
arn:aws:comprehend:us-west-2:111122223333:pii-entities-detection-job/1234abcd12ab34cd56ef1234567890ab
sourcepub fn set_job_arn(self, input: Option<String>) -> Self
pub fn set_job_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the PII entity detection job. It is a unique, fully qualified identifier for the job. It includes the Amazon Web Services account, Amazon Web Services Region, and the job ID. The format of the ARN is as follows:
arn:
The following is an example job ARN:
arn:aws:comprehend:us-west-2:111122223333:pii-entities-detection-job/1234abcd12ab34cd56ef1234567890ab
sourcepub fn get_job_arn(&self) -> &Option<String>
pub fn get_job_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the PII entity detection job. It is a unique, fully qualified identifier for the job. It includes the Amazon Web Services account, Amazon Web Services Region, and the job ID. The format of the ARN is as follows:
arn:
The following is an example job ARN:
arn:aws:comprehend:us-west-2:111122223333:pii-entities-detection-job/1234abcd12ab34cd56ef1234567890ab
sourcepub fn job_status(self, input: JobStatus) -> Self
pub fn job_status(self, input: JobStatus) -> Self
The status of the job.
sourcepub fn set_job_status(self, input: Option<JobStatus>) -> Self
pub fn set_job_status(self, input: Option<JobStatus>) -> Self
The status of the job.
sourcepub fn get_job_status(&self) -> &Option<JobStatus>
pub fn get_job_status(&self) -> &Option<JobStatus>
The status of the job.
sourcepub fn build(self) -> StartPiiEntitiesDetectionJobOutput
pub fn build(self) -> StartPiiEntitiesDetectionJobOutput
Consumes the builder and constructs a StartPiiEntitiesDetectionJobOutput.
Trait Implementations§
source§impl Clone for StartPiiEntitiesDetectionJobOutputBuilder
impl Clone for StartPiiEntitiesDetectionJobOutputBuilder
source§fn clone(&self) -> StartPiiEntitiesDetectionJobOutputBuilder
fn clone(&self) -> StartPiiEntitiesDetectionJobOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for StartPiiEntitiesDetectionJobOutputBuilder
impl Default for StartPiiEntitiesDetectionJobOutputBuilder
source§fn default() -> StartPiiEntitiesDetectionJobOutputBuilder
fn default() -> StartPiiEntitiesDetectionJobOutputBuilder
source§impl PartialEq for StartPiiEntitiesDetectionJobOutputBuilder
impl PartialEq for StartPiiEntitiesDetectionJobOutputBuilder
source§fn eq(&self, other: &StartPiiEntitiesDetectionJobOutputBuilder) -> bool
fn eq(&self, other: &StartPiiEntitiesDetectionJobOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartPiiEntitiesDetectionJobOutputBuilder
Auto Trait Implementations§
impl Freeze for StartPiiEntitiesDetectionJobOutputBuilder
impl RefUnwindSafe for StartPiiEntitiesDetectionJobOutputBuilder
impl Send for StartPiiEntitiesDetectionJobOutputBuilder
impl Sync for StartPiiEntitiesDetectionJobOutputBuilder
impl Unpin for StartPiiEntitiesDetectionJobOutputBuilder
impl UnwindSafe for StartPiiEntitiesDetectionJobOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more