Struct aws_sdk_connectcases::types::GetFieldResponse
source · #[non_exhaustive]pub struct GetFieldResponse {
pub field_id: String,
pub name: String,
pub field_arn: String,
pub description: Option<String>,
pub type: FieldType,
pub namespace: FieldNamespace,
pub tags: Option<HashMap<String, Option<String>>>,
pub deleted: bool,
pub created_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
}Expand description
Object to store detailed field information.
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.field_id: StringUnique identifier of the field.
name: StringName of the field.
field_arn: StringThe Amazon Resource Name (ARN) of the field.
description: Option<String>Description of the field.
type: FieldTypeType of the field.
namespace: FieldNamespaceNamespace 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 GetFieldResponse
impl GetFieldResponse
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the field.
sourcepub fn namespace(&self) -> &FieldNamespace
pub fn namespace(&self) -> &FieldNamespace
Namespace 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 GetFieldResponse
impl GetFieldResponse
sourcepub fn builder() -> GetFieldResponseBuilder
pub fn builder() -> GetFieldResponseBuilder
Creates a new builder-style object to manufacture GetFieldResponse.
Trait Implementations§
source§impl Clone for GetFieldResponse
impl Clone for GetFieldResponse
source§fn clone(&self) -> GetFieldResponse
fn clone(&self) -> GetFieldResponse
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetFieldResponse
impl Debug for GetFieldResponse
source§impl PartialEq for GetFieldResponse
impl PartialEq for GetFieldResponse
source§fn eq(&self, other: &GetFieldResponse) -> bool
fn eq(&self, other: &GetFieldResponse) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetFieldResponse
Auto Trait Implementations§
impl Freeze for GetFieldResponse
impl RefUnwindSafe for GetFieldResponse
impl Send for GetFieldResponse
impl Sync for GetFieldResponse
impl Unpin for GetFieldResponse
impl UnwindSafe for GetFieldResponse
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