aws-cdk-lib.aws_s3.IntelligentTieringConfiguration

interface IntelligentTieringConfiguration

LanguageType name
.NETAmazon.CDK.AWS.S3.IntelligentTieringConfiguration
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3#IntelligentTieringConfiguration
Javasoftware.amazon.awscdk.services.s3.IntelligentTieringConfiguration
Pythonaws_cdk.aws_s3.IntelligentTieringConfiguration
TypeScript (source)aws-cdk-lib » aws_s3 » IntelligentTieringConfiguration

The intelligent tiering configuration.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_s3 as s3 } from 'aws-cdk-lib';
const intelligentTieringConfiguration: s3.IntelligentTieringConfiguration = {
  name: 'name',

  // the properties below are optional
  archiveAccessTierTime: cdk.Duration.minutes(30),
  deepArchiveAccessTierTime: cdk.Duration.minutes(30),
  prefix: 'prefix',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringConfiguration name.
archiveAccessTierTime?DurationWhen enabled, Intelligent-Tiering will automatically move objects that haven’t been accessed for a minimum of 90 days to the Archive Access tier.
deepArchiveAccessTierTime?DurationWhen enabled, Intelligent-Tiering will automatically move objects that haven’t been accessed for a minimum of 180 days to the Deep Archive Access tier.
prefix?stringAdd a filter to limit the scope of this configuration to a single prefix.
tags?Tag[]You can limit the scope of this rule to the key value pairs added below.

name

Type: string

Configuration name.


archiveAccessTierTime?

Type: Duration (optional, default: Objects will not move to Glacier)

When enabled, Intelligent-Tiering will automatically move objects that haven’t been accessed for a minimum of 90 days to the Archive Access tier.


deepArchiveAccessTierTime?

Type: Duration (optional, default: Objects will not move to Glacier Deep Access)

When enabled, Intelligent-Tiering will automatically move objects that haven’t been accessed for a minimum of 180 days to the Deep Archive Access tier.


prefix?

Type: string (optional, default: this configuration will apply to all objects in the bucket.)

Add a filter to limit the scope of this configuration to a single prefix.


tags?

Type: Tag[] (optional, default: No filtering will be performed on tags)

You can limit the scope of this rule to the key value pairs added below.