Interface CfnCustomDBEngineVersionProps

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-08-15T01:32:53.721Z") @Stability(Stable) public interface CfnCustomDBEngineVersionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCustomDBEngineVersion.

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.rds.*;
 CfnCustomDBEngineVersionProps cfnCustomDBEngineVersionProps = CfnCustomDBEngineVersionProps.builder()
         .engine("engine")
         .engineVersion("engineVersion")
         // the properties below are optional
         .databaseInstallationFilesS3BucketName("databaseInstallationFilesS3BucketName")
         .databaseInstallationFilesS3Prefix("databaseInstallationFilesS3Prefix")
         .description("description")
         .imageId("imageId")
         .kmsKeyId("kmsKeyId")
         .manifest("manifest")
         .sourceCustomDbEngineVersionIdentifier("sourceCustomDbEngineVersionIdentifier")
         .status("status")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .useAwsProvidedLatestImage(false)
         .build();
 

See Also: