com.amazonaws.services.cognitoidentity.model.CognitoIdentityProvider Maven / Gradle / Ivy
Show all versions of aws-java-sdk-cognitoidentity Show documentation
/*
* Copyright 2019-2024 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.cognitoidentity.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* A provider representing an Amazon Cognito user pool and its client ID.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CognitoIdentityProvider implements Serializable, Cloneable, StructuredPojo {
/**
*
* The provider name for an Amazon Cognito user pool. For example,
* cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
*
*/
private String providerName;
/**
*
* The client ID for the Amazon Cognito user pool.
*
*/
private String clientId;
/**
*
* TRUE if server-side token validation is enabled for the identity provider’s token.
*
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check with
* the integrated user pools to make sure that the user has not been globally signed out or deleted before the
* identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*
*/
private Boolean serverSideTokenCheck;
/**
*
* The provider name for an Amazon Cognito user pool. For example,
* cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
*
*
* @param providerName
* The provider name for an Amazon Cognito user pool. For example,
* cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
*/
public void setProviderName(String providerName) {
this.providerName = providerName;
}
/**
*
* The provider name for an Amazon Cognito user pool. For example,
* cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
*
*
* @return The provider name for an Amazon Cognito user pool. For example,
* cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
*/
public String getProviderName() {
return this.providerName;
}
/**
*
* The provider name for an Amazon Cognito user pool. For example,
* cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
*
*
* @param providerName
* The provider name for an Amazon Cognito user pool. For example,
* cognito-idp.us-east-1.amazonaws.com/us-east-1_123456789
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CognitoIdentityProvider withProviderName(String providerName) {
setProviderName(providerName);
return this;
}
/**
*
* The client ID for the Amazon Cognito user pool.
*
*
* @param clientId
* The client ID for the Amazon Cognito user pool.
*/
public void setClientId(String clientId) {
this.clientId = clientId;
}
/**
*
* The client ID for the Amazon Cognito user pool.
*
*
* @return The client ID for the Amazon Cognito user pool.
*/
public String getClientId() {
return this.clientId;
}
/**
*
* The client ID for the Amazon Cognito user pool.
*
*
* @param clientId
* The client ID for the Amazon Cognito user pool.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CognitoIdentityProvider withClientId(String clientId) {
setClientId(clientId);
return this;
}
/**
*
* TRUE if server-side token validation is enabled for the identity provider’s token.
*
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check with
* the integrated user pools to make sure that the user has not been globally signed out or deleted before the
* identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*
*
* @param serverSideTokenCheck
* TRUE if server-side token validation is enabled for the identity provider’s token.
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check
* with the integrated user pools to make sure that the user has not been globally signed out or deleted
* before the identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*/
public void setServerSideTokenCheck(Boolean serverSideTokenCheck) {
this.serverSideTokenCheck = serverSideTokenCheck;
}
/**
*
* TRUE if server-side token validation is enabled for the identity provider’s token.
*
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check with
* the integrated user pools to make sure that the user has not been globally signed out or deleted before the
* identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*
*
* @return TRUE if server-side token validation is enabled for the identity provider’s token.
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will
* check with the integrated user pools to make sure that the user has not been globally signed out or
* deleted before the identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*/
public Boolean getServerSideTokenCheck() {
return this.serverSideTokenCheck;
}
/**
*
* TRUE if server-side token validation is enabled for the identity provider’s token.
*
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check with
* the integrated user pools to make sure that the user has not been globally signed out or deleted before the
* identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*
*
* @param serverSideTokenCheck
* TRUE if server-side token validation is enabled for the identity provider’s token.
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check
* with the integrated user pools to make sure that the user has not been globally signed out or deleted
* before the identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CognitoIdentityProvider withServerSideTokenCheck(Boolean serverSideTokenCheck) {
setServerSideTokenCheck(serverSideTokenCheck);
return this;
}
/**
*
* TRUE if server-side token validation is enabled for the identity provider’s token.
*
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will check with
* the integrated user pools to make sure that the user has not been globally signed out or deleted before the
* identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*
*
* @return TRUE if server-side token validation is enabled for the identity provider’s token.
*
* Once you set ServerSideTokenCheck
to TRUE for an identity pool, that identity pool will
* check with the integrated user pools to make sure that the user has not been globally signed out or
* deleted before the identity pool provides an OIDC token or AWS credentials for the user.
*
*
* If the user is signed out or deleted, the identity pool will return a 400 Not Authorized error.
*/
public Boolean isServerSideTokenCheck() {
return this.serverSideTokenCheck;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getProviderName() != null)
sb.append("ProviderName: ").append(getProviderName()).append(",");
if (getClientId() != null)
sb.append("ClientId: ").append(getClientId()).append(",");
if (getServerSideTokenCheck() != null)
sb.append("ServerSideTokenCheck: ").append(getServerSideTokenCheck());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CognitoIdentityProvider == false)
return false;
CognitoIdentityProvider other = (CognitoIdentityProvider) obj;
if (other.getProviderName() == null ^ this.getProviderName() == null)
return false;
if (other.getProviderName() != null && other.getProviderName().equals(this.getProviderName()) == false)
return false;
if (other.getClientId() == null ^ this.getClientId() == null)
return false;
if (other.getClientId() != null && other.getClientId().equals(this.getClientId()) == false)
return false;
if (other.getServerSideTokenCheck() == null ^ this.getServerSideTokenCheck() == null)
return false;
if (other.getServerSideTokenCheck() != null && other.getServerSideTokenCheck().equals(this.getServerSideTokenCheck()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getProviderName() == null) ? 0 : getProviderName().hashCode());
hashCode = prime * hashCode + ((getClientId() == null) ? 0 : getClientId().hashCode());
hashCode = prime * hashCode + ((getServerSideTokenCheck() == null) ? 0 : getServerSideTokenCheck().hashCode());
return hashCode;
}
@Override
public CognitoIdentityProvider clone() {
try {
return (CognitoIdentityProvider) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.cognitoidentity.model.transform.CognitoIdentityProviderMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}