Struct aws_sdk_cognitoidentityprovider::operation::add_custom_attributes::builders::AddCustomAttributesFluentBuilder
source · pub struct AddCustomAttributesFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to AddCustomAttributes.
Adds additional user attributes to the user pool schema.
Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy.
Learn more
Implementations§
source§impl AddCustomAttributesFluentBuilder
impl AddCustomAttributesFluentBuilder
sourcepub fn as_input(&self) -> &AddCustomAttributesInputBuilder
pub fn as_input(&self) -> &AddCustomAttributesInputBuilder
Access the AddCustomAttributes as a reference.
sourcepub async fn send(
self
) -> Result<AddCustomAttributesOutput, SdkError<AddCustomAttributesError, HttpResponse>>
pub async fn send( self ) -> Result<AddCustomAttributesOutput, SdkError<AddCustomAttributesError, 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<AddCustomAttributesOutput, AddCustomAttributesError, Self>
pub fn customize( self ) -> CustomizableOperation<AddCustomAttributesOutput, AddCustomAttributesError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn user_pool_id(self, input: impl Into<String>) -> Self
pub fn user_pool_id(self, input: impl Into<String>) -> Self
The user pool ID for the user pool where you want to add custom attributes.
sourcepub fn set_user_pool_id(self, input: Option<String>) -> Self
pub fn set_user_pool_id(self, input: Option<String>) -> Self
The user pool ID for the user pool where you want to add custom attributes.
sourcepub fn get_user_pool_id(&self) -> &Option<String>
pub fn get_user_pool_id(&self) -> &Option<String>
The user pool ID for the user pool where you want to add custom attributes.
sourcepub fn custom_attributes(self, input: SchemaAttributeType) -> Self
pub fn custom_attributes(self, input: SchemaAttributeType) -> Self
Appends an item to CustomAttributes.
To override the contents of this collection use set_custom_attributes.
An array of custom attributes, such as Mutable and Name.
sourcepub fn set_custom_attributes(
self,
input: Option<Vec<SchemaAttributeType>>
) -> Self
pub fn set_custom_attributes( self, input: Option<Vec<SchemaAttributeType>> ) -> Self
An array of custom attributes, such as Mutable and Name.
sourcepub fn get_custom_attributes(&self) -> &Option<Vec<SchemaAttributeType>>
pub fn get_custom_attributes(&self) -> &Option<Vec<SchemaAttributeType>>
An array of custom attributes, such as Mutable and Name.
Trait Implementations§
source§impl Clone for AddCustomAttributesFluentBuilder
impl Clone for AddCustomAttributesFluentBuilder
source§fn clone(&self) -> AddCustomAttributesFluentBuilder
fn clone(&self) -> AddCustomAttributesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more