#[non_exhaustive]pub struct UpdateProfileInputBuilder { /* private fields */ }
Expand description
A builder for UpdateProfileInput
.
Implementations§
source§impl UpdateProfileInputBuilder
impl UpdateProfileInputBuilder
sourcepub fn profile_id(self, input: impl Into<String>) -> Self
pub fn profile_id(self, input: impl Into<String>) -> Self
The identifier of the profile object that you are updating.
This field is required.sourcepub fn set_profile_id(self, input: Option<String>) -> Self
pub fn set_profile_id(self, input: Option<String>) -> Self
The identifier of the profile object that you are updating.
sourcepub fn get_profile_id(&self) -> &Option<String>
pub fn get_profile_id(&self) -> &Option<String>
The identifier of the profile object that you are updating.
sourcepub fn certificate_ids(self, input: impl Into<String>) -> Self
pub fn certificate_ids(self, input: impl Into<String>) -> Self
Appends an item to certificate_ids
.
To override the contents of this collection use set_certificate_ids
.
An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.
sourcepub fn set_certificate_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_certificate_ids(self, input: Option<Vec<String>>) -> Self
An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.
sourcepub fn get_certificate_ids(&self) -> &Option<Vec<String>>
pub fn get_certificate_ids(&self) -> &Option<Vec<String>>
An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.
sourcepub fn build(self) -> Result<UpdateProfileInput, BuildError>
pub fn build(self) -> Result<UpdateProfileInput, BuildError>
Consumes the builder and constructs a UpdateProfileInput
.
source§impl UpdateProfileInputBuilder
impl UpdateProfileInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateProfileOutput, SdkError<UpdateProfileError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateProfileOutput, SdkError<UpdateProfileError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateProfileInputBuilder
impl Clone for UpdateProfileInputBuilder
source§fn clone(&self) -> UpdateProfileInputBuilder
fn clone(&self) -> UpdateProfileInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateProfileInputBuilder
impl Debug for UpdateProfileInputBuilder
source§impl Default for UpdateProfileInputBuilder
impl Default for UpdateProfileInputBuilder
source§fn default() -> UpdateProfileInputBuilder
fn default() -> UpdateProfileInputBuilder
source§impl PartialEq for UpdateProfileInputBuilder
impl PartialEq for UpdateProfileInputBuilder
source§fn eq(&self, other: &UpdateProfileInputBuilder) -> bool
fn eq(&self, other: &UpdateProfileInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.