Interface CfnServerlessCacheProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:25.635Z") @Stability(Stable) public interface CfnServerlessCacheProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnServerlessCache.

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.elasticache.*;
 CfnServerlessCacheProps cfnServerlessCacheProps = CfnServerlessCacheProps.builder()
         .engine("engine")
         .serverlessCacheName("serverlessCacheName")
         // the properties below are optional
         .cacheUsageLimits(CacheUsageLimitsProperty.builder()
                 .dataStorage(DataStorageProperty.builder()
                         .unit("unit")
                         // the properties below are optional
                         .maximum(123)
                         .minimum(123)
                         .build())
                 .ecpuPerSecond(ECPUPerSecondProperty.builder()
                         .maximum(123)
                         .minimum(123)
                         .build())
                 .build())
         .dailySnapshotTime("dailySnapshotTime")
         .description("description")
         .endpoint(EndpointProperty.builder()
                 .address("address")
                 .port("port")
                 .build())
         .finalSnapshotName("finalSnapshotName")
         .kmsKeyId("kmsKeyId")
         .majorEngineVersion("majorEngineVersion")
         .readerEndpoint(EndpointProperty.builder()
                 .address("address")
                 .port("port")
                 .build())
         .securityGroupIds(List.of("securityGroupIds"))
         .snapshotArnsToRestore(List.of("snapshotArnsToRestore"))
         .snapshotRetentionLimit(123)
         .subnetIds(List.of("subnetIds"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .userGroupId("userGroupId")
         .build();
 

See Also: