#[non_exhaustive]pub struct GetSubscriptionOutput {
pub subscription_type: Option<String>,
pub aws_account_name: Option<String>,
pub pending_subscription_type: Option<String>,
pub pending_subscription_start_time: Option<DateTime>,
/* 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.subscription_type: Option<String>
The type of the billing plan for the space.
aws_account_name: Option<String>
The display name of the Amazon Web Services account used for billing for the space.
pending_subscription_type: Option<String>
The type of the billing plan that the space will be changed to at the start of the next billing cycle. This applies only to changes that reduce the functionality available for the space. Billing plan changes that increase functionality are applied immediately. For more information, see Pricing.
pending_subscription_start_time: Option<DateTime>
The day and time the pending change will be applied to the space, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
Implementations§
source§impl GetSubscriptionOutput
impl GetSubscriptionOutput
sourcepub fn subscription_type(&self) -> Option<&str>
pub fn subscription_type(&self) -> Option<&str>
The type of the billing plan for the space.
sourcepub fn aws_account_name(&self) -> Option<&str>
pub fn aws_account_name(&self) -> Option<&str>
The display name of the Amazon Web Services account used for billing for the space.
sourcepub fn pending_subscription_type(&self) -> Option<&str>
pub fn pending_subscription_type(&self) -> Option<&str>
The type of the billing plan that the space will be changed to at the start of the next billing cycle. This applies only to changes that reduce the functionality available for the space. Billing plan changes that increase functionality are applied immediately. For more information, see Pricing.
sourcepub fn pending_subscription_start_time(&self) -> Option<&DateTime>
pub fn pending_subscription_start_time(&self) -> Option<&DateTime>
The day and time the pending change will be applied to the space, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
source§impl GetSubscriptionOutput
impl GetSubscriptionOutput
sourcepub fn builder() -> GetSubscriptionOutputBuilder
pub fn builder() -> GetSubscriptionOutputBuilder
Creates a new builder-style object to manufacture GetSubscriptionOutput
.
Trait Implementations§
source§impl Clone for GetSubscriptionOutput
impl Clone for GetSubscriptionOutput
source§fn clone(&self) -> GetSubscriptionOutput
fn clone(&self) -> GetSubscriptionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetSubscriptionOutput
impl Debug for GetSubscriptionOutput
source§impl PartialEq for GetSubscriptionOutput
impl PartialEq for GetSubscriptionOutput
source§fn eq(&self, other: &GetSubscriptionOutput) -> bool
fn eq(&self, other: &GetSubscriptionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSubscriptionOutput
impl RequestId for GetSubscriptionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetSubscriptionOutput
Auto Trait Implementations§
impl Freeze for GetSubscriptionOutput
impl RefUnwindSafe for GetSubscriptionOutput
impl Send for GetSubscriptionOutput
impl Sync for GetSubscriptionOutput
impl Unpin for GetSubscriptionOutput
impl UnwindSafe for GetSubscriptionOutput
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