/* * 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.iamrolesanywhere.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 CreateProfileRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The number of seconds the vended session credentials are valid for. *
*/ private Integer durationSeconds; /** ** Specifies 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* The name of the profile. *
*/ private String name; /** ** 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* A session policy that applies to the trust boundary of the vended session credentials. *
*/ private String sessionPolicy; /** ** The tags to attach to the profile. *
*/ private java.util.List* The number of seconds the vended session credentials are valid for. *
* * @param durationSeconds * The number of seconds the vended session credentials are valid for. */ public void setDurationSeconds(Integer durationSeconds) { this.durationSeconds = durationSeconds; } /** ** The number of seconds the vended session credentials are valid for. *
* * @return The number of seconds the vended session credentials are valid for. */ public Integer getDurationSeconds() { return this.durationSeconds; } /** ** The number of seconds the vended session credentials are valid for. *
* * @param durationSeconds * The number of seconds the vended session credentials are valid for. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileRequest withDurationSeconds(Integer durationSeconds) { setDurationSeconds(durationSeconds); return this; } /** ** Specifies whether the profile is enabled. *
* * @param enabled * Specifies whether the profile is enabled. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** ** Specifies whether the profile is enabled. *
* * @return Specifies whether the profile is enabled. */ public Boolean getEnabled() { return this.enabled; } /** ** Specifies whether the profile is enabled. *
* * @param enabled * Specifies whether the profile is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileRequest withEnabled(Boolean enabled) { setEnabled(enabled); return this; } /** ** Specifies whether the profile is enabled. *
* * @return Specifies 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* 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* 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 CreateProfileRequest withManagedPolicyArns(String... managedPolicyArns) { if (this.managedPolicyArns == null) { setManagedPolicyArns(new java.util.ArrayList* 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 CreateProfileRequest withManagedPolicyArns(java.util.Collection* 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 CreateProfileRequest withName(String name) { setName(name); 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 CreateProfileRequest 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* 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* 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 CreateProfileRequest withRoleArns(String... roleArns) { if (this.roleArns == null) { setRoleArns(new java.util.ArrayList* 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 CreateProfileRequest withRoleArns(java.util.Collection* 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 CreateProfileRequest withSessionPolicy(String sessionPolicy) { setSessionPolicy(sessionPolicy); return this; } /** ** The tags to attach to the profile. *
* * @return The tags to attach to the profile. */ public java.util.List* The tags to attach to the profile. *
* * @param tags * The tags to attach to the profile. */ public void setTags(java.util.Collection* The tags to attach to the profile. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * The tags to attach to the profile. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* The tags to attach to the profile. *
* * @param tags * The tags to attach to the profile. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateProfileRequest withTags(java.util.Collection