#[non_exhaustive]pub struct DescribeImageOutputBuilder { /* private fields */ }Expand description
A builder for DescribeImageOutput.
Implementations§
source§impl DescribeImageOutputBuilder
impl DescribeImageOutputBuilder
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
When the image was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
When the image was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
When the image was created.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the image.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the image.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the image.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the image as displayed.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The name of the image as displayed.
sourcepub fn get_display_name(&self) -> &Option<String>
pub fn get_display_name(&self) -> &Option<String>
The name of the image as displayed.
sourcepub fn failure_reason(self, input: impl Into<String>) -> Self
pub fn failure_reason(self, input: impl Into<String>) -> Self
When a create, update, or delete operation fails, the reason for the failure.
sourcepub fn set_failure_reason(self, input: Option<String>) -> Self
pub fn set_failure_reason(self, input: Option<String>) -> Self
When a create, update, or delete operation fails, the reason for the failure.
sourcepub fn get_failure_reason(&self) -> &Option<String>
pub fn get_failure_reason(&self) -> &Option<String>
When a create, update, or delete operation fails, the reason for the failure.
sourcepub fn set_image_arn(self, input: Option<String>) -> Self
pub fn set_image_arn(self, input: Option<String>) -> Self
The ARN of the image.
sourcepub fn get_image_arn(&self) -> &Option<String>
pub fn get_image_arn(&self) -> &Option<String>
The ARN of the image.
sourcepub fn image_name(self, input: impl Into<String>) -> Self
pub fn image_name(self, input: impl Into<String>) -> Self
The name of the image.
sourcepub fn set_image_name(self, input: Option<String>) -> Self
pub fn set_image_name(self, input: Option<String>) -> Self
The name of the image.
sourcepub fn get_image_name(&self) -> &Option<String>
pub fn get_image_name(&self) -> &Option<String>
The name of the image.
sourcepub fn image_status(self, input: ImageStatus) -> Self
pub fn image_status(self, input: ImageStatus) -> Self
The status of the image.
sourcepub fn set_image_status(self, input: Option<ImageStatus>) -> Self
pub fn set_image_status(self, input: Option<ImageStatus>) -> Self
The status of the image.
sourcepub fn get_image_status(&self) -> &Option<ImageStatus>
pub fn get_image_status(&self) -> &Option<ImageStatus>
The status of the image.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
When the image was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
When the image was last modified.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
When the image was last modified.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The ARN of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The ARN of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The ARN of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.
sourcepub fn build(self) -> DescribeImageOutput
pub fn build(self) -> DescribeImageOutput
Consumes the builder and constructs a DescribeImageOutput.
Trait Implementations§
source§impl Clone for DescribeImageOutputBuilder
impl Clone for DescribeImageOutputBuilder
source§fn clone(&self) -> DescribeImageOutputBuilder
fn clone(&self) -> DescribeImageOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeImageOutputBuilder
impl Debug for DescribeImageOutputBuilder
source§impl Default for DescribeImageOutputBuilder
impl Default for DescribeImageOutputBuilder
source§fn default() -> DescribeImageOutputBuilder
fn default() -> DescribeImageOutputBuilder
source§impl PartialEq for DescribeImageOutputBuilder
impl PartialEq for DescribeImageOutputBuilder
source§fn eq(&self, other: &DescribeImageOutputBuilder) -> bool
fn eq(&self, other: &DescribeImageOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeImageOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeImageOutputBuilder
impl RefUnwindSafe for DescribeImageOutputBuilder
impl Send for DescribeImageOutputBuilder
impl Sync for DescribeImageOutputBuilder
impl Unpin for DescribeImageOutputBuilder
impl UnwindSafe for DescribeImageOutputBuilder
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> 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