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

com.amazonaws.services.securitytoken.model.AssumeRoleRequest Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.securitytoken.model;

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 */
public class AssumeRoleRequest extends AmazonWebServiceRequest implements
        Serializable, Cloneable {

    /**
     * 

* The Amazon Resource Name (ARN) of the role to assume. *

*/ private String roleArn; /** *

* An identifier for the assumed role session. *

*

* Use the role session name to uniquely identify a session when the same * role is assumed by different principals or for different reasons. In * cross-account scenarios, the role session name is visible to, and can be * logged by the account that owns the role. The role session name is also * used in the ARN of the assumed role principal. This means that subsequent * cross-account API requests using the temporary security credentials will * expose the role session name to the external account in their CloudTrail * logs. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

*/ private String roleSessionName; /** *

* An IAM policy in JSON format. *

*

* This parameter is optional. If you pass a policy, the temporary security * credentials that are returned by the operation have the permissions that * are allowed by both (the intersection of) the access policy of the role * that is being assumed, and the policy that you pass. This gives * you a way to further restrict the permissions for the resulting temporary * security credentials. You cannot use the passed policy to grant * permissions that are in excess of those allowed by the access policy of * the role that is being assumed. For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, and * AssumeRoleWithWebIdentity in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters up to 2048 characters in length. The characters can * be any ASCII character from the space character to the end of the valid * character list ( -\u00FF). It can also include the tab ( ), linefeed ( ), * and carriage return ( ) characters. *

* *

* The policy plain text must be 2048 bytes or shorter. However, an internal * conversion compresses it into a packed binary format with a separate * limit. The PackedPolicySize response element indicates by percentage how * close to the upper size limit the policy is, with 100% equaling the * maximum allowed size. *

*
*/ private String policy; /** *

* The duration, in seconds, of the role session. The value can range from * 900 seconds (15 minutes) to 3600 seconds (1 hour). By default, the value * is set to 3600 seconds. *

*/ private Integer durationSeconds; /** *

* A unique identifier that is used by third parties when assuming roles in * their customers' accounts. For each role that the third party can assume, * they should instruct their customers to ensure the role's trust policy * checks for the external ID that the third party generated. Each time the * third party assumes the role, they should pass the customer's external * ID. The external ID is useful in order to help third parties bind a role * to the customer who created it. For more information about the external * ID, see How to Use an External ID When Granting Access to Your AWS Resources to * a Third Party in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@:\/- *

*/ private String externalId; /** *

* The identification number of the MFA device that is associated with the * user who is making the AssumeRole call. Specify this value * if the trust policy of the role being assumed includes a condition that * requires MFA authentication. The value is either the serial number for a * hardware device (such as GAHT12345678) or an Amazon Resource * Name (ARN) for a virtual device (such as * arn:aws:iam::123456789012:mfa/user). *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

*/ private String serialNumber; /** *

* The value provided by the MFA device, if the trust policy of the role * being assumed requires MFA (that is, if the policy includes a condition * that tests for MFA). If the role being assumed requires MFA and if the * TokenCode value is missing or expired, the * AssumeRole call returns an "access denied" error. *

*

* The format for this parameter, as described by its regex pattern, is a * sequence of six numeric digits. *

*/ private String tokenCode; /** *

* The Amazon Resource Name (ARN) of the role to assume. *

* * @param roleArn * The Amazon Resource Name (ARN) of the role to assume. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

* The Amazon Resource Name (ARN) of the role to assume. *

* * @return The Amazon Resource Name (ARN) of the role to assume. */ public String getRoleArn() { return this.roleArn; } /** *

* The Amazon Resource Name (ARN) of the role to assume. *

* * @param roleArn * The Amazon Resource Name (ARN) of the role to assume. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssumeRoleRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

* An identifier for the assumed role session. *

*

* Use the role session name to uniquely identify a session when the same * role is assumed by different principals or for different reasons. In * cross-account scenarios, the role session name is visible to, and can be * logged by the account that owns the role. The role session name is also * used in the ARN of the assumed role principal. This means that subsequent * cross-account API requests using the temporary security credentials will * expose the role session name to the external account in their CloudTrail * logs. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

* * @param roleSessionName * An identifier for the assumed role session.

*

* Use the role session name to uniquely identify a session when the * same role is assumed by different principals or for different * reasons. In cross-account scenarios, the role session name is * visible to, and can be logged by the account that owns the role. * The role session name is also used in the ARN of the assumed role * principal. This means that subsequent cross-account API requests * using the temporary security credentials will expose the role * session name to the external account in their CloudTrail logs. *

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@- */ public void setRoleSessionName(String roleSessionName) { this.roleSessionName = roleSessionName; } /** *

* An identifier for the assumed role session. *

*

* Use the role session name to uniquely identify a session when the same * role is assumed by different principals or for different reasons. In * cross-account scenarios, the role session name is visible to, and can be * logged by the account that owns the role. The role session name is also * used in the ARN of the assumed role principal. This means that subsequent * cross-account API requests using the temporary security credentials will * expose the role session name to the external account in their CloudTrail * logs. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

* * @return An identifier for the assumed role session.

*

* Use the role session name to uniquely identify a session when the * same role is assumed by different principals or for different * reasons. In cross-account scenarios, the role session name is * visible to, and can be logged by the account that owns the role. * The role session name is also used in the ARN of the assumed role * principal. This means that subsequent cross-account API requests * using the temporary security credentials will expose the role * session name to the external account in their CloudTrail logs. *

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@- */ public String getRoleSessionName() { return this.roleSessionName; } /** *

* An identifier for the assumed role session. *

*

* Use the role session name to uniquely identify a session when the same * role is assumed by different principals or for different reasons. In * cross-account scenarios, the role session name is visible to, and can be * logged by the account that owns the role. The role session name is also * used in the ARN of the assumed role principal. This means that subsequent * cross-account API requests using the temporary security credentials will * expose the role session name to the external account in their CloudTrail * logs. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

* * @param roleSessionName * An identifier for the assumed role session.

*

* Use the role session name to uniquely identify a session when the * same role is assumed by different principals or for different * reasons. In cross-account scenarios, the role session name is * visible to, and can be logged by the account that owns the role. * The role session name is also used in the ARN of the assumed role * principal. This means that subsequent cross-account API requests * using the temporary security credentials will expose the role * session name to the external account in their CloudTrail logs. *

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@- * @return Returns a reference to this object so that method calls can be * chained together. */ public AssumeRoleRequest withRoleSessionName(String roleSessionName) { setRoleSessionName(roleSessionName); return this; } /** *

* An IAM policy in JSON format. *

*

* This parameter is optional. If you pass a policy, the temporary security * credentials that are returned by the operation have the permissions that * are allowed by both (the intersection of) the access policy of the role * that is being assumed, and the policy that you pass. This gives * you a way to further restrict the permissions for the resulting temporary * security credentials. You cannot use the passed policy to grant * permissions that are in excess of those allowed by the access policy of * the role that is being assumed. For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, and * AssumeRoleWithWebIdentity in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters up to 2048 characters in length. The characters can * be any ASCII character from the space character to the end of the valid * character list ( -\u00FF). It can also include the tab ( ), linefeed ( ), * and carriage return ( ) characters. *

* *

* The policy plain text must be 2048 bytes or shorter. However, an internal * conversion compresses it into a packed binary format with a separate * limit. The PackedPolicySize response element indicates by percentage how * close to the upper size limit the policy is, with 100% equaling the * maximum allowed size. *

*
* * @param policy * An IAM policy in JSON format.

*

* This parameter is optional. If you pass a policy, the temporary * security credentials that are returned by the operation have the * permissions that are allowed by both (the intersection of) the * access policy of the role that is being assumed, and the * policy that you pass. This gives you a way to further restrict the * permissions for the resulting temporary security credentials. You * cannot use the passed policy to grant permissions that are in * excess of those allowed by the access policy of the role that is * being assumed. For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, and * AssumeRoleWithWebIdentity in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, * is a string of characters up to 2048 characters in length. The * characters can be any ASCII character from the space character to * the end of the valid character list ( -\u00FF). It can also * include the tab ( ), linefeed ( ), and carriage return ( ) * characters. *

* *

* The policy plain text must be 2048 bytes or shorter. However, an * internal conversion compresses it into a packed binary format with * a separate limit. The PackedPolicySize response element indicates * by percentage how close to the upper size limit the policy is, * with 100% equaling the maximum allowed size. *

*/ public void setPolicy(String policy) { this.policy = policy; } /** *

* An IAM policy in JSON format. *

*

* This parameter is optional. If you pass a policy, the temporary security * credentials that are returned by the operation have the permissions that * are allowed by both (the intersection of) the access policy of the role * that is being assumed, and the policy that you pass. This gives * you a way to further restrict the permissions for the resulting temporary * security credentials. You cannot use the passed policy to grant * permissions that are in excess of those allowed by the access policy of * the role that is being assumed. For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, and * AssumeRoleWithWebIdentity in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters up to 2048 characters in length. The characters can * be any ASCII character from the space character to the end of the valid * character list ( -\u00FF). It can also include the tab ( ), linefeed ( ), * and carriage return ( ) characters. *

* *

* The policy plain text must be 2048 bytes or shorter. However, an internal * conversion compresses it into a packed binary format with a separate * limit. The PackedPolicySize response element indicates by percentage how * close to the upper size limit the policy is, with 100% equaling the * maximum allowed size. *

*
* * @return An IAM policy in JSON format.

*

* This parameter is optional. If you pass a policy, the temporary * security credentials that are returned by the operation have the * permissions that are allowed by both (the intersection of) the * access policy of the role that is being assumed, and the * policy that you pass. This gives you a way to further restrict * the permissions for the resulting temporary security credentials. * You cannot use the passed policy to grant permissions that are in * excess of those allowed by the access policy of the role that is * being assumed. For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, and * AssumeRoleWithWebIdentity in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, * is a string of characters up to 2048 characters in length. The * characters can be any ASCII character from the space character to * the end of the valid character list ( -\u00FF). It can also * include the tab ( ), linefeed ( ), and carriage return ( ) * characters. *

* *

* The policy plain text must be 2048 bytes or shorter. However, an * internal conversion compresses it into a packed binary format * with a separate limit. The PackedPolicySize response element * indicates by percentage how close to the upper size limit the * policy is, with 100% equaling the maximum allowed size. *

*/ public String getPolicy() { return this.policy; } /** *

* An IAM policy in JSON format. *

*

* This parameter is optional. If you pass a policy, the temporary security * credentials that are returned by the operation have the permissions that * are allowed by both (the intersection of) the access policy of the role * that is being assumed, and the policy that you pass. This gives * you a way to further restrict the permissions for the resulting temporary * security credentials. You cannot use the passed policy to grant * permissions that are in excess of those allowed by the access policy of * the role that is being assumed. For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, and * AssumeRoleWithWebIdentity in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters up to 2048 characters in length. The characters can * be any ASCII character from the space character to the end of the valid * character list ( -\u00FF). It can also include the tab ( ), linefeed ( ), * and carriage return ( ) characters. *

* *

* The policy plain text must be 2048 bytes or shorter. However, an internal * conversion compresses it into a packed binary format with a separate * limit. The PackedPolicySize response element indicates by percentage how * close to the upper size limit the policy is, with 100% equaling the * maximum allowed size. *

*
* * @param policy * An IAM policy in JSON format.

*

* This parameter is optional. If you pass a policy, the temporary * security credentials that are returned by the operation have the * permissions that are allowed by both (the intersection of) the * access policy of the role that is being assumed, and the * policy that you pass. This gives you a way to further restrict the * permissions for the resulting temporary security credentials. You * cannot use the passed policy to grant permissions that are in * excess of those allowed by the access policy of the role that is * being assumed. For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, and * AssumeRoleWithWebIdentity in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, * is a string of characters up to 2048 characters in length. The * characters can be any ASCII character from the space character to * the end of the valid character list ( -\u00FF). It can also * include the tab ( ), linefeed ( ), and carriage return ( ) * characters. *

* *

* The policy plain text must be 2048 bytes or shorter. However, an * internal conversion compresses it into a packed binary format with * a separate limit. The PackedPolicySize response element indicates * by percentage how close to the upper size limit the policy is, * with 100% equaling the maximum allowed size. *

* @return Returns a reference to this object so that method calls can be * chained together. */ public AssumeRoleRequest withPolicy(String policy) { setPolicy(policy); return this; } /** *

* The duration, in seconds, of the role session. The value can range from * 900 seconds (15 minutes) to 3600 seconds (1 hour). By default, the value * is set to 3600 seconds. *

* * @param durationSeconds * The duration, in seconds, of the role session. The value can range * from 900 seconds (15 minutes) to 3600 seconds (1 hour). By * default, the value is set to 3600 seconds. */ public void setDurationSeconds(Integer durationSeconds) { this.durationSeconds = durationSeconds; } /** *

* The duration, in seconds, of the role session. The value can range from * 900 seconds (15 minutes) to 3600 seconds (1 hour). By default, the value * is set to 3600 seconds. *

* * @return The duration, in seconds, of the role session. The value can * range from 900 seconds (15 minutes) to 3600 seconds (1 hour). By * default, the value is set to 3600 seconds. */ public Integer getDurationSeconds() { return this.durationSeconds; } /** *

* The duration, in seconds, of the role session. The value can range from * 900 seconds (15 minutes) to 3600 seconds (1 hour). By default, the value * is set to 3600 seconds. *

* * @param durationSeconds * The duration, in seconds, of the role session. The value can range * from 900 seconds (15 minutes) to 3600 seconds (1 hour). By * default, the value is set to 3600 seconds. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssumeRoleRequest withDurationSeconds(Integer durationSeconds) { setDurationSeconds(durationSeconds); return this; } /** *

* A unique identifier that is used by third parties when assuming roles in * their customers' accounts. For each role that the third party can assume, * they should instruct their customers to ensure the role's trust policy * checks for the external ID that the third party generated. Each time the * third party assumes the role, they should pass the customer's external * ID. The external ID is useful in order to help third parties bind a role * to the customer who created it. For more information about the external * ID, see How to Use an External ID When Granting Access to Your AWS Resources to * a Third Party in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@:\/- *

* * @param externalId * A unique identifier that is used by third parties when assuming * roles in their customers' accounts. For each role that the third * party can assume, they should instruct their customers to ensure * the role's trust policy checks for the external ID that the third * party generated. Each time the third party assumes the role, they * should pass the customer's external ID. The external ID is useful * in order to help third parties bind a role to the customer who * created it. For more information about the external ID, see How to Use an External ID When Granting Access to Your AWS * Resources to a Third Party in the IAM User Guide.

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@:\/- */ public void setExternalId(String externalId) { this.externalId = externalId; } /** *

* A unique identifier that is used by third parties when assuming roles in * their customers' accounts. For each role that the third party can assume, * they should instruct their customers to ensure the role's trust policy * checks for the external ID that the third party generated. Each time the * third party assumes the role, they should pass the customer's external * ID. The external ID is useful in order to help third parties bind a role * to the customer who created it. For more information about the external * ID, see How to Use an External ID When Granting Access to Your AWS Resources to * a Third Party in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@:\/- *

* * @return A unique identifier that is used by third parties when assuming * roles in their customers' accounts. For each role that the third * party can assume, they should instruct their customers to ensure * the role's trust policy checks for the external ID that the third * party generated. Each time the third party assumes the role, they * should pass the customer's external ID. The external ID is useful * in order to help third parties bind a role to the customer who * created it. For more information about the external ID, see How to Use an External ID When Granting Access to Your AWS * Resources to a Third Party in the IAM User Guide.

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@:\/- */ public String getExternalId() { return this.externalId; } /** *

* A unique identifier that is used by third parties when assuming roles in * their customers' accounts. For each role that the third party can assume, * they should instruct their customers to ensure the role's trust policy * checks for the external ID that the third party generated. Each time the * third party assumes the role, they should pass the customer's external * ID. The external ID is useful in order to help third parties bind a role * to the customer who created it. For more information about the external * ID, see How to Use an External ID When Granting Access to Your AWS Resources to * a Third Party in the IAM User Guide. *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@:\/- *

* * @param externalId * A unique identifier that is used by third parties when assuming * roles in their customers' accounts. For each role that the third * party can assume, they should instruct their customers to ensure * the role's trust policy checks for the external ID that the third * party generated. Each time the third party assumes the role, they * should pass the customer's external ID. The external ID is useful * in order to help third parties bind a role to the customer who * created it. For more information about the external ID, see How to Use an External ID When Granting Access to Your AWS * Resources to a Third Party in the IAM User Guide.

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@:\/- * @return Returns a reference to this object so that method calls can be * chained together. */ public AssumeRoleRequest withExternalId(String externalId) { setExternalId(externalId); return this; } /** *

* The identification number of the MFA device that is associated with the * user who is making the AssumeRole call. Specify this value * if the trust policy of the role being assumed includes a condition that * requires MFA authentication. The value is either the serial number for a * hardware device (such as GAHT12345678) or an Amazon Resource * Name (ARN) for a virtual device (such as * arn:aws:iam::123456789012:mfa/user). *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

* * @param serialNumber * The identification number of the MFA device that is associated * with the user who is making the AssumeRole call. * Specify this value if the trust policy of the role being assumed * includes a condition that requires MFA authentication. The value * is either the serial number for a hardware device (such as * GAHT12345678) or an Amazon Resource Name (ARN) for a * virtual device (such as * arn:aws:iam::123456789012:mfa/user).

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@- */ public void setSerialNumber(String serialNumber) { this.serialNumber = serialNumber; } /** *

* The identification number of the MFA device that is associated with the * user who is making the AssumeRole call. Specify this value * if the trust policy of the role being assumed includes a condition that * requires MFA authentication. The value is either the serial number for a * hardware device (such as GAHT12345678) or an Amazon Resource * Name (ARN) for a virtual device (such as * arn:aws:iam::123456789012:mfa/user). *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

* * @return The identification number of the MFA device that is associated * with the user who is making the AssumeRole call. * Specify this value if the trust policy of the role being assumed * includes a condition that requires MFA authentication. The value * is either the serial number for a hardware device (such as * GAHT12345678) or an Amazon Resource Name (ARN) for a * virtual device (such as * arn:aws:iam::123456789012:mfa/user).

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@- */ public String getSerialNumber() { return this.serialNumber; } /** *

* The identification number of the MFA device that is associated with the * user who is making the AssumeRole call. Specify this value * if the trust policy of the role being assumed includes a condition that * requires MFA authentication. The value is either the serial number for a * hardware device (such as GAHT12345678) or an Amazon Resource * Name (ARN) for a virtual device (such as * arn:aws:iam::123456789012:mfa/user). *

*

* The format for this parameter, as described by its regex pattern, is a * string of characters consisting of upper- and lower-case alphanumeric * characters with no spaces. You can also include any of the following * characters: =,.@- *

* * @param serialNumber * The identification number of the MFA device that is associated * with the user who is making the AssumeRole call. * Specify this value if the trust policy of the role being assumed * includes a condition that requires MFA authentication. The value * is either the serial number for a hardware device (such as * GAHT12345678) or an Amazon Resource Name (ARN) for a * virtual device (such as * arn:aws:iam::123456789012:mfa/user).

*

* The format for this parameter, as described by its regex pattern, * is a string of characters consisting of upper- and lower-case * alphanumeric characters with no spaces. You can also include any * of the following characters: =,.@- * @return Returns a reference to this object so that method calls can be * chained together. */ public AssumeRoleRequest withSerialNumber(String serialNumber) { setSerialNumber(serialNumber); return this; } /** *

* The value provided by the MFA device, if the trust policy of the role * being assumed requires MFA (that is, if the policy includes a condition * that tests for MFA). If the role being assumed requires MFA and if the * TokenCode value is missing or expired, the * AssumeRole call returns an "access denied" error. *

*

* The format for this parameter, as described by its regex pattern, is a * sequence of six numeric digits. *

* * @param tokenCode * The value provided by the MFA device, if the trust policy of the * role being assumed requires MFA (that is, if the policy includes a * condition that tests for MFA). If the role being assumed requires * MFA and if the TokenCode value is missing or expired, * the AssumeRole call returns an "access denied" * error.

*

* The format for this parameter, as described by its regex pattern, * is a sequence of six numeric digits. */ public void setTokenCode(String tokenCode) { this.tokenCode = tokenCode; } /** *

* The value provided by the MFA device, if the trust policy of the role * being assumed requires MFA (that is, if the policy includes a condition * that tests for MFA). If the role being assumed requires MFA and if the * TokenCode value is missing or expired, the * AssumeRole call returns an "access denied" error. *

*

* The format for this parameter, as described by its regex pattern, is a * sequence of six numeric digits. *

* * @return The value provided by the MFA device, if the trust policy of the * role being assumed requires MFA (that is, if the policy includes * a condition that tests for MFA). If the role being assumed * requires MFA and if the TokenCode value is missing * or expired, the AssumeRole call returns an * "access denied" error.

*

* The format for this parameter, as described by its regex pattern, * is a sequence of six numeric digits. */ public String getTokenCode() { return this.tokenCode; } /** *

* The value provided by the MFA device, if the trust policy of the role * being assumed requires MFA (that is, if the policy includes a condition * that tests for MFA). If the role being assumed requires MFA and if the * TokenCode value is missing or expired, the * AssumeRole call returns an "access denied" error. *

*

* The format for this parameter, as described by its regex pattern, is a * sequence of six numeric digits. *

* * @param tokenCode * The value provided by the MFA device, if the trust policy of the * role being assumed requires MFA (that is, if the policy includes a * condition that tests for MFA). If the role being assumed requires * MFA and if the TokenCode value is missing or expired, * the AssumeRole call returns an "access denied" * error.

*

* The format for this parameter, as described by its regex pattern, * is a sequence of six numeric digits. * @return Returns a reference to this object so that method calls can be * chained together. */ public AssumeRoleRequest withTokenCode(String tokenCode) { setTokenCode(tokenCode); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getRoleArn() != null) sb.append("RoleArn: " + getRoleArn() + ","); if (getRoleSessionName() != null) sb.append("RoleSessionName: " + getRoleSessionName() + ","); if (getPolicy() != null) sb.append("Policy: " + getPolicy() + ","); if (getDurationSeconds() != null) sb.append("DurationSeconds: " + getDurationSeconds() + ","); if (getExternalId() != null) sb.append("ExternalId: " + getExternalId() + ","); if (getSerialNumber() != null) sb.append("SerialNumber: " + getSerialNumber() + ","); if (getTokenCode() != null) sb.append("TokenCode: " + getTokenCode()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AssumeRoleRequest == false) return false; AssumeRoleRequest other = (AssumeRoleRequest) obj; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getRoleSessionName() == null ^ this.getRoleSessionName() == null) return false; if (other.getRoleSessionName() != null && other.getRoleSessionName().equals(this.getRoleSessionName()) == false) return false; if (other.getPolicy() == null ^ this.getPolicy() == null) return false; if (other.getPolicy() != null && other.getPolicy().equals(this.getPolicy()) == 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.getExternalId() == null ^ this.getExternalId() == null) return false; if (other.getExternalId() != null && other.getExternalId().equals(this.getExternalId()) == false) return false; if (other.getSerialNumber() == null ^ this.getSerialNumber() == null) return false; if (other.getSerialNumber() != null && other.getSerialNumber().equals(this.getSerialNumber()) == false) return false; if (other.getTokenCode() == null ^ this.getTokenCode() == null) return false; if (other.getTokenCode() != null && other.getTokenCode().equals(this.getTokenCode()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getRoleSessionName() == null) ? 0 : getRoleSessionName() .hashCode()); hashCode = prime * hashCode + ((getPolicy() == null) ? 0 : getPolicy().hashCode()); hashCode = prime * hashCode + ((getDurationSeconds() == null) ? 0 : getDurationSeconds() .hashCode()); hashCode = prime * hashCode + ((getExternalId() == null) ? 0 : getExternalId().hashCode()); hashCode = prime * hashCode + ((getSerialNumber() == null) ? 0 : getSerialNumber() .hashCode()); hashCode = prime * hashCode + ((getTokenCode() == null) ? 0 : getTokenCode().hashCode()); return hashCode; } @Override public AssumeRoleRequest clone() { return (AssumeRoleRequest) super.clone(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy