@Stability(value=Stable)
public static interface CfnLayerVersion.ContentProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLayerVersion.ContentProperty.Builder
A builder for
CfnLayerVersion.ContentProperty |
static class |
CfnLayerVersion.ContentProperty.Jsii$Proxy
An implementation for
CfnLayerVersion.ContentProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLayerVersion.ContentProperty.Builder |
builder() |
String |
getS3Bucket()
The Amazon S3 bucket of the layer archive.
|
String |
getS3Key()
The Amazon S3 key of the layer archive.
|
default String |
getS3ObjectVersion()
For versioned objects, the version of the layer archive object to use.
|
@Stability(value=Stable) @NotNull String getS3Bucket()
@Stability(value=Stable) @NotNull String getS3Key()
@Stability(value=Stable) @Nullable default String getS3ObjectVersion()
@Stability(value=Stable) static CfnLayerVersion.ContentProperty.Builder builder()
Copyright © 2022. All rights reserved.