All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.cryptography.materialproviders.model.ESDKCommitmentPolicy Maven / Gradle / Ivy

// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Do not modify this file. This file is machine generated, and any changes to it will be overwritten.
package software.amazon.cryptography.materialproviders.model;

public enum ESDKCommitmentPolicy {
  FORBID_ENCRYPT_ALLOW_DECRYPT("FORBID_ENCRYPT_ALLOW_DECRYPT"),

  REQUIRE_ENCRYPT_ALLOW_DECRYPT("REQUIRE_ENCRYPT_ALLOW_DECRYPT"),

  REQUIRE_ENCRYPT_REQUIRE_DECRYPT("REQUIRE_ENCRYPT_REQUIRE_DECRYPT");

  private final String value;

  private ESDKCommitmentPolicy(String value) {
    this.value = value;
  }

  public String toString() {
    return String.valueOf(value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy