/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.cognitoidp.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateResourceServerRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The user pool ID for the user pool. *
*/ private String userPoolId; /** *
* 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
.
*
* A friendly name for the resource server. *
*/ private String name; /** *
* A list of scopes. Each scope is a key-value map with the keys name
and description
.
*
* The user pool ID for the user pool. *
* * @param userPoolId * The user pool ID for the user pool. */ public void setUserPoolId(String userPoolId) { this.userPoolId = userPoolId; } /** ** The user pool ID for the user pool. *
* * @return The user pool ID for the user pool. */ public String getUserPoolId() { return this.userPoolId; } /** ** The user pool ID for the user pool. *
* * @param userPoolId * The user pool ID for the user pool. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateResourceServerRequest withUserPoolId(String userPoolId) { setUserPoolId(userPoolId); return this; } /** *
* 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
.
*
https://my-weather-api.example.com
.
*/
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
/**
*
* 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
.
*
https://my-weather-api.example.com
.
*/
public String getIdentifier() {
return this.identifier;
}
/**
*
* 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
.
*
https://my-weather-api.example.com
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateResourceServerRequest withIdentifier(String identifier) {
setIdentifier(identifier);
return this;
}
/**
* * A friendly name for the resource server. *
* * @param name * A friendly name for the resource server. */ public void setName(String name) { this.name = name; } /** ** A friendly name for the resource server. *
* * @return A friendly name for the resource server. */ public String getName() { return this.name; } /** ** A friendly name for the resource server. *
* * @param name * A friendly name for the resource server. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateResourceServerRequest withName(String name) { setName(name); return this; } /** *
* A list of scopes. Each scope is a key-value map with the keys name
and description
.
*
name
and
* description
.
*/
public java.util.List
* A list of scopes. Each scope is a key-value map with the keys name
and description
.
*
name
and
* description
.
*/
public void setScopes(java.util.Collection
* A list of scopes. Each scope is a key-value map with the keys name
and description
.
*
* NOTE: This method appends the values to the existing list (if any). Use * {@link #setScopes(java.util.Collection)} or {@link #withScopes(java.util.Collection)} if you want to override the * existing values. *
* * @param scopes * A list of scopes. Each scope is a key-value map with the keysname
and
* description
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateResourceServerRequest withScopes(ResourceServerScopeType... scopes) {
if (this.scopes == null) {
setScopes(new java.util.ArrayList
* A list of scopes. Each scope is a key-value map with the keys name
and description
.
*
name
and
* description
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateResourceServerRequest withScopes(java.util.Collection