VPCLattice / Client / get_auth_policy

get_auth_policy#

VPCLattice.Client.get_auth_policy(**kwargs)#

Retrieves information about the auth policy for the specified service or service network.

See also: AWS API Documentation

Request Syntax

response = client.get_auth_policy(
    resourceIdentifier='string'
)
Parameters:

resourceIdentifier (string) –

[REQUIRED]

The ID or Amazon Resource Name (ARN) of the service network or service.

Return type:

dict

Returns:

Response Syntax

{
    'createdAt': datetime(2015, 1, 1),
    'lastUpdatedAt': datetime(2015, 1, 1),
    'policy': 'string',
    'state': 'Active'|'Inactive'
}

Response Structure

  • (dict) –

    • createdAt (datetime) –

      The date and time that the auth policy was created, specified in ISO-8601 format.

    • lastUpdatedAt (datetime) –

      The date and time that the auth policy was last updated, specified in ISO-8601 format.

    • policy (string) –

      The auth policy.

    • state (string) –

      The state of the auth policy. The auth policy is only active when the auth type is set to Amazon Web Services_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client’s IAM policy. If the auth type is NONE, then any auth policy you provide will remain inactive. For more information, see Create a service network in the Amazon VPC Lattice User Guide.

Exceptions

  • VPCLattice.Client.exceptions.ValidationException

  • VPCLattice.Client.exceptions.AccessDeniedException

  • VPCLattice.Client.exceptions.ThrottlingException

  • VPCLattice.Client.exceptions.ResourceNotFoundException

  • VPCLattice.Client.exceptions.InternalServerException