#[non_exhaustive]pub struct CreateActivationOutputBuilder { /* private fields */ }
Expand description
A builder for CreateActivationOutput
.
Implementations§
source§impl CreateActivationOutputBuilder
impl CreateActivationOutputBuilder
sourcepub fn activation_id(self, input: impl Into<String>) -> Self
pub fn activation_id(self, input: impl Into<String>) -> Self
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
sourcepub fn set_activation_id(self, input: Option<String>) -> Self
pub fn set_activation_id(self, input: Option<String>) -> Self
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
sourcepub fn get_activation_id(&self) -> &Option<String>
pub fn get_activation_id(&self) -> &Option<String>
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
sourcepub fn activation_code(self, input: impl Into<String>) -> Self
pub fn activation_code(self, input: impl Into<String>) -> Self
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
sourcepub fn set_activation_code(self, input: Option<String>) -> Self
pub fn set_activation_code(self, input: Option<String>) -> Self
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
sourcepub fn get_activation_code(&self) -> &Option<String>
pub fn get_activation_code(&self) -> &Option<String>
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
sourcepub fn build(self) -> CreateActivationOutput
pub fn build(self) -> CreateActivationOutput
Consumes the builder and constructs a CreateActivationOutput
.
Trait Implementations§
source§impl Clone for CreateActivationOutputBuilder
impl Clone for CreateActivationOutputBuilder
source§fn clone(&self) -> CreateActivationOutputBuilder
fn clone(&self) -> CreateActivationOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateActivationOutputBuilder
impl Default for CreateActivationOutputBuilder
source§fn default() -> CreateActivationOutputBuilder
fn default() -> CreateActivationOutputBuilder
source§impl PartialEq<CreateActivationOutputBuilder> for CreateActivationOutputBuilder
impl PartialEq<CreateActivationOutputBuilder> for CreateActivationOutputBuilder
source§fn eq(&self, other: &CreateActivationOutputBuilder) -> bool
fn eq(&self, other: &CreateActivationOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.