#[non_exhaustive]pub struct GetFunctionDefinitionOutput {
pub arn: Option<String>,
pub creation_timestamp: Option<String>,
pub id: Option<String>,
pub last_updated_timestamp: Option<String>,
pub latest_version: Option<String>,
pub latest_version_arn: Option<String>,
pub name: Option<String>,
pub tags: Option<HashMap<String, String>>,
/* 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.arn: Option<String>
The ARN of the definition.
creation_timestamp: Option<String>
The time, in milliseconds since the epoch, when the definition was created.
id: Option<String>
The ID of the definition.
last_updated_timestamp: Option<String>
The time, in milliseconds since the epoch, when the definition was last updated.
latest_version: Option<String>
The ID of the latest version associated with the definition.
latest_version_arn: Option<String>
The ARN of the latest version associated with the definition.
name: Option<String>
The name of the definition.
Tag(s) attached to the resource arn.
Implementations§
source§impl GetFunctionDefinitionOutput
impl GetFunctionDefinitionOutput
sourcepub fn creation_timestamp(&self) -> Option<&str>
pub fn creation_timestamp(&self) -> Option<&str>
The time, in milliseconds since the epoch, when the definition was created.
sourcepub fn last_updated_timestamp(&self) -> Option<&str>
pub fn last_updated_timestamp(&self) -> Option<&str>
The time, in milliseconds since the epoch, when the definition was last updated.
sourcepub fn latest_version(&self) -> Option<&str>
pub fn latest_version(&self) -> Option<&str>
The ID of the latest version associated with the definition.
sourcepub fn latest_version_arn(&self) -> Option<&str>
pub fn latest_version_arn(&self) -> Option<&str>
The ARN of the latest version associated with the definition.
Tag(s) attached to the resource arn.
source§impl GetFunctionDefinitionOutput
impl GetFunctionDefinitionOutput
sourcepub fn builder() -> GetFunctionDefinitionOutputBuilder
pub fn builder() -> GetFunctionDefinitionOutputBuilder
Creates a new builder-style object to manufacture GetFunctionDefinitionOutput
.
Trait Implementations§
source§impl Clone for GetFunctionDefinitionOutput
impl Clone for GetFunctionDefinitionOutput
source§fn clone(&self) -> GetFunctionDefinitionOutput
fn clone(&self) -> GetFunctionDefinitionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetFunctionDefinitionOutput
impl Debug for GetFunctionDefinitionOutput
source§impl PartialEq for GetFunctionDefinitionOutput
impl PartialEq for GetFunctionDefinitionOutput
source§fn eq(&self, other: &GetFunctionDefinitionOutput) -> bool
fn eq(&self, other: &GetFunctionDefinitionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetFunctionDefinitionOutput
impl RequestId for GetFunctionDefinitionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetFunctionDefinitionOutput
Auto Trait Implementations§
impl Freeze for GetFunctionDefinitionOutput
impl RefUnwindSafe for GetFunctionDefinitionOutput
impl Send for GetFunctionDefinitionOutput
impl Sync for GetFunctionDefinitionOutput
impl Unpin for GetFunctionDefinitionOutput
impl UnwindSafe for GetFunctionDefinitionOutput
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