All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.iamrolesanywhere.model.ProfileDetail Maven / Gradle / Ivy

Go to download

The AWS Java SDK for IAM Roles Anywhere module holds the client classes that are used for communicating with IAM Roles Anywhere Service

There is a newer version: 1.12.772
Show newest version
/*
 * 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.iamrolesanywhere.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The state of the profile after a read or write operation. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ProfileDetail implements Serializable, Cloneable, StructuredPojo { /** *

* Used to determine if a custom role session name will be accepted in a temporary credential request. *

*/ private Boolean acceptRoleSessionName; /** *

* A mapping applied to the authenticating end-entity certificate. *

*/ private java.util.List attributeMappings; /** *

* The ISO-8601 timestamp when the profile was created. *

*/ private java.util.Date createdAt; /** *

* The Amazon Web Services account that created the profile. *

*/ private String createdBy; /** *

* Used to determine how long sessions vended using this profile are valid for. See the Expiration * section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the * default value will be 3600. *

*/ private Integer durationSeconds; /** *

* Indicates whether the profile is enabled. *

*/ private Boolean enabled; /** *

* A list of managed policy ARNs that apply to the vended session credentials. *

*/ private java.util.List managedPolicyArns; /** *

* The name of the profile. *

*/ private String name; /** *

* The ARN of the profile. *

*/ private String profileArn; /** *

* The unique identifier of the profile. *

*/ private String profileId; /** *

* Specifies whether instance properties are required in temporary credential requests with this profile. *

*/ private Boolean requireInstanceProperties; /** *

* A list of IAM roles that this profile can assume in a temporary credential request. *

*/ private java.util.List roleArns; /** *

* A session policy that applies to the trust boundary of the vended session credentials. *

*/ private String sessionPolicy; /** *

* The ISO-8601 timestamp when the profile was last updated. *

*/ private java.util.Date updatedAt; /** *

* Used to determine if a custom role session name will be accepted in a temporary credential request. *

* * @param acceptRoleSessionName * Used to determine if a custom role session name will be accepted in a temporary credential request. */ public void setAcceptRoleSessionName(Boolean acceptRoleSessionName) { this.acceptRoleSessionName = acceptRoleSessionName; } /** *

* Used to determine if a custom role session name will be accepted in a temporary credential request. *

* * @return Used to determine if a custom role session name will be accepted in a temporary credential request. */ public Boolean getAcceptRoleSessionName() { return this.acceptRoleSessionName; } /** *

* Used to determine if a custom role session name will be accepted in a temporary credential request. *

* * @param acceptRoleSessionName * Used to determine if a custom role session name will be accepted in a temporary credential request. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withAcceptRoleSessionName(Boolean acceptRoleSessionName) { setAcceptRoleSessionName(acceptRoleSessionName); return this; } /** *

* Used to determine if a custom role session name will be accepted in a temporary credential request. *

* * @return Used to determine if a custom role session name will be accepted in a temporary credential request. */ public Boolean isAcceptRoleSessionName() { return this.acceptRoleSessionName; } /** *

* A mapping applied to the authenticating end-entity certificate. *

* * @return A mapping applied to the authenticating end-entity certificate. */ public java.util.List getAttributeMappings() { return attributeMappings; } /** *

* A mapping applied to the authenticating end-entity certificate. *

* * @param attributeMappings * A mapping applied to the authenticating end-entity certificate. */ public void setAttributeMappings(java.util.Collection attributeMappings) { if (attributeMappings == null) { this.attributeMappings = null; return; } this.attributeMappings = new java.util.ArrayList(attributeMappings); } /** *

* A mapping applied to the authenticating end-entity certificate. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setAttributeMappings(java.util.Collection)} or {@link #withAttributeMappings(java.util.Collection)} if * you want to override the existing values. *

* * @param attributeMappings * A mapping applied to the authenticating end-entity certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withAttributeMappings(AttributeMapping... attributeMappings) { if (this.attributeMappings == null) { setAttributeMappings(new java.util.ArrayList(attributeMappings.length)); } for (AttributeMapping ele : attributeMappings) { this.attributeMappings.add(ele); } return this; } /** *

* A mapping applied to the authenticating end-entity certificate. *

* * @param attributeMappings * A mapping applied to the authenticating end-entity certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withAttributeMappings(java.util.Collection attributeMappings) { setAttributeMappings(attributeMappings); return this; } /** *

* The ISO-8601 timestamp when the profile was created. *

* * @param createdAt * The ISO-8601 timestamp when the profile was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The ISO-8601 timestamp when the profile was created. *

* * @return The ISO-8601 timestamp when the profile was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The ISO-8601 timestamp when the profile was created. *

* * @param createdAt * The ISO-8601 timestamp when the profile was created. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The Amazon Web Services account that created the profile. *

* * @param createdBy * The Amazon Web Services account that created the profile. */ public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } /** *

* The Amazon Web Services account that created the profile. *

* * @return The Amazon Web Services account that created the profile. */ public String getCreatedBy() { return this.createdBy; } /** *

* The Amazon Web Services account that created the profile. *

* * @param createdBy * The Amazon Web Services account that created the profile. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withCreatedBy(String createdBy) { setCreatedBy(createdBy); return this; } /** *

* Used to determine how long sessions vended using this profile are valid for. See the Expiration * section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the * default value will be 3600. *

* * @param durationSeconds * Used to determine how long sessions vended using this profile are valid for. See the * Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, * the default value will be 3600. */ public void setDurationSeconds(Integer durationSeconds) { this.durationSeconds = durationSeconds; } /** *

* Used to determine how long sessions vended using this profile are valid for. See the Expiration * section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the * default value will be 3600. *

* * @return Used to determine how long sessions vended using this profile are valid for. See the * Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, * the default value will be 3600. */ public Integer getDurationSeconds() { return this.durationSeconds; } /** *

* Used to determine how long sessions vended using this profile are valid for. See the Expiration * section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the * default value will be 3600. *

* * @param durationSeconds * Used to determine how long sessions vended using this profile are valid for. See the * Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, * the default value will be 3600. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withDurationSeconds(Integer durationSeconds) { setDurationSeconds(durationSeconds); return this; } /** *

* Indicates whether the profile is enabled. *

* * @param enabled * Indicates whether the profile is enabled. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** *

* Indicates whether the profile is enabled. *

* * @return Indicates whether the profile is enabled. */ public Boolean getEnabled() { return this.enabled; } /** *

* Indicates whether the profile is enabled. *

* * @param enabled * Indicates whether the profile is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withEnabled(Boolean enabled) { setEnabled(enabled); return this; } /** *

* Indicates whether the profile is enabled. *

* * @return Indicates whether the profile is enabled. */ public Boolean isEnabled() { return this.enabled; } /** *

* A list of managed policy ARNs that apply to the vended session credentials. *

* * @return A list of managed policy ARNs that apply to the vended session credentials. */ public java.util.List getManagedPolicyArns() { return managedPolicyArns; } /** *

* A list of managed policy ARNs that apply to the vended session credentials. *

* * @param managedPolicyArns * A list of managed policy ARNs that apply to the vended session credentials. */ public void setManagedPolicyArns(java.util.Collection managedPolicyArns) { if (managedPolicyArns == null) { this.managedPolicyArns = null; return; } this.managedPolicyArns = new java.util.ArrayList(managedPolicyArns); } /** *

* A list of managed policy ARNs that apply to the vended session credentials. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setManagedPolicyArns(java.util.Collection)} or {@link #withManagedPolicyArns(java.util.Collection)} if * you want to override the existing values. *

* * @param managedPolicyArns * A list of managed policy ARNs that apply to the vended session credentials. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withManagedPolicyArns(String... managedPolicyArns) { if (this.managedPolicyArns == null) { setManagedPolicyArns(new java.util.ArrayList(managedPolicyArns.length)); } for (String ele : managedPolicyArns) { this.managedPolicyArns.add(ele); } return this; } /** *

* A list of managed policy ARNs that apply to the vended session credentials. *

* * @param managedPolicyArns * A list of managed policy ARNs that apply to the vended session credentials. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withManagedPolicyArns(java.util.Collection managedPolicyArns) { setManagedPolicyArns(managedPolicyArns); return this; } /** *

* The name of the profile. *

* * @param name * The name of the profile. */ public void setName(String name) { this.name = name; } /** *

* The name of the profile. *

* * @return The name of the profile. */ public String getName() { return this.name; } /** *

* The name of the profile. *

* * @param name * The name of the profile. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withName(String name) { setName(name); return this; } /** *

* The ARN of the profile. *

* * @param profileArn * The ARN of the profile. */ public void setProfileArn(String profileArn) { this.profileArn = profileArn; } /** *

* The ARN of the profile. *

* * @return The ARN of the profile. */ public String getProfileArn() { return this.profileArn; } /** *

* The ARN of the profile. *

* * @param profileArn * The ARN of the profile. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withProfileArn(String profileArn) { setProfileArn(profileArn); return this; } /** *

* The unique identifier of the profile. *

* * @param profileId * The unique identifier of the profile. */ public void setProfileId(String profileId) { this.profileId = profileId; } /** *

* The unique identifier of the profile. *

* * @return The unique identifier of the profile. */ public String getProfileId() { return this.profileId; } /** *

* The unique identifier of the profile. *

* * @param profileId * The unique identifier of the profile. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withProfileId(String profileId) { setProfileId(profileId); return this; } /** *

* Specifies whether instance properties are required in temporary credential requests with this profile. *

* * @param requireInstanceProperties * Specifies whether instance properties are required in temporary credential requests with this profile. */ public void setRequireInstanceProperties(Boolean requireInstanceProperties) { this.requireInstanceProperties = requireInstanceProperties; } /** *

* Specifies whether instance properties are required in temporary credential requests with this profile. *

* * @return Specifies whether instance properties are required in temporary credential requests with this profile. */ public Boolean getRequireInstanceProperties() { return this.requireInstanceProperties; } /** *

* Specifies whether instance properties are required in temporary credential requests with this profile. *

* * @param requireInstanceProperties * Specifies whether instance properties are required in temporary credential requests with this profile. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withRequireInstanceProperties(Boolean requireInstanceProperties) { setRequireInstanceProperties(requireInstanceProperties); return this; } /** *

* Specifies whether instance properties are required in temporary credential requests with this profile. *

* * @return Specifies whether instance properties are required in temporary credential requests with this profile. */ public Boolean isRequireInstanceProperties() { return this.requireInstanceProperties; } /** *

* A list of IAM roles that this profile can assume in a temporary credential request. *

* * @return A list of IAM roles that this profile can assume in a temporary credential request. */ public java.util.List getRoleArns() { return roleArns; } /** *

* A list of IAM roles that this profile can assume in a temporary credential request. *

* * @param roleArns * A list of IAM roles that this profile can assume in a temporary credential request. */ public void setRoleArns(java.util.Collection roleArns) { if (roleArns == null) { this.roleArns = null; return; } this.roleArns = new java.util.ArrayList(roleArns); } /** *

* A list of IAM roles that this profile can assume in a temporary credential request. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setRoleArns(java.util.Collection)} or {@link #withRoleArns(java.util.Collection)} if you want to override * the existing values. *

* * @param roleArns * A list of IAM roles that this profile can assume in a temporary credential request. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withRoleArns(String... roleArns) { if (this.roleArns == null) { setRoleArns(new java.util.ArrayList(roleArns.length)); } for (String ele : roleArns) { this.roleArns.add(ele); } return this; } /** *

* A list of IAM roles that this profile can assume in a temporary credential request. *

* * @param roleArns * A list of IAM roles that this profile can assume in a temporary credential request. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withRoleArns(java.util.Collection roleArns) { setRoleArns(roleArns); return this; } /** *

* A session policy that applies to the trust boundary of the vended session credentials. *

* * @param sessionPolicy * A session policy that applies to the trust boundary of the vended session credentials. */ public void setSessionPolicy(String sessionPolicy) { this.sessionPolicy = sessionPolicy; } /** *

* A session policy that applies to the trust boundary of the vended session credentials. *

* * @return A session policy that applies to the trust boundary of the vended session credentials. */ public String getSessionPolicy() { return this.sessionPolicy; } /** *

* A session policy that applies to the trust boundary of the vended session credentials. *

* * @param sessionPolicy * A session policy that applies to the trust boundary of the vended session credentials. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withSessionPolicy(String sessionPolicy) { setSessionPolicy(sessionPolicy); return this; } /** *

* The ISO-8601 timestamp when the profile was last updated. *

* * @param updatedAt * The ISO-8601 timestamp when the profile was last updated. */ public void setUpdatedAt(java.util.Date updatedAt) { this.updatedAt = updatedAt; } /** *

* The ISO-8601 timestamp when the profile was last updated. *

* * @return The ISO-8601 timestamp when the profile was last updated. */ public java.util.Date getUpdatedAt() { return this.updatedAt; } /** *

* The ISO-8601 timestamp when the profile was last updated. *

* * @param updatedAt * The ISO-8601 timestamp when the profile was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public ProfileDetail withUpdatedAt(java.util.Date updatedAt) { setUpdatedAt(updatedAt); return this; } /** * 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 (getAcceptRoleSessionName() != null) sb.append("AcceptRoleSessionName: ").append(getAcceptRoleSessionName()).append(","); if (getAttributeMappings() != null) sb.append("AttributeMappings: ").append(getAttributeMappings()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getCreatedBy() != null) sb.append("CreatedBy: ").append(getCreatedBy()).append(","); if (getDurationSeconds() != null) sb.append("DurationSeconds: ").append(getDurationSeconds()).append(","); if (getEnabled() != null) sb.append("Enabled: ").append(getEnabled()).append(","); if (getManagedPolicyArns() != null) sb.append("ManagedPolicyArns: ").append(getManagedPolicyArns()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getProfileArn() != null) sb.append("ProfileArn: ").append(getProfileArn()).append(","); if (getProfileId() != null) sb.append("ProfileId: ").append(getProfileId()).append(","); if (getRequireInstanceProperties() != null) sb.append("RequireInstanceProperties: ").append(getRequireInstanceProperties()).append(","); if (getRoleArns() != null) sb.append("RoleArns: ").append(getRoleArns()).append(","); if (getSessionPolicy() != null) sb.append("SessionPolicy: ").append(getSessionPolicy()).append(","); if (getUpdatedAt() != null) sb.append("UpdatedAt: ").append(getUpdatedAt()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ProfileDetail == false) return false; ProfileDetail other = (ProfileDetail) obj; if (other.getAcceptRoleSessionName() == null ^ this.getAcceptRoleSessionName() == null) return false; if (other.getAcceptRoleSessionName() != null && other.getAcceptRoleSessionName().equals(this.getAcceptRoleSessionName()) == false) return false; if (other.getAttributeMappings() == null ^ this.getAttributeMappings() == null) return false; if (other.getAttributeMappings() != null && other.getAttributeMappings().equals(this.getAttributeMappings()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getCreatedBy() == null ^ this.getCreatedBy() == null) return false; if (other.getCreatedBy() != null && other.getCreatedBy().equals(this.getCreatedBy()) == false) return false; if (other.getDurationSeconds() == null ^ this.getDurationSeconds() == null) return false; if (other.getDurationSeconds() != null && other.getDurationSeconds().equals(this.getDurationSeconds()) == false) return false; if (other.getEnabled() == null ^ this.getEnabled() == null) return false; if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false) return false; if (other.getManagedPolicyArns() == null ^ this.getManagedPolicyArns() == null) return false; if (other.getManagedPolicyArns() != null && other.getManagedPolicyArns().equals(this.getManagedPolicyArns()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getProfileArn() == null ^ this.getProfileArn() == null) return false; if (other.getProfileArn() != null && other.getProfileArn().equals(this.getProfileArn()) == false) return false; if (other.getProfileId() == null ^ this.getProfileId() == null) return false; if (other.getProfileId() != null && other.getProfileId().equals(this.getProfileId()) == false) return false; if (other.getRequireInstanceProperties() == null ^ this.getRequireInstanceProperties() == null) return false; if (other.getRequireInstanceProperties() != null && other.getRequireInstanceProperties().equals(this.getRequireInstanceProperties()) == false) return false; if (other.getRoleArns() == null ^ this.getRoleArns() == null) return false; if (other.getRoleArns() != null && other.getRoleArns().equals(this.getRoleArns()) == false) return false; if (other.getSessionPolicy() == null ^ this.getSessionPolicy() == null) return false; if (other.getSessionPolicy() != null && other.getSessionPolicy().equals(this.getSessionPolicy()) == false) return false; if (other.getUpdatedAt() == null ^ this.getUpdatedAt() == null) return false; if (other.getUpdatedAt() != null && other.getUpdatedAt().equals(this.getUpdatedAt()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAcceptRoleSessionName() == null) ? 0 : getAcceptRoleSessionName().hashCode()); hashCode = prime * hashCode + ((getAttributeMappings() == null) ? 0 : getAttributeMappings().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getCreatedBy() == null) ? 0 : getCreatedBy().hashCode()); hashCode = prime * hashCode + ((getDurationSeconds() == null) ? 0 : getDurationSeconds().hashCode()); hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode()); hashCode = prime * hashCode + ((getManagedPolicyArns() == null) ? 0 : getManagedPolicyArns().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getProfileArn() == null) ? 0 : getProfileArn().hashCode()); hashCode = prime * hashCode + ((getProfileId() == null) ? 0 : getProfileId().hashCode()); hashCode = prime * hashCode + ((getRequireInstanceProperties() == null) ? 0 : getRequireInstanceProperties().hashCode()); hashCode = prime * hashCode + ((getRoleArns() == null) ? 0 : getRoleArns().hashCode()); hashCode = prime * hashCode + ((getSessionPolicy() == null) ? 0 : getSessionPolicy().hashCode()); hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode()); return hashCode; } @Override public ProfileDetail clone() { try { return (ProfileDetail) 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.iamrolesanywhere.model.transform.ProfileDetailMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy