interface CfnLayerVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnLayerVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnLayerVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnLayerVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnLayerVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnLayerVersionMixinProps |
Properties for CfnLayerVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from '@aws-cdk/cfn-property-mixins';
const cfnLayerVersionMixinProps: sam.CfnLayerVersionMixinProps = {
compatibleRuntimes: ['compatibleRuntimes'],
contentUri: 'contentUri',
description: 'description',
layerName: 'layerName',
licenseInfo: 'licenseInfo',
retentionPolicy: 'retentionPolicy',
};
Properties
| Name | Type | Description |
|---|---|---|
| compatible | string[] | |
| content | string | IResolvable | S3 | |
| description? | string | |
| layer | string | |
| license | string | |
| retention | string |
compatibleRuntimes?
Type:
string[]
(optional)
contentUri?
Type:
string | IResolvable | S3
(optional)
description?
Type:
string
(optional)
layerName?
Type:
string
(optional)
licenseInfo?
Type:
string
(optional)
retentionPolicy?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript