Skip to content

Lambda  >  Operations  >  get_resource_policy

get_resource_policy

Operation

get_resource_policy async

get_resource_policy(input: GetResourcePolicyInput, plugins: list[Plugin] | None = None) -> GetResourcePolicyOutput

Retrieves the resource-based policy attached to a Lambda resource.

Parameters:

Name Type Description Default
input GetResourcePolicyInput

An instance of GetResourcePolicyInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
GetResourcePolicyOutput

An instance of GetResourcePolicyOutput.

Input

GetResourcePolicyInput dataclass

Dataclass for GetResourcePolicyInput structure.

Attributes

resource_arn class-attribute instance-attribute
resource_arn: str | None = None

The Amazon Resource Name (ARN) of the Lambda resource you want to retrieve the policy for. You can use a qualified or an unqualified ARN. The value must be a complete ARN, and the operation does not accept wildcard characters.

Output

GetResourcePolicyOutput dataclass

Dataclass for GetResourcePolicyOutput structure.

Attributes

policy class-attribute instance-attribute
policy: str | None = None

The resource-based policy attached to the Lambda resource you specified.

revision_id class-attribute instance-attribute
revision_id: str | None = None

The revision ID of the policy. Pass this value as the RevisionId in a PutResourcePolicy or DeleteResourcePolicy request. Doing so ensures the operation acts on the expected version of the policy.