
com.pulumi.azurenative.awsconnector.enums.ReplicationDestinationStorageClass Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.awsconnector.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* The storage class to use when replicating objects, such as S3 Standard or reduced redundancy. By default, Amazon S3 uses the storage class of the source object to create the object replica. For valid values, see the ``StorageClass`` element of the [PUT Bucket replication](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html) action in the *Amazon S3 API Reference*.
*
*/
@EnumType
public enum ReplicationDestinationStorageClass {
/**
* ReplicationDestinationStorageClass enum DEEP_ARCHIVE
*
*/
DEEP_ARCHIVE("DEEP_ARCHIVE"),
/**
* ReplicationDestinationStorageClass enum GLACIER
*
*/
GLACIER("GLACIER"),
/**
* ReplicationDestinationStorageClass enum GLACIER_IR
*
*/
GLACIER_IR("GLACIER_IR"),
/**
* ReplicationDestinationStorageClass enum INTELLIGENT_TIERING
*
*/
INTELLIGENT_TIERING("INTELLIGENT_TIERING"),
/**
* ReplicationDestinationStorageClass enum ONEZONE_IA
*
*/
ONEZONE_IA("ONEZONE_IA"),
/**
* ReplicationDestinationStorageClass enum REDUCED_REDUNDANCY
*
*/
REDUCED_REDUNDANCY("REDUCED_REDUNDANCY"),
/**
* ReplicationDestinationStorageClass enum STANDARD
*
*/
STANDARD("STANDARD"),
/**
* ReplicationDestinationStorageClass enum STANDARD_IA
*
*/
STANDARD_IA("STANDARD_IA");
private final String value;
ReplicationDestinationStorageClass(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "ReplicationDestinationStorageClass[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy