interface CfnStorageTierPolicyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.CfnStorageTierPolicyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnStorageTierPolicyProps |
Java | software.amazon.awscdk.services.logs.CfnStorageTierPolicyProps |
Python | aws_cdk.aws_logs.CfnStorageTierPolicyProps |
TypeScript | aws-cdk-lib » aws_logs » CfnStorageTierPolicyProps |
Properties for defining a CfnStorageTierPolicy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
const cfnStorageTierPolicyProps: logs.CfnStorageTierPolicyProps = {
storageTier: 'storageTier',
};
Properties
| Name | Type | Description |
|---|---|---|
| storage | string | The storage tier to apply. |
storageTier
Type:
string
The storage tier to apply.
Only INTELLIGENT_TIERING is accepted for creation.

.NET
Go
Java
Python
TypeScript