Struct aws_sdk_cognitoidentityprovider::operation::create_resource_server::builders::CreateResourceServerFluentBuilder
source · pub struct CreateResourceServerFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateResourceServer.
Creates a new OAuth2.0 resource server and defines custom scopes within it.
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 CreateResourceServerFluentBuilder
impl CreateResourceServerFluentBuilder
sourcepub fn as_input(&self) -> &CreateResourceServerInputBuilder
pub fn as_input(&self) -> &CreateResourceServerInputBuilder
Access the CreateResourceServer as a reference.
sourcepub async fn send(
self
) -> Result<CreateResourceServerOutput, SdkError<CreateResourceServerError, HttpResponse>>
pub async fn send( self ) -> Result<CreateResourceServerOutput, SdkError<CreateResourceServerError, 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<CreateResourceServerOutput, CreateResourceServerError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateResourceServerOutput, CreateResourceServerError, 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
A unique resource server identifier for the resource server. This could be an HTTPS endpoint where the resource server is located, such as https://my-weather-api.example.com.
sourcepub fn set_identifier(self, input: Option<String>) -> Self
pub fn set_identifier(self, input: Option<String>) -> Self
A unique resource server identifier for the resource server. This could be an HTTPS endpoint where the resource server is located, such as https://my-weather-api.example.com.
sourcepub fn get_identifier(&self) -> &Option<String>
pub fn get_identifier(&self) -> &Option<String>
A unique resource server identifier for the resource server. This could be an HTTPS endpoint where the resource server is located, such as https://my-weather-api.example.com.
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.
A list of scopes. Each scope is a key-value map with the keys name and description.
sourcepub fn set_scopes(self, input: Option<Vec<ResourceServerScopeType>>) -> Self
pub fn set_scopes(self, input: Option<Vec<ResourceServerScopeType>>) -> Self
A list of scopes. Each scope is a key-value map with the keys name and description.
sourcepub fn get_scopes(&self) -> &Option<Vec<ResourceServerScopeType>>
pub fn get_scopes(&self) -> &Option<Vec<ResourceServerScopeType>>
A list of scopes. Each scope is a key-value map with the keys name and description.
Trait Implementations§
source§impl Clone for CreateResourceServerFluentBuilder
impl Clone for CreateResourceServerFluentBuilder
source§fn clone(&self) -> CreateResourceServerFluentBuilder
fn clone(&self) -> CreateResourceServerFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more