CfnLayerVersionPermissionProps๏
- class aws_cdk.aws_lambda.CfnLayerVersionPermissionProps(*, action, layer_version_arn, principal, organization_id=None)๏
Bases:
objectProperties for defining a
CfnLayerVersionPermission.- Parameters:
action (
str) โ The API action that grants access to the layer. For example,lambda:GetLayerVersion.layer_version_arn (
Union[str,ILayerVersionRef]) โ The name or Amazon Resource Name (ARN) of the layer.principal (
str) โ An account ID, or*to grant layer usage permission to all accounts in an organization, or all AWS accounts (iforganizationIdis not specified). For the last case, make sure that you really do want all AWS accounts to have usage permission to this layer.organization_id (
Optional[str]) โ With the principal set to*, grant permission to all accounts in the specified organization.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_lambda as lambda_ cfn_layer_version_permission_props = lambda.CfnLayerVersionPermissionProps( action="action", layer_version_arn="layerVersionArn", principal="principal", # the properties below are optional organization_id="organizationId" )
Attributes
- action๏
The API action that grants access to the layer.
For example,
lambda:GetLayerVersion.
- layer_version_arn๏
The name or Amazon Resource Name (ARN) of the layer.
- organization_id๏
With the principal set to
*, grant permission to all accounts in the specified organization.
- principal๏
An account ID, or
*to grant layer usage permission to all accounts in an organization, or all AWS accounts (iforganizationIdis not specified).For the last case, make sure that you really do want all AWS accounts to have usage permission to this layer.