Struct aws_sdk_codecatalyst::operation::get_subscription::builders::GetSubscriptionOutputBuilder
source · #[non_exhaustive]pub struct GetSubscriptionOutputBuilder { /* private fields */ }
Expand description
A builder for GetSubscriptionOutput
.
Implementations§
source§impl GetSubscriptionOutputBuilder
impl GetSubscriptionOutputBuilder
sourcepub fn subscription_type(self, input: impl Into<String>) -> Self
pub fn subscription_type(self, input: impl Into<String>) -> Self
The type of the billing plan for the space.
sourcepub fn set_subscription_type(self, input: Option<String>) -> Self
pub fn set_subscription_type(self, input: Option<String>) -> Self
The type of the billing plan for the space.
sourcepub fn get_subscription_type(&self) -> &Option<String>
pub fn get_subscription_type(&self) -> &Option<String>
The type of the billing plan for the space.
sourcepub fn aws_account_name(self, input: impl Into<String>) -> Self
pub fn aws_account_name(self, input: impl Into<String>) -> Self
The display name of the Amazon Web Services account used for billing for the space.
sourcepub fn set_aws_account_name(self, input: Option<String>) -> Self
pub fn set_aws_account_name(self, input: Option<String>) -> Self
The display name of the Amazon Web Services account used for billing for the space.
sourcepub fn get_aws_account_name(&self) -> &Option<String>
pub fn get_aws_account_name(&self) -> &Option<String>
The display name of the Amazon Web Services account used for billing for the space.
sourcepub fn pending_subscription_type(self, input: impl Into<String>) -> Self
pub fn pending_subscription_type(self, input: impl Into<String>) -> Self
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 set_pending_subscription_type(self, input: Option<String>) -> Self
pub fn set_pending_subscription_type(self, input: Option<String>) -> Self
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 get_pending_subscription_type(&self) -> &Option<String>
pub fn get_pending_subscription_type(&self) -> &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.
sourcepub fn pending_subscription_start_time(self, input: DateTime) -> Self
pub fn pending_subscription_start_time(self, input: DateTime) -> Self
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.
sourcepub fn set_pending_subscription_start_time(
self,
input: Option<DateTime>
) -> Self
pub fn set_pending_subscription_start_time( self, input: Option<DateTime> ) -> Self
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.
sourcepub fn get_pending_subscription_start_time(&self) -> &Option<DateTime>
pub fn get_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.
sourcepub fn build(self) -> GetSubscriptionOutput
pub fn build(self) -> GetSubscriptionOutput
Consumes the builder and constructs a GetSubscriptionOutput
.
Trait Implementations§
source§impl Clone for GetSubscriptionOutputBuilder
impl Clone for GetSubscriptionOutputBuilder
source§fn clone(&self) -> GetSubscriptionOutputBuilder
fn clone(&self) -> GetSubscriptionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetSubscriptionOutputBuilder
impl Debug for GetSubscriptionOutputBuilder
source§impl Default for GetSubscriptionOutputBuilder
impl Default for GetSubscriptionOutputBuilder
source§fn default() -> GetSubscriptionOutputBuilder
fn default() -> GetSubscriptionOutputBuilder
source§impl PartialEq for GetSubscriptionOutputBuilder
impl PartialEq for GetSubscriptionOutputBuilder
source§fn eq(&self, other: &GetSubscriptionOutputBuilder) -> bool
fn eq(&self, other: &GetSubscriptionOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSubscriptionOutputBuilder
Auto Trait Implementations§
impl Freeze for GetSubscriptionOutputBuilder
impl RefUnwindSafe for GetSubscriptionOutputBuilder
impl Send for GetSubscriptionOutputBuilder
impl Sync for GetSubscriptionOutputBuilder
impl Unpin for GetSubscriptionOutputBuilder
impl UnwindSafe for GetSubscriptionOutputBuilder
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