pub struct UpdateProfileFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateProfile
.
Updates some of the parameters for an existing profile. Provide the ProfileId
for the profile that you want to update, along with the new values for the parameters to update.
Implementations§
source§impl UpdateProfileFluentBuilder
impl UpdateProfileFluentBuilder
sourcepub fn as_input(&self) -> &UpdateProfileInputBuilder
pub fn as_input(&self) -> &UpdateProfileInputBuilder
Access the UpdateProfile as a reference.
sourcepub async fn send(
self
) -> Result<UpdateProfileOutput, SdkError<UpdateProfileError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateProfileOutput, SdkError<UpdateProfileError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateProfileOutput, UpdateProfileError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateProfileOutput, UpdateProfileError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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 CertificateIds
.
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.
Trait Implementations§
source§impl Clone for UpdateProfileFluentBuilder
impl Clone for UpdateProfileFluentBuilder
source§fn clone(&self) -> UpdateProfileFluentBuilder
fn clone(&self) -> UpdateProfileFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more