CfnLayerVersionProps¶
-
class
aws_cdk.aws_lambda.
CfnLayerVersionProps
(*, content, compatible_architectures=None, compatible_runtimes=None, description=None, layer_name=None, license_info=None)¶ Bases:
object
Properties for defining a
CfnLayerVersion
.- Parameters
content (
Union
[IResolvable
,ContentProperty
,Dict
[str
,Any
]]) – The function layer archive.compatible_architectures (
Optional
[Sequence
[str
]]) – A list of compatible instruction set architectures .compatible_runtimes (
Optional
[Sequence
[str
]]) – A list of compatible function runtimes . Used for filtering with ListLayers and ListLayerVersions .description (
Optional
[str
]) – The description of the version.layer_name (
Optional
[str
]) – The name or Amazon Resource Name (ARN) of the layer.license_info (
Optional
[str
]) – The layer’s software license. It can be any of the following:. - An SPDX license identifier . For example,MIT
. - The URL of a license hosted on the internet. For example,https://opensource.org/licenses/MIT
. - The full text of the license.
- Link
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-layerversion.html
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_lambda as lambda_ cfn_layer_version_props = lambda.CfnLayerVersionProps( content=lambda.CfnLayerVersion.ContentProperty( s3_bucket="s3Bucket", s3_key="s3Key", # the properties below are optional s3_object_version="s3ObjectVersion" ), # the properties below are optional compatible_architectures=["compatibleArchitectures"], compatible_runtimes=["compatibleRuntimes"], description="description", layer_name="layerName", license_info="licenseInfo" )
Attributes
-
compatible_architectures
¶ //docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html>`_ .
- Link
- Type
A list of compatible `instruction set architectures <https
- Return type
Optional
[List
[str
]]
-
compatible_runtimes
¶ //docs.aws.amazon.com/lambda/latest/dg/API_ListLayers.html>`_ and ListLayerVersions .
-
content
¶ The function layer archive.
-
description
¶ The description of the version.
-
layer_name
¶ The name or Amazon Resource Name (ARN) of the layer.
-
license_info
¶ .
An SPDX license identifier . For example,
MIT
.The URL of a license hosted on the internet. For example,
https://opensource.org/licenses/MIT
.The full text of the license.
- Link
- Type
The layer’s software license. It can be any of the following
- Return type
Optional
[str
]