Struct aws_sdk_greengrass::operation::create_function_definition_version::CreateFunctionDefinitionVersionOutput
source · #[non_exhaustive]pub struct CreateFunctionDefinitionVersionOutput {
pub arn: Option<String>,
pub creation_timestamp: Option<String>,
pub id: Option<String>,
pub version: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The ARN of the version.
creation_timestamp: Option<String>
The time, in milliseconds since the epoch, when the version was created.
id: Option<String>
The ID of the parent definition that the version is associated with.
version: Option<String>
The ID of the version.
Implementations§
source§impl CreateFunctionDefinitionVersionOutput
impl CreateFunctionDefinitionVersionOutput
source§impl CreateFunctionDefinitionVersionOutput
impl CreateFunctionDefinitionVersionOutput
sourcepub fn builder() -> CreateFunctionDefinitionVersionOutputBuilder
pub fn builder() -> CreateFunctionDefinitionVersionOutputBuilder
Creates a new builder-style object to manufacture CreateFunctionDefinitionVersionOutput
.
Trait Implementations§
source§impl Clone for CreateFunctionDefinitionVersionOutput
impl Clone for CreateFunctionDefinitionVersionOutput
source§fn clone(&self) -> CreateFunctionDefinitionVersionOutput
fn clone(&self) -> CreateFunctionDefinitionVersionOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for CreateFunctionDefinitionVersionOutput
impl PartialEq for CreateFunctionDefinitionVersionOutput
source§fn eq(&self, other: &CreateFunctionDefinitionVersionOutput) -> bool
fn eq(&self, other: &CreateFunctionDefinitionVersionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateFunctionDefinitionVersionOutput
impl RequestId for CreateFunctionDefinitionVersionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateFunctionDefinitionVersionOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateFunctionDefinitionVersionOutput
impl Send for CreateFunctionDefinitionVersionOutput
impl Sync for CreateFunctionDefinitionVersionOutput
impl Unpin for CreateFunctionDefinitionVersionOutput
impl UnwindSafe for CreateFunctionDefinitionVersionOutput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.