Struct aws_sdk_cognitoidentityprovider::operation::update_resource_server::builders::UpdateResourceServerFluentBuilder
source · pub struct UpdateResourceServerFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateResourceServer.
Updates the name and scopes of resource server. All other fields are read-only.
If you don't provide a value for an attribute, it is set to the default value.
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 UpdateResourceServerFluentBuilder
impl UpdateResourceServerFluentBuilder
sourcepub fn as_input(&self) -> &UpdateResourceServerInputBuilder
pub fn as_input(&self) -> &UpdateResourceServerInputBuilder
Access the UpdateResourceServer as a reference.
sourcepub async fn send(
self
) -> Result<UpdateResourceServerOutput, SdkError<UpdateResourceServerError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateResourceServerOutput, SdkError<UpdateResourceServerError, 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<UpdateResourceServerOutput, UpdateResourceServerError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateResourceServerOutput, UpdateResourceServerError, 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.
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.
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.
sourcepub fn identifier(self, input: impl Into<String>) -> Self
pub fn identifier(self, input: impl Into<String>) -> Self
The identifier for the resource server.
sourcepub fn set_identifier(self, input: Option<String>) -> Self
pub fn set_identifier(self, input: Option<String>) -> Self
The identifier for the resource server.
sourcepub fn get_identifier(&self) -> &Option<String>
pub fn get_identifier(&self) -> &Option<String>
The identifier for the resource server.
sourcepub fn scopes(self, input: ResourceServerScopeType) -> Self
pub fn scopes(self, input: ResourceServerScopeType) -> Self
Appends an item to Scopes.
To override the contents of this collection use set_scopes.
The scope values to be set for the resource server.
sourcepub fn set_scopes(self, input: Option<Vec<ResourceServerScopeType>>) -> Self
pub fn set_scopes(self, input: Option<Vec<ResourceServerScopeType>>) -> Self
The scope values to be set for the resource server.
sourcepub fn get_scopes(&self) -> &Option<Vec<ResourceServerScopeType>>
pub fn get_scopes(&self) -> &Option<Vec<ResourceServerScopeType>>
The scope values to be set for the resource server.
Trait Implementations§
source§impl Clone for UpdateResourceServerFluentBuilder
impl Clone for UpdateResourceServerFluentBuilder
source§fn clone(&self) -> UpdateResourceServerFluentBuilder
fn clone(&self) -> UpdateResourceServerFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more