Enum InventoryObjectVersion

java.lang.Object
java.lang.Enum<InventoryObjectVersion>
software.amazon.awscdk.services.s3.InventoryObjectVersion
All Implemented Interfaces:
Serializable, Comparable<InventoryObjectVersion>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:24.136Z") @Stability(Stable) public enum InventoryObjectVersion extends Enum<InventoryObjectVersion>
Inventory version support.

Example:

 Bucket inventoryBucket = new Bucket(this, "InventoryBucket");
 Bucket dataBucket = Bucket.Builder.create(this, "DataBucket")
         .inventories(List.of(Inventory.builder()
                 .frequency(InventoryFrequency.DAILY)
                 .includeObjectVersions(InventoryObjectVersion.CURRENT)
                 .destination(InventoryDestination.builder()
                         .bucket(inventoryBucket)
                         .build())
                 .build(), Inventory.builder()
                 .frequency(InventoryFrequency.WEEKLY)
                 .includeObjectVersions(InventoryObjectVersion.ALL)
                 .destination(InventoryDestination.builder()
                         .bucket(inventoryBucket)
                         .prefix("with-all-versions")
                         .build())
                 .build()))
         .build();
 
  • Enum Constant Details

    • ALL

      @Stability(Stable) public static final InventoryObjectVersion ALL
      Includes all versions of each object in the report.
    • CURRENT

      @Stability(Stable) public static final InventoryObjectVersion CURRENT
      Includes only the current version of each object in the report.
  • Method Details

    • values

      public static InventoryObjectVersion[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static InventoryObjectVersion valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null