Skip to main content

permissions

Creates, updates, deletes or gets a permission resource or lists permissions in a region

Overview

Namepermissions
TypeResource
DescriptionThe ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Security and auth model for function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
Idawscc.lambda.permissions

Fields

NameDatatypeDescription
function_namestringThe name or ARN of the Lambda function, version, or alias.<br />&#42;&#42;Name formats&#42;&#42;<br />+ &#42;Function name&#42; – &#96;&#96;my-function&#96;&#96; (name-only), &#96;&#96;my-function:v1&#96;&#96; (with alias).<br />+ &#42;Function ARN&#42; – &#96;&#96;arn:aws:lambda:us-west-2:123456789012:function:my-function&#96;&#96;.<br />+ &#42;Partial ARN&#42; – &#96;&#96;123456789012:function:my-function&#96;&#96;.<br /><br />You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
actionstringThe action that the principal can use on the function. For example, &#96;&#96;lambda:InvokeFunction&#96;&#96; or &#96;&#96;lambda:GetFunction&#96;&#96;.
event_source_tokenstringFor Alexa Smart Home functions, a token that the invoker must supply.
function_url_auth_typestringThe type of authentication that your function URL uses. Set to &#96;&#96;AWS&#95;IAM&#96;&#96; if you want to restrict access to authenticated users only. Set to &#96;&#96;NONE&#96;&#96; if you want to bypass IAM authentication to create a public endpoint. For more information, see &#91;Security and auth model for Lambda function URLs&#93;(https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
source_arnstringFor AWS-services, the ARN of the AWS resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.<br />Note that Lambda configures the comparison using the &#96;&#96;StringLike&#96;&#96; operator.
source_accountstringFor AWS-service, the ID of the AWS-account that owns the resource. Use this together with &#96;&#96;SourceArn&#96;&#96; to ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.
principal_org_idstringThe identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization.
idstring
principalstringThe AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use &#96;&#96;SourceArn&#96;&#96; or &#96;&#96;SourceAccount&#96;&#96; to limit who can invoke the function through that service.
regionstringAWS region.

For more information, see AWS::Lambda::Permission.

Methods

NameAccessible byRequired Params
create_resourceINSERTFunctionName, Action, Principal, region
delete_resourceDELETEdata__Identifier, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual permission.

SELECT
region,
function_name,
action,
event_source_token,
function_url_auth_type,
source_arn,
source_account,
principal_org_id,
id,
principal
FROM awscc.lambda.permissions
WHERE region = 'us-east-1' AND data__Identifier = '<FunctionName>|<Id>';

INSERT example

Use the following StackQL query and manifest file to create a new permission resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.lambda.permissions (
FunctionName,
Action,
Principal,
region
)
SELECT
'{{ FunctionName }}',
'{{ Action }}',
'{{ Principal }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.lambda.permissions
WHERE data__Identifier = '<FunctionName|Id>'
AND region = 'us-east-1';

Permissions

To operate on the permissions resource, the following permissions are required:

Read

lambda:GetPolicy

Create

lambda:AddPermission

List

lambda:GetPolicy

Delete

lambda:RemovePermission