Struct aws_sdk_greengrassv2::operation::create_component_version::CreateComponentVersionOutput   
source · #[non_exhaustive]pub struct CreateComponentVersionOutput {
    pub arn: Option<String>,
    pub component_name: String,
    pub component_version: String,
    pub creation_timestamp: DateTime,
    pub status: Option<CloudComponentStatus>,
    /* 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 component version.
component_name: StringThe name of the component.
component_version: StringThe version of the component.
creation_timestamp: DateTimeThe time at which the component was created, expressed in ISO 8601 format.
status: Option<CloudComponentStatus>The status of the component version in IoT Greengrass V2. This status is different from the status of the component on a core device.
Implementations§
source§impl CreateComponentVersionOutput
 
impl CreateComponentVersionOutput
sourcepub fn component_name(&self) -> &str
 
pub fn component_name(&self) -> &str
The name of the component.
sourcepub fn component_version(&self) -> &str
 
pub fn component_version(&self) -> &str
The version of the component.
sourcepub fn creation_timestamp(&self) -> &DateTime
 
pub fn creation_timestamp(&self) -> &DateTime
The time at which the component was created, expressed in ISO 8601 format.
sourcepub fn status(&self) -> Option<&CloudComponentStatus>
 
pub fn status(&self) -> Option<&CloudComponentStatus>
The status of the component version in IoT Greengrass V2. This status is different from the status of the component on a core device.
source§impl CreateComponentVersionOutput
 
impl CreateComponentVersionOutput
sourcepub fn builder() -> CreateComponentVersionOutputBuilder
 
pub fn builder() -> CreateComponentVersionOutputBuilder
Creates a new builder-style object to manufacture CreateComponentVersionOutput.
Trait Implementations§
source§impl Clone for CreateComponentVersionOutput
 
impl Clone for CreateComponentVersionOutput
source§fn clone(&self) -> CreateComponentVersionOutput
 
fn clone(&self) -> CreateComponentVersionOutput
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 Debug for CreateComponentVersionOutput
 
impl Debug for CreateComponentVersionOutput
source§impl PartialEq for CreateComponentVersionOutput
 
impl PartialEq for CreateComponentVersionOutput
source§fn eq(&self, other: &CreateComponentVersionOutput) -> bool
 
fn eq(&self, other: &CreateComponentVersionOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateComponentVersionOutput
 
impl RequestId for CreateComponentVersionOutput
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 CreateComponentVersionOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateComponentVersionOutput
impl Send for CreateComponentVersionOutput
impl Sync for CreateComponentVersionOutput
impl Unpin for CreateComponentVersionOutput
impl UnwindSafe for CreateComponentVersionOutput
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.