HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/good-life-be/node_modules/aws-sdk/lib/credentials/saml_credentials.d.ts
import {Credentials} from '../credentials';
export class SAMLCredentials extends Credentials {
		/**
		 * Creates a new credentials object.
		 * @param {object} params - The map of params passed to AWS.STS.assumeRoleWithSAML().
		 */
		constructor(params: SAMLCredentialsParams);
		params: SAMLCredentialsParams
	}
    interface SAMLCredentialsParams {
        /**
         * The Amazon Resource Name (ARN) of the role that the caller is assuming.
         */
        RoleArn: string
        /**
         * The Amazon Resource Name (ARN) of the SAML provider in IAM that describes the IdP.
         */
        PrincipalArn: string
        /**
         * The base-64 encoded SAML authentication response provided by the IdP.
         */
        SAMLAssertion: string
        /**
         * An IAM policy in JSON format.
         * The policy plain text must be 2048 bytes or shorter.
         */
        Policy?: string
        /**
         * The duration, in seconds, of the role session.
         * The minimum duration is 15 minutes.
         * The maximum duration is 12 hours.
         */
        DurationSeconds?: number
    }