Struct aws_sdk_connectcases::operation::get_layout::GetLayoutOutput
source · #[non_exhaustive]pub struct GetLayoutOutput {
pub layout_id: String,
pub layout_arn: String,
pub name: String,
pub content: Option<LayoutContent>,
pub tags: Option<HashMap<String, Option<String>>>,
pub deleted: bool,
pub created_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.layout_id: StringThe unique identifier of the layout.
layout_arn: StringThe Amazon Resource Name (ARN) of the newly created layout.
name: StringThe name of the layout. It must be unique.
content: Option<LayoutContent>Information about which fields will be present in the layout, the order of the fields, and read-only attribute of the field.
A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.
deleted: boolDenotes whether or not the resource has been deleted.
created_time: Option<DateTime>Timestamp at which the resource was created.
last_modified_time: Option<DateTime>Timestamp at which the resource was created or last modified.
Implementations§
source§impl GetLayoutOutput
impl GetLayoutOutput
sourcepub fn layout_arn(&self) -> &str
pub fn layout_arn(&self) -> &str
The Amazon Resource Name (ARN) of the newly created layout.
sourcepub fn content(&self) -> Option<&LayoutContent>
pub fn content(&self) -> Option<&LayoutContent>
Information about which fields will be present in the layout, the order of the fields, and read-only attribute of the field.
A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
Timestamp at which the resource was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
Timestamp at which the resource was created or last modified.
source§impl GetLayoutOutput
impl GetLayoutOutput
sourcepub fn builder() -> GetLayoutOutputBuilder
pub fn builder() -> GetLayoutOutputBuilder
Creates a new builder-style object to manufacture GetLayoutOutput.
Trait Implementations§
source§impl Clone for GetLayoutOutput
impl Clone for GetLayoutOutput
source§fn clone(&self) -> GetLayoutOutput
fn clone(&self) -> GetLayoutOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetLayoutOutput
impl Debug for GetLayoutOutput
source§impl PartialEq for GetLayoutOutput
impl PartialEq for GetLayoutOutput
source§fn eq(&self, other: &GetLayoutOutput) -> bool
fn eq(&self, other: &GetLayoutOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetLayoutOutput
impl RequestId for GetLayoutOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetLayoutOutput
Auto Trait Implementations§
impl Freeze for GetLayoutOutput
impl RefUnwindSafe for GetLayoutOutput
impl Send for GetLayoutOutput
impl Sync for GetLayoutOutput
impl Unpin for GetLayoutOutput
impl UnwindSafe for GetLayoutOutput
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