Interface CfnTieringConfigurationProps

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

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-03T13:58:16.892Z") @Stability(Stable) public interface CfnTieringConfigurationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnTieringConfiguration.

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.backup.*;
 CfnTieringConfigurationProps cfnTieringConfigurationProps = CfnTieringConfigurationProps.builder()
         .backupVaultName("backupVaultName")
         .resourceSelection(List.of(ResourceSelectionProperty.builder()
                 .resources(List.of("resources"))
                 .resourceType("resourceType")
                 .tieringDownSettingsInDays(123)
                 .build()))
         .tieringConfigurationName("tieringConfigurationName")
         // the properties below are optional
         .tieringConfigurationTags(Map.of(
                 "tieringConfigurationTagsKey", "tieringConfigurationTags"))
         .build();
 

See Also: