public static interface ILayerVersion.Jsii$Default extends ILayerVersion, IResource.Jsii$Default
ILayerVersion
.ILayerVersion.Jsii$Default, ILayerVersion.Jsii$Proxy
Modifier and Type | Method and Description |
---|---|
default void |
addPermission(java.lang.String id,
LayerVersionPermission permission)
Add permission for this layer version to specific entities.
|
default void |
applyRemovalPolicy(RemovalPolicy policy)
Apply the given removal policy to this resource.
|
default java.util.List<Runtime> |
getCompatibleRuntimes()
The runtimes compatible with this Layer.
|
default ResourceEnvironment |
getEnv()
The environment this resource belongs to.
|
default java.lang.String |
getLayerVersionArn()
The ARN of the Lambda Layer version that this Layer defines.
|
default ConstructNode |
getNode()
The construct tree node for this construct.
|
default Stack |
getStack()
The stack in which this resource is defined.
|
default ConstructNode getNode()
getNode
in interface IConstruct
getNode
in interface IConstruct.Jsii$Default
getNode
in interface IResource.Jsii$Default
default ResourceEnvironment getEnv()
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
getEnv
in interface IResource
getEnv
in interface IResource.Jsii$Default
default Stack getStack()
getStack
in interface IResource
getStack
in interface IResource.Jsii$Default
default java.lang.String getLayerVersionArn()
getLayerVersionArn
in interface ILayerVersion
default java.util.List<Runtime> getCompatibleRuntimes()
Default: Runtime.All
getCompatibleRuntimes
in interface ILayerVersion
default void applyRemovalPolicy(RemovalPolicy policy)
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY
), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN
).
applyRemovalPolicy
in interface IResource
applyRemovalPolicy
in interface IResource.Jsii$Default
policy
- This parameter is required.default void addPermission(java.lang.String id, LayerVersionPermission permission)
Usage within
the same account where the layer is defined is always allowed and does not
require calling this method. Note that the principal that creates the
Lambda function using the layer (for example, a CloudFormation changeset
execution role) also needs to have the lambda:GetLayerVersion
permission on the layer version.
addPermission
in interface ILayerVersion
id
- the ID of the grant in the construct tree. This parameter is required.permission
- the identification of the grantee. This parameter is required.