Interface CfnLayerVersion.ContentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayerVersion.ContentProperty.Jsii$Proxy
- Enclosing class:
- CfnLayerVersion
@Stability(Stable)
public static interface CfnLayerVersion.ContentProperty
extends software.amazon.jsii.JsiiSerializable
A ZIP archive that contains the contents of an Lambda layer .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.lambda.*; ContentProperty contentProperty = ContentProperty.builder() .s3Bucket("s3Bucket") .s3Key("s3Key") // the properties below are optional .s3ObjectVersion("s3ObjectVersion") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLayerVersion.ContentProperty
static final class
An implementation forCfnLayerVersion.ContentProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
The Amazon S3 bucket of the layer archive. -
getS3Key
The Amazon S3 key of the layer archive. -
getS3ObjectVersion
For versioned objects, the version of the layer archive object to use. -
builder
-