IAM / Paginator / SimulatePrincipalPolicy

SimulatePrincipalPolicy#

class IAM.Paginator.SimulatePrincipalPolicy#
paginator = client.get_paginator('simulate_principal_policy')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from IAM.Client.simulate_principal_policy().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PolicySourceArn='string',
    PolicyInputList=[
        'string',
    ],
    PermissionsBoundaryPolicyInputList=[
        'string',
    ],
    ActionNames=[
        'string',
    ],
    ResourceArns=[
        'string',
    ],
    ResourcePolicy='string',
    ResourceOwner='string',
    CallerArn='string',
    ContextEntries=[
        {
            'ContextKeyName': 'string',
            'ContextKeyValues': [
                'string',
            ],
            'ContextKeyType': 'string'|'stringList'|'numeric'|'numericList'|'boolean'|'booleanList'|'ip'|'ipList'|'binary'|'binaryList'|'date'|'dateList'
        },
    ],
    ResourceHandlingOption='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • PolicySourceArn (string) –

    [REQUIRED]

    The Amazon Resource Name (ARN) of a user, group, or role whose policies you want to include in the simulation. If you specify a user, group, or role, the simulation includes all policies that are associated with that entity. If you specify a user, the simulation also includes all policies that are attached to any groups the user belongs to.

    The maximum length of the policy document that you can pass in this operation, including whitespace, is listed below. To view the maximum character counts of a managed policy with no whitespaces, see IAM and STS character quotas.

    For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

  • PolicyInputList (list) –

    An optional list of additional policy documents to include in the simulation. Each document is specified as a string containing the complete, valid JSON text of an IAM policy.

    The regex pattern used to validate this parameter is a string of characters consisting of the following:

    • Any printable ASCII character ranging from the space character ( \u0020) through the end of the ASCII character range

    • The printable characters in the Basic Latin and Latin-1 Supplement character set (through \u00FF)

    • The special characters tab ( \u0009), line feed ( \u000A), and carriage return ( \u000D)

    • (string) –

  • PermissionsBoundaryPolicyInputList (list) –

    The IAM permissions boundary policy to simulate. The permissions boundary sets the maximum permissions that the entity can have. You can input only one permissions boundary when you pass a policy to this operation. An IAM entity can only have one permissions boundary in effect at a time. For example, if a permissions boundary is attached to an entity and you pass in a different permissions boundary policy using this parameter, then the new permissions boundary policy is used for the simulation. For more information about permissions boundaries, see Permissions boundaries for IAM entities in the IAM User Guide. The policy input is specified as a string containing the complete, valid JSON text of a permissions boundary policy.

    The maximum length of the policy document that you can pass in this operation, including whitespace, is listed below. To view the maximum character counts of a managed policy with no whitespaces, see IAM and STS character quotas.

    The regex pattern used to validate this parameter is a string of characters consisting of the following:

    • Any printable ASCII character ranging from the space character ( \u0020) through the end of the ASCII character range

    • The printable characters in the Basic Latin and Latin-1 Supplement character set (through \u00FF)

    • The special characters tab ( \u0009), line feed ( \u000A), and carriage return ( \u000D)

    • (string) –

  • ActionNames (list) –

    [REQUIRED]

    A list of names of API operations to evaluate in the simulation. Each operation is evaluated for each resource. Each operation must include the service identifier, such as iam:CreateUser.

    • (string) –

  • ResourceArns (list) –

    A list of ARNs of Amazon Web Services resources to include in the simulation. If this parameter is not provided, then the value defaults to * (all resources). Each API in the ActionNames parameter is evaluated for each resource in this list. The simulation determines the access result (allowed or denied) of each combination and reports it in the response. You can simulate resources that don’t exist in your account.

    The simulation does not automatically retrieve policies for the specified resources. If you want to include a resource policy in the simulation, then you must include the policy as a string in the ResourcePolicy parameter.

    For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

    Note

    Simulation of resource-based policies isn’t supported for IAM roles.

    • (string) –

  • ResourcePolicy (string) –

    A resource-based policy to include in the simulation provided as a string. Each resource in the simulation is treated as if it had this policy attached. You can include only one resource-based policy in a simulation.

    The maximum length of the policy document that you can pass in this operation, including whitespace, is listed below. To view the maximum character counts of a managed policy with no whitespaces, see IAM and STS character quotas.

    The regex pattern used to validate this parameter is a string of characters consisting of the following:

    • Any printable ASCII character ranging from the space character ( \u0020) through the end of the ASCII character range

    • The printable characters in the Basic Latin and Latin-1 Supplement character set (through \u00FF)

    • The special characters tab ( \u0009), line feed ( \u000A), and carriage return ( \u000D)

    Note

    Simulation of resource-based policies isn’t supported for IAM roles.

  • ResourceOwner (string) – An Amazon Web Services account ID that specifies the owner of any simulated resource that does not identify its owner in the resource ARN. Examples of resource ARNs include an S3 bucket or object. If ResourceOwner is specified, it is also used as the account owner of any ResourcePolicy included in the simulation. If the ResourceOwner parameter is not specified, then the owner of the resources and the resource policy defaults to the account of the identity provided in CallerArn. This parameter is required only if you specify a resource-based policy and account that owns the resource is different from the account that owns the simulated calling user CallerArn.

  • CallerArn (string) –

    The ARN of the IAM user that you want to specify as the simulated caller of the API operations. If you do not specify a CallerArn, it defaults to the ARN of the user that you specify in PolicySourceArn, if you specified a user. If you include both a PolicySourceArn (for example, arn:aws:iam::123456789012:user/David) and a CallerArn (for example, arn:aws:iam::123456789012:user/Bob), the result is that you simulate calling the API operations as Bob, as if Bob had David’s policies.

    You can specify only the ARN of an IAM user. You cannot specify the ARN of an assumed role, federated user, or a service principal.

    CallerArn is required if you include a ResourcePolicy and the PolicySourceArn is not the ARN for an IAM user. This is required so that the resource-based policy’s Principal element has a value to use in evaluating the policy.

    For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

  • ContextEntries (list) –

    A list of context keys and corresponding values for the simulation to use. Whenever a context key is evaluated in one of the simulated IAM permissions policies, the corresponding value is supplied.

    • (dict) –

      Contains information about a condition context key. It includes the name of the key and specifies the value (or values, if the context key supports multiple values) to use in the simulation. This information is used when evaluating the Condition elements of the input policies.

      This data type is used as an input parameter to SimulateCustomPolicy and SimulatePrincipalPolicy.

      • ContextKeyName (string) –

        The full name of a condition context key, including the service prefix. For example, aws:SourceIp or s3:VersionId.

      • ContextKeyValues (list) –

        The value (or values, if the condition context key supports multiple values) to provide to the simulation when the key is referenced by a Condition element in an input policy.

        • (string) –

      • ContextKeyType (string) –

        The data type of the value (or values) specified in the ContextKeyValues parameter.

  • ResourceHandlingOption (string) –

    Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation.

    Each of the Amazon EC2 scenarios requires that you specify instance, image, and security group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the Amazon EC2 scenario includes VPC, then you must supply the network interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the Amazon EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide.

    • EC2-VPC-InstanceStore instance, image, security group, network interface

    • EC2-VPC-InstanceStore-Subnet instance, image, security group, network interface, subnet

    • EC2-VPC-EBS instance, image, security group, network interface, volume

    • EC2-VPC-EBS-Subnet instance, image, security group, network interface, subnet, volume

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'EvaluationResults': [
        {
            'EvalActionName': 'string',
            'EvalResourceName': 'string',
            'EvalDecision': 'allowed'|'explicitDeny'|'implicitDeny',
            'MatchedStatements': [
                {
                    'SourcePolicyId': 'string',
                    'SourcePolicyType': 'user'|'group'|'role'|'aws-managed'|'user-managed'|'resource'|'none',
                    'StartPosition': {
                        'Line': 123,
                        'Column': 123
                    },
                    'EndPosition': {
                        'Line': 123,
                        'Column': 123
                    }
                },
            ],
            'MissingContextValues': [
                'string',
            ],
            'OrganizationsDecisionDetail': {
                'AllowedByOrganizations': True|False
            },
            'PermissionsBoundaryDecisionDetail': {
                'AllowedByPermissionsBoundary': True|False
            },
            'EvalDecisionDetails': {
                'string': 'allowed'|'explicitDeny'|'implicitDeny'
            },
            'ResourceSpecificResults': [
                {
                    'EvalResourceName': 'string',
                    'EvalResourceDecision': 'allowed'|'explicitDeny'|'implicitDeny',
                    'MatchedStatements': [
                        {
                            'SourcePolicyId': 'string',
                            'SourcePolicyType': 'user'|'group'|'role'|'aws-managed'|'user-managed'|'resource'|'none',
                            'StartPosition': {
                                'Line': 123,
                                'Column': 123
                            },
                            'EndPosition': {
                                'Line': 123,
                                'Column': 123
                            }
                        },
                    ],
                    'MissingContextValues': [
                        'string',
                    ],
                    'EvalDecisionDetails': {
                        'string': 'allowed'|'explicitDeny'|'implicitDeny'
                    },
                    'PermissionsBoundaryDecisionDetail': {
                        'AllowedByPermissionsBoundary': True|False
                    }
                },
            ]
        },
    ],
    'IsTruncated': True|False,
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    Contains the response to a successful SimulatePrincipalPolicy or SimulateCustomPolicy request.

    • EvaluationResults (list) –

      The results of the simulation.

      • (dict) –

        Contains the results of a simulation.

        This data type is used by the return parameter of SimulateCustomPolicy and ``SimulatePrincipalPolicy ``.

        • EvalActionName (string) –

          The name of the API operation tested on the indicated resource.

        • EvalResourceName (string) –

          The ARN of the resource that the indicated API operation was tested on.

        • EvalDecision (string) –

          The result of the simulation.

        • MatchedStatements (list) –

          A list of the statements in the input policies that determine the result for this scenario. Remember that even if multiple statements allow the operation on the resource, if only one statement denies that operation, then the explicit deny overrides any allow. In addition, the deny statement is the only entry included in the result.

          • (dict) –

            Contains a reference to a Statement element in a policy document that determines the result of the simulation.

            This data type is used by the MatchedStatements member of the EvaluationResult type.

            • SourcePolicyId (string) –

              The identifier of the policy that was provided as an input.

            • SourcePolicyType (string) –

              The type of the policy.

            • StartPosition (dict) –

              The row and column of the beginning of the Statement in an IAM policy.

              • Line (integer) –

                The line containing the specified position in the document.

              • Column (integer) –

                The column in the line containing the specified position in the document.

            • EndPosition (dict) –

              The row and column of the end of a Statement in an IAM policy.

              • Line (integer) –

                The line containing the specified position in the document.

              • Column (integer) –

                The column in the line containing the specified position in the document.

        • MissingContextValues (list) –

          A list of context keys that are required by the included input policies but that were not provided by one of the input parameters. This list is used when the resource in a simulation is “*”, either explicitly, or when the ResourceArns parameter blank. If you include a list of resources, then any missing context values are instead included under the ResourceSpecificResults section. To discover the context keys used by a set of policies, you can call GetContextKeysForCustomPolicy or GetContextKeysForPrincipalPolicy.

          • (string) –

        • OrganizationsDecisionDetail (dict) –

          A structure that details how Organizations and its service control policies affect the results of the simulation. Only applies if the simulated user’s account is part of an organization.

          • AllowedByOrganizations (boolean) –

            Specifies whether the simulated operation is allowed by the Organizations service control policies that impact the simulated user’s account.

        • PermissionsBoundaryDecisionDetail (dict) –

          Contains information about the effect that a permissions boundary has on a policy simulation when the boundary is applied to an IAM entity.

          • AllowedByPermissionsBoundary (boolean) –

            Specifies whether an action is allowed by a permissions boundary that is applied to an IAM entity (user or role). A value of true means that the permissions boundary does not deny the action. This means that the policy includes an Allow statement that matches the request. In this case, if an identity-based policy also allows the action, the request is allowed. A value of false means that either the requested action is not allowed (implicitly denied) or that the action is explicitly denied by the permissions boundary. In both of these cases, the action is not allowed, regardless of the identity-based policy.

        • EvalDecisionDetails (dict) –

          Additional details about the results of the cross-account evaluation decision. This parameter is populated for only cross-account simulations. It contains a brief summary of how each policy type contributes to the final evaluation decision.

          If the simulation evaluates policies within the same account and includes a resource ARN, then the parameter is present but the response is empty. If the simulation evaluates policies within the same account and specifies all resources ( *), then the parameter is not returned.

          When you make a cross-account request, Amazon Web Services evaluates the request in the trusting account and the trusted account. The request is allowed only if both evaluations return true. For more information about how policies are evaluated, see Evaluating policies within a single account.

          If an Organizations SCP included in the evaluation denies access, the simulation ends. In this case, policy evaluation does not proceed any further and this parameter is not returned.

          • (string) –

            • (string) –

        • ResourceSpecificResults (list) –

          The individual results of the simulation of the API operation specified in EvalActionName on each resource.

          • (dict) –

            Contains the result of the simulation of a single API operation call on a single resource.

            This data type is used by a member of the EvaluationResult data type.

            • EvalResourceName (string) –

              The name of the simulated resource, in Amazon Resource Name (ARN) format.

            • EvalResourceDecision (string) –

              The result of the simulation of the simulated API operation on the resource specified in EvalResourceName.

            • MatchedStatements (list) –

              A list of the statements in the input policies that determine the result for this part of the simulation. Remember that even if multiple statements allow the operation on the resource, if any statement denies that operation, then the explicit deny overrides any allow. In addition, the deny statement is the only entry included in the result.

              • (dict) –

                Contains a reference to a Statement element in a policy document that determines the result of the simulation.

                This data type is used by the MatchedStatements member of the EvaluationResult type.

                • SourcePolicyId (string) –

                  The identifier of the policy that was provided as an input.

                • SourcePolicyType (string) –

                  The type of the policy.

                • StartPosition (dict) –

                  The row and column of the beginning of the Statement in an IAM policy.

                  • Line (integer) –

                    The line containing the specified position in the document.

                  • Column (integer) –

                    The column in the line containing the specified position in the document.

                • EndPosition (dict) –

                  The row and column of the end of a Statement in an IAM policy.

                  • Line (integer) –

                    The line containing the specified position in the document.

                  • Column (integer) –

                    The column in the line containing the specified position in the document.

            • MissingContextValues (list) –

              A list of context keys that are required by the included input policies but that were not provided by one of the input parameters. This list is used when a list of ARNs is included in the ResourceArns parameter instead of “*”. If you do not specify individual resources, by setting ResourceArns to “*” or by not including the ResourceArns parameter, then any missing context values are instead included under the EvaluationResults section. To discover the context keys used by a set of policies, you can call GetContextKeysForCustomPolicy or GetContextKeysForPrincipalPolicy.

              • (string) –

            • EvalDecisionDetails (dict) –

              Additional details about the results of the evaluation decision on a single resource. This parameter is returned only for cross-account simulations. This parameter explains how each policy type contributes to the resource-specific evaluation decision.

              • (string) –

                • (string) –

            • PermissionsBoundaryDecisionDetail (dict) –

              Contains information about the effect that a permissions boundary has on a policy simulation when that boundary is applied to an IAM entity.

              • AllowedByPermissionsBoundary (boolean) –

                Specifies whether an action is allowed by a permissions boundary that is applied to an IAM entity (user or role). A value of true means that the permissions boundary does not deny the action. This means that the policy includes an Allow statement that matches the request. In this case, if an identity-based policy also allows the action, the request is allowed. A value of false means that either the requested action is not allowed (implicitly denied) or that the action is explicitly denied by the permissions boundary. In both of these cases, the action is not allowed, regardless of the identity-based policy.

    • IsTruncated (boolean) –

      A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems number of results even when there are more results available. We recommend that you check IsTruncated after every call to ensure that you receive all your results.

    • NextToken (string) –

      A token to resume pagination.