Interface CfnLayerVersionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLayerVersionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:18.890Z") @Stability(Stable) public interface CfnLayerVersionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLayerVersion.

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.*;
 CfnLayerVersionProps cfnLayerVersionProps = CfnLayerVersionProps.builder()
         .content(ContentProperty.builder()
                 .s3Bucket("s3Bucket")
                 .s3Key("s3Key")
                 // the properties below are optional
                 .s3ObjectVersion("s3ObjectVersion")
                 .build())
         // the properties below are optional
         .compatibleArchitectures(List.of("compatibleArchitectures"))
         .compatibleRuntimes(List.of("compatibleRuntimes"))
         .description("description")
         .layerName("layerName")
         .licenseInfo("licenseInfo")
         .build();
 

See Also: