com.pulumi.aws.glue.outputs.SecurityConfigurationEncryptionConfigurationJobBookmarksEncryption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.aws.glue.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SecurityConfigurationEncryptionConfigurationJobBookmarksEncryption {
/**
* @return Encryption mode to use for job bookmarks data. Valid values: `CSE-KMS`, `DISABLED`. Default value: `DISABLED`.
*
*/
private @Nullable String jobBookmarksEncryptionMode;
/**
* @return Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
*
*/
private @Nullable String kmsKeyArn;
private SecurityConfigurationEncryptionConfigurationJobBookmarksEncryption() {}
/**
* @return Encryption mode to use for job bookmarks data. Valid values: `CSE-KMS`, `DISABLED`. Default value: `DISABLED`.
*
*/
public Optional jobBookmarksEncryptionMode() {
return Optional.ofNullable(this.jobBookmarksEncryptionMode);
}
/**
* @return Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
*
*/
public Optional kmsKeyArn() {
return Optional.ofNullable(this.kmsKeyArn);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SecurityConfigurationEncryptionConfigurationJobBookmarksEncryption defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String jobBookmarksEncryptionMode;
private @Nullable String kmsKeyArn;
public Builder() {}
public Builder(SecurityConfigurationEncryptionConfigurationJobBookmarksEncryption defaults) {
Objects.requireNonNull(defaults);
this.jobBookmarksEncryptionMode = defaults.jobBookmarksEncryptionMode;
this.kmsKeyArn = defaults.kmsKeyArn;
}
@CustomType.Setter
public Builder jobBookmarksEncryptionMode(@Nullable String jobBookmarksEncryptionMode) {
this.jobBookmarksEncryptionMode = jobBookmarksEncryptionMode;
return this;
}
@CustomType.Setter
public Builder kmsKeyArn(@Nullable String kmsKeyArn) {
this.kmsKeyArn = kmsKeyArn;
return this;
}
public SecurityConfigurationEncryptionConfigurationJobBookmarksEncryption build() {
final var _resultValue = new SecurityConfigurationEncryptionConfigurationJobBookmarksEncryption();
_resultValue.jobBookmarksEncryptionMode = jobBookmarksEncryptionMode;
_resultValue.kmsKeyArn = kmsKeyArn;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy