Show / Hide Table of Contents

Class CfnLayerVersionPropsMixin.ContentProperty

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

Inheritance
object
CfnLayerVersionPropsMixin.ContentProperty
Implements
CfnLayerVersionPropsMixin.IContentProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lambda
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnLayerVersionPropsMixin.ContentProperty : CfnLayerVersionPropsMixin.IContentProperty
Syntax (vb)
Public Class CfnLayerVersionPropsMixin.ContentProperty Implements 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

Constructors

ContentProperty()

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

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.

Constructors

ContentProperty()

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

public ContentProperty()
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"
             };

Properties

S3Bucket

The Amazon S3 bucket of the layer archive.

public object? S3Bucket { get; set; }
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.

public string? S3Key { get; set; }
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.

public string? S3ObjectVersion { get; set; }
Property Value

string

Remarks

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

Implements

CfnLayerVersionPropsMixin.IContentProperty
Back to top Generated by DocFX