@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class ResourceServerType extends Object implements Serializable, Cloneable, StructuredPojo
A container for information about a resource server for a user pool.
Constructor and Description |
---|
ResourceServerType() |
Modifier and Type | Method and Description |
---|---|
ResourceServerType |
clone() |
boolean |
equals(Object obj) |
String |
getIdentifier()
A unique resource server identifier for the resource server.
|
String |
getName()
The name of the resource server.
|
List<ResourceServerScopeType> |
getScopes()
A list of scopes that are defined for the resource server.
|
String |
getUserPoolId()
The user pool ID for the user pool that hosts the resource server.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setIdentifier(String identifier)
A unique resource server identifier for the resource server.
|
void |
setName(String name)
The name of the resource server.
|
void |
setScopes(Collection<ResourceServerScopeType> scopes)
A list of scopes that are defined for the resource server.
|
void |
setUserPoolId(String userPoolId)
The user pool ID for the user pool that hosts the resource server.
|
String |
toString()
Returns a string representation of this object.
|
ResourceServerType |
withIdentifier(String identifier)
A unique resource server identifier for the resource server.
|
ResourceServerType |
withName(String name)
The name of the resource server.
|
ResourceServerType |
withScopes(Collection<ResourceServerScopeType> scopes)
A list of scopes that are defined for the resource server.
|
ResourceServerType |
withScopes(ResourceServerScopeType... scopes)
A list of scopes that are defined for the resource server.
|
ResourceServerType |
withUserPoolId(String userPoolId)
The user pool ID for the user pool that hosts the resource server.
|
public void setUserPoolId(String userPoolId)
The user pool ID for the user pool that hosts the resource server.
userPoolId
- The user pool ID for the user pool that hosts the resource server.public String getUserPoolId()
The user pool ID for the user pool that hosts the resource server.
public ResourceServerType withUserPoolId(String userPoolId)
The user pool ID for the user pool that hosts the resource server.
userPoolId
- The user pool ID for the user pool that hosts the resource server.public void setIdentifier(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 like
https://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.
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 like
https://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.
public String getIdentifier()
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 like
https://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.
solar-system-data
. You can also set an API URL like
https://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.
public ResourceServerType withIdentifier(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 like
https://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.
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 like
https://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.
public void setName(String name)
The name of the resource server.
name
- The name of the resource server.public String getName()
The name of the resource server.
public ResourceServerType withName(String name)
The name of the resource server.
name
- The name of the resource server.public List<ResourceServerScopeType> getScopes()
A list of scopes that are defined for the resource server.
public void setScopes(Collection<ResourceServerScopeType> scopes)
A list of scopes that are defined for the resource server.
scopes
- A list of scopes that are defined for the resource server.public ResourceServerType withScopes(ResourceServerScopeType... scopes)
A list of scopes that are defined for the resource server.
NOTE: This method appends the values to the existing list (if any). Use
setScopes(java.util.Collection)
or withScopes(java.util.Collection)
if you want to override the
existing values.
scopes
- A list of scopes that are defined for the resource server.public ResourceServerType withScopes(Collection<ResourceServerScopeType> scopes)
A list of scopes that are defined for the resource server.
scopes
- A list of scopes that are defined for the resource server.public String toString()
toString
in class Object
Object.toString()
public ResourceServerType clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.