Interface CreateResourceServerRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CognitoIdentityProviderRequest.Builder
,CopyableBuilder<CreateResourceServerRequest.Builder,
,CreateResourceServerRequest> SdkBuilder<CreateResourceServerRequest.Builder,
,CreateResourceServerRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CreateResourceServerRequest
-
Method Summary
Modifier and TypeMethodDescriptionidentifier
(String identifier) A unique resource server identifier for the resource server.A friendly name for the resource server.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.scopes
(Collection<ResourceServerScopeType> scopes) A list of custom scopes.scopes
(Consumer<ResourceServerScopeType.Builder>... scopes) A list of custom scopes.scopes
(ResourceServerScopeType... scopes) A list of custom scopes.userPoolId
(String userPoolId) The ID of the user pool where you want to create a resource server.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.services.cognitoidentityprovider.model.CognitoIdentityProviderRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
userPoolId
The ID of the user pool where you want to create a resource server.
- Parameters:
userPoolId
- The ID of the user pool where you want to create a resource server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identifier
A unique resource server identifier for the resource server. The identifier can be an API friendly name like
solar-system-data
. You can also set an API URL likehttps://solar-system-data-api.example.com
as your identifier.Amazon Cognito represents scopes in the access token in the format
$resource-server-identifier/$scope
. Longer scope-identifier strings increase the size of your access tokens.- Parameters:
identifier
- A unique resource server identifier for the resource server. The identifier can be an API friendly name likesolar-system-data
. You can also set an API URL likehttps://solar-system-data-api.example.com
as your identifier.Amazon Cognito represents scopes in the access token in the format
$resource-server-identifier/$scope
. Longer scope-identifier strings increase the size of your access tokens.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
A friendly name for the resource server.
- Parameters:
name
- A friendly name for the resource server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scopes
A list of custom scopes. Each scope is a key-value map with the keys
ScopeName
andScopeDescription
. The name of a custom scope is a combination ofScopeName
and the resource serverName
in this request, for exampleMyResourceServerName/MyScopeName
.- Parameters:
scopes
- A list of custom scopes. Each scope is a key-value map with the keysScopeName
andScopeDescription
. The name of a custom scope is a combination ofScopeName
and the resource serverName
in this request, for exampleMyResourceServerName/MyScopeName
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scopes
A list of custom scopes. Each scope is a key-value map with the keys
ScopeName
andScopeDescription
. The name of a custom scope is a combination ofScopeName
and the resource serverName
in this request, for exampleMyResourceServerName/MyScopeName
.- Parameters:
scopes
- A list of custom scopes. Each scope is a key-value map with the keysScopeName
andScopeDescription
. The name of a custom scope is a combination ofScopeName
and the resource serverName
in this request, for exampleMyResourceServerName/MyScopeName
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scopes
A list of custom scopes. Each scope is a key-value map with the keys
This is a convenience method that creates an instance of theScopeName
andScopeDescription
. The name of a custom scope is a combination ofScopeName
and the resource serverName
in this request, for exampleMyResourceServerName/MyScopeName
.ResourceServerScopeType.Builder
avoiding the need to create one manually viaResourceServerScopeType.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toscopes(List<ResourceServerScopeType>)
.- Parameters:
scopes
- a consumer that will call methods onResourceServerScopeType.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
CreateResourceServerRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
CreateResourceServerRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-