Interface IntelligentTieringConfiguration

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:13.256Z") @Stability(Stable) public interface IntelligentTieringConfiguration extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.*;
 import software.amazon.awscdk.services.s3.*;
 IntelligentTieringConfiguration intelligentTieringConfiguration = IntelligentTieringConfiguration.builder()
         .name("name")
         // the properties below are optional
         .archiveAccessTierTime(Duration.minutes(30))
         .deepArchiveAccessTierTime(Duration.minutes(30))
         .prefix("prefix")
         .tags(List.of(Tag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      Configuration name.
    • getArchiveAccessTierTime

      @Stability(Stable) @Nullable default Duration getArchiveAccessTierTime()
      When enabled, Intelligent-Tiering will automatically move objects that haven’t been accessed for a minimum of 90 days to the Archive Access tier.

      Default: Objects will not move to Glacier

    • getDeepArchiveAccessTierTime

      @Stability(Stable) @Nullable default Duration getDeepArchiveAccessTierTime()
      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.

      Default: Objects will not move to Glacier Deep Access

    • getPrefix

      @Stability(Stable) @Nullable default String getPrefix()
      Add a filter to limit the scope of this configuration to a single prefix.

      Default: this configuration will apply to **all** objects in the bucket.

    • getTags

      @Stability(Stable) @Nullable default List<Tag> getTags()
      You can limit the scope of this rule to the key value pairs added below.

      Default: No filtering will be performed on tags

    • builder

      @Stability(Stable) static IntelligentTieringConfiguration.Builder builder()
      Returns:
      a IntelligentTieringConfiguration.Builder of IntelligentTieringConfiguration