/* * 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 UpdateResourceServerRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The user pool ID for the user pool. *
*/ private String userPoolId; /** ** The identifier for the resource server. *
*/ private String identifier; /** ** The name of the resource server. *
*/ private String name; /** ** The scope values to be set for the resource server. *
*/ private java.util.List* 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 UpdateResourceServerRequest withUserPoolId(String userPoolId) { setUserPoolId(userPoolId); return this; } /** ** The identifier for the resource server. *
* * @param identifier * The identifier for the resource server. */ public void setIdentifier(String identifier) { this.identifier = identifier; } /** ** The identifier for the resource server. *
* * @return The identifier for the resource server. */ public String getIdentifier() { return this.identifier; } /** ** The identifier for the resource server. *
* * @param identifier * The identifier for the resource server. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateResourceServerRequest withIdentifier(String identifier) { setIdentifier(identifier); return this; } /** ** The name of the resource server. *
* * @param name * The name of the resource server. */ public void setName(String name) { this.name = name; } /** ** The name of the resource server. *
* * @return The name of the resource server. */ public String getName() { return this.name; } /** ** The name of the resource server. *
* * @param name * The name of the resource server. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateResourceServerRequest withName(String name) { setName(name); return this; } /** ** The scope values to be set for the resource server. *
* * @return The scope values to be set for the resource server. */ public java.util.List* The scope values to be set for the resource server. *
* * @param scopes * The scope values to be set for the resource server. */ public void setScopes(java.util.Collection* The scope values to be set for the resource server. *
** 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 * The scope values to be set for the resource server. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateResourceServerRequest withScopes(ResourceServerScopeType... scopes) { if (this.scopes == null) { setScopes(new java.util.ArrayList* The scope values to be set for the resource server. *
* * @param scopes * The scope values to be set for the resource server. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateResourceServerRequest withScopes(java.util.Collection