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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTieringConfigurationPropsstatic final classAn implementation forCfnTieringConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnTieringConfiguration.ResourceSelectionProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBackupVaultName
- See Also:
-
getResourceSelection
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnTieringConfiguration.ResourceSelectionProperty>- See Also:
-
getTieringConfigurationName
- See Also:
-
getTieringConfigurationTags
- See Also:
-
builder
-