Show / Hide Table of Contents

Interface CfnLayerVersionPropsMixin.IContentProperty

A ZIP archive that contains the contents of an Lambda layer .

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lambda
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnLayerVersionPropsMixin.IContentProperty
Syntax (vb)
Public Interface CfnLayerVersionPropsMixin.IContentProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Lambda;

             var contentProperty = new ContentProperty {
                 S3Bucket = "s3Bucket",
                 S3Key = "s3Key",
                 S3ObjectVersion = "s3ObjectVersion"
             };

Synopsis

Properties

S3Bucket

The Amazon S3 bucket of the layer archive.

S3Key

The Amazon S3 key of the layer archive.

S3ObjectVersion

For versioned objects, the version of the layer archive object to use.

Properties

S3Bucket

The Amazon S3 bucket of the layer archive.

object? S3Bucket { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3bucket

Type union: either string or IBucketRef

S3Key

The Amazon S3 key of the layer archive.

string? S3Key { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3key

S3ObjectVersion

For versioned objects, the version of the layer archive object to use.

string? S3ObjectVersion { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-layerversion-content.html#cfn-lambda-layerversion-content-s3objectversion

Back to top Generated by DocFX