#[non_exhaustive]pub struct DescribeNodeOutput {Show 14 fields
pub node_id: String,
pub name: String,
pub category: NodeCategory,
pub owner_account: String,
pub package_name: String,
pub package_id: String,
pub package_arn: Option<String>,
pub package_version: String,
pub patch_version: String,
pub node_interface: Option<NodeInterface>,
pub asset_name: Option<String>,
pub description: String,
pub created_time: DateTime,
pub last_updated_time: DateTime,
/* 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.node_id: StringThe node's ID.
name: StringThe node's name.
category: NodeCategoryThe node's category.
owner_account: StringThe account ID of the node's owner.
package_name: StringThe node's package name.
package_id: StringThe node's package ID.
package_arn: Option<String>The node's ARN.
package_version: StringThe node's package version.
patch_version: StringThe node's patch version.
node_interface: Option<NodeInterface>The node's interface.
asset_name: Option<String>The node's asset name.
description: StringThe node's description.
created_time: DateTimeWhen the node was created.
last_updated_time: DateTimeWhen the node was updated.
Implementations§
source§impl DescribeNodeOutput
impl DescribeNodeOutput
sourcepub fn category(&self) -> &NodeCategory
pub fn category(&self) -> &NodeCategory
The node's category.
sourcepub fn owner_account(&self) -> &str
pub fn owner_account(&self) -> &str
The account ID of the node's owner.
sourcepub fn package_name(&self) -> &str
pub fn package_name(&self) -> &str
The node's package name.
sourcepub fn package_id(&self) -> &str
pub fn package_id(&self) -> &str
The node's package ID.
sourcepub fn package_arn(&self) -> Option<&str>
pub fn package_arn(&self) -> Option<&str>
The node's ARN.
sourcepub fn package_version(&self) -> &str
pub fn package_version(&self) -> &str
The node's package version.
sourcepub fn patch_version(&self) -> &str
pub fn patch_version(&self) -> &str
The node's patch version.
sourcepub fn node_interface(&self) -> Option<&NodeInterface>
pub fn node_interface(&self) -> Option<&NodeInterface>
The node's interface.
sourcepub fn asset_name(&self) -> Option<&str>
pub fn asset_name(&self) -> Option<&str>
The node's asset name.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
The node's description.
sourcepub fn created_time(&self) -> &DateTime
pub fn created_time(&self) -> &DateTime
When the node was created.
sourcepub fn last_updated_time(&self) -> &DateTime
pub fn last_updated_time(&self) -> &DateTime
When the node was updated.
source§impl DescribeNodeOutput
impl DescribeNodeOutput
sourcepub fn builder() -> DescribeNodeOutputBuilder
pub fn builder() -> DescribeNodeOutputBuilder
Creates a new builder-style object to manufacture DescribeNodeOutput.
Trait Implementations§
source§impl Clone for DescribeNodeOutput
impl Clone for DescribeNodeOutput
source§fn clone(&self) -> DescribeNodeOutput
fn clone(&self) -> DescribeNodeOutput
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 DescribeNodeOutput
impl Debug for DescribeNodeOutput
source§impl PartialEq for DescribeNodeOutput
impl PartialEq for DescribeNodeOutput
source§fn eq(&self, other: &DescribeNodeOutput) -> bool
fn eq(&self, other: &DescribeNodeOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeNodeOutput
impl RequestId for DescribeNodeOutput
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 DescribeNodeOutput
Auto Trait Implementations§
impl Freeze for DescribeNodeOutput
impl RefUnwindSafe for DescribeNodeOutput
impl Send for DescribeNodeOutput
impl Sync for DescribeNodeOutput
impl Unpin for DescribeNodeOutput
impl UnwindSafe for DescribeNodeOutput
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>
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.