interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnLayerVersion.S3LocationProperty |
Java | software.amazon.awscdk.services.sam.CfnLayerVersion.S3LocationProperty |
Python | aws_cdk.aws_sam.CfnLayerVersion.S3LocationProperty |
TypeScript | @aws-cdk/aws-sam » CfnLayerVersion » S3LocationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
const s3LocationProperty: sam.CfnLayerVersion.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
// the properties below are optional
version: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | CfnLayerVersion.S3LocationProperty.Bucket. |
| key | string | CfnLayerVersion.S3LocationProperty.Key. |
| version? | number | CfnLayerVersion.S3LocationProperty.Version. |
bucket
Type:
string
CfnLayerVersion.S3LocationProperty.Bucket.
key
Type:
string
CfnLayerVersion.S3LocationProperty.Key.
version?
Type:
number
(optional)
CfnLayerVersion.S3LocationProperty.Version.

.NET
Java
Python
TypeScript