#[non_exhaustive]pub struct GetAddonInstanceOutput {
pub addon_subscription_id: Option<String>,
pub addon_name: Option<String>,
pub addon_instance_arn: Option<String>,
pub created_timestamp: Option<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.addon_subscription_id: Option<String>
The subscription ID associated to the instance.
addon_name: Option<String>
The name of the Add On provider associated to the subscription of the instance.
addon_instance_arn: Option<String>
The Amazon Resource Name (ARN) of the Add On instance.
created_timestamp: Option<DateTime>
The timestamp of when the Add On instance was created.
Implementations§
source§impl GetAddonInstanceOutput
impl GetAddonInstanceOutput
sourcepub fn addon_subscription_id(&self) -> Option<&str>
pub fn addon_subscription_id(&self) -> Option<&str>
The subscription ID associated to the instance.
sourcepub fn addon_name(&self) -> Option<&str>
pub fn addon_name(&self) -> Option<&str>
The name of the Add On provider associated to the subscription of the instance.
sourcepub fn addon_instance_arn(&self) -> Option<&str>
pub fn addon_instance_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Add On instance.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The timestamp of when the Add On instance was created.
source§impl GetAddonInstanceOutput
impl GetAddonInstanceOutput
sourcepub fn builder() -> GetAddonInstanceOutputBuilder
pub fn builder() -> GetAddonInstanceOutputBuilder
Creates a new builder-style object to manufacture GetAddonInstanceOutput
.
Trait Implementations§
source§impl Clone for GetAddonInstanceOutput
impl Clone for GetAddonInstanceOutput
source§fn clone(&self) -> GetAddonInstanceOutput
fn clone(&self) -> GetAddonInstanceOutput
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 GetAddonInstanceOutput
impl Debug for GetAddonInstanceOutput
source§impl PartialEq for GetAddonInstanceOutput
impl PartialEq for GetAddonInstanceOutput
source§fn eq(&self, other: &GetAddonInstanceOutput) -> bool
fn eq(&self, other: &GetAddonInstanceOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetAddonInstanceOutput
impl RequestId for GetAddonInstanceOutput
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 GetAddonInstanceOutput
Auto Trait Implementations§
impl Freeze for GetAddonInstanceOutput
impl RefUnwindSafe for GetAddonInstanceOutput
impl Send for GetAddonInstanceOutput
impl Sync for GetAddonInstanceOutput
impl Unpin for GetAddonInstanceOutput
impl UnwindSafe for GetAddonInstanceOutput
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.