Interface CreateResourceServerRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CognitoIdentityProviderRequest.Builder,CopyableBuilder<CreateResourceServerRequest.Builder,CreateResourceServerRequest>,SdkBuilder<CreateResourceServerRequest.Builder,CreateResourceServerRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateResourceServerRequest
public static interface CreateResourceServerRequest.Builder extends CognitoIdentityProviderRequest.Builder, SdkPojo, CopyableBuilder<CreateResourceServerRequest.Builder,CreateResourceServerRequest>
-
-
Method Summary
-
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 Detail
-
userPoolId
CreateResourceServerRequest.Builder userPoolId(String 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
CreateResourceServerRequest.Builder identifier(String 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.comas 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.comas 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
CreateResourceServerRequest.Builder name(String 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
CreateResourceServerRequest.Builder scopes(Collection<ResourceServerScopeType> scopes)
A list of custom scopes. Each scope is a key-value map with the keys
ScopeNameandScopeDescription. The name of a custom scope is a combination ofScopeNameand the resource serverNamein this request, for exampleMyResourceServerName/MyScopeName.- Parameters:
scopes- A list of custom scopes. Each scope is a key-value map with the keysScopeNameandScopeDescription. The name of a custom scope is a combination ofScopeNameand the resource serverNamein this request, for exampleMyResourceServerName/MyScopeName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scopes
CreateResourceServerRequest.Builder scopes(ResourceServerScopeType... scopes)
A list of custom scopes. Each scope is a key-value map with the keys
ScopeNameandScopeDescription. The name of a custom scope is a combination ofScopeNameand the resource serverNamein this request, for exampleMyResourceServerName/MyScopeName.- Parameters:
scopes- A list of custom scopes. Each scope is a key-value map with the keysScopeNameandScopeDescription. The name of a custom scope is a combination ofScopeNameand the resource serverNamein this request, for exampleMyResourceServerName/MyScopeName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scopes
CreateResourceServerRequest.Builder scopes(Consumer<ResourceServerScopeType.Builder>... 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 theScopeNameandScopeDescription. The name of a custom scope is a combination ofScopeNameand the resource serverNamein this request, for exampleMyResourceServerName/MyScopeName.ResourceServerScopeType.Builderavoiding the need to create one manually viaResourceServerScopeType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#scopes(List.) - 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:
#scopes(java.util.Collection)
-
overrideConfiguration
CreateResourceServerRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateResourceServerRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-