interface BackupRetentionPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudHSM.CfnCluster.BackupRetentionPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudhsm#CfnCluster_BackupRetentionPolicyProperty |
Java | software.amazon.awscdk.services.cloudhsm.CfnCluster.BackupRetentionPolicyProperty |
Python | aws_cdk.aws_cloudhsm.CfnCluster.BackupRetentionPolicyProperty |
TypeScript | aws-cdk-lib » aws_cloudhsm » CfnCluster » BackupRetentionPolicyProperty |
A policy that defines how the service retains backups.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudhsm as cloudhsm } from 'aws-cdk-lib';
const backupRetentionPolicyProperty: cloudhsm.CfnCluster.BackupRetentionPolicyProperty = {
type: 'type',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The type of backup retention policy. |
| value? | string | Use a value between 7 - 379. |
type?
Type:
string
(optional)
The type of backup retention policy.
value?
Type:
string
(optional)
Use a value between 7 - 379.

.NET
Go
Java
Python
TypeScript