#[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
impl StructuralPartialEq for UpdateProfileInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateProfileInputBuilder
impl RefUnwindSafe for UpdateProfileInputBuilder
impl Send for UpdateProfileInputBuilder
impl Sync for UpdateProfileInputBuilder
impl Unpin for UpdateProfileInputBuilder
impl UnwindSafe for UpdateProfileInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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