
com.pulumi.aws.glue.outputs.GetDataCatalogEncryptionSettingsResult 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.aws.glue.outputs.GetDataCatalogEncryptionSettingsDataCatalogEncryptionSetting;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetDataCatalogEncryptionSettingsResult {
private String catalogId;
/**
* @return The security configuration to set. see Data Catalog Encryption Settings.
*
*/
private List dataCatalogEncryptionSettings;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
private GetDataCatalogEncryptionSettingsResult() {}
public String catalogId() {
return this.catalogId;
}
/**
* @return The security configuration to set. see Data Catalog Encryption Settings.
*
*/
public List dataCatalogEncryptionSettings() {
return this.dataCatalogEncryptionSettings;
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDataCatalogEncryptionSettingsResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String catalogId;
private List dataCatalogEncryptionSettings;
private String id;
public Builder() {}
public Builder(GetDataCatalogEncryptionSettingsResult defaults) {
Objects.requireNonNull(defaults);
this.catalogId = defaults.catalogId;
this.dataCatalogEncryptionSettings = defaults.dataCatalogEncryptionSettings;
this.id = defaults.id;
}
@CustomType.Setter
public Builder catalogId(String catalogId) {
if (catalogId == null) {
throw new MissingRequiredPropertyException("GetDataCatalogEncryptionSettingsResult", "catalogId");
}
this.catalogId = catalogId;
return this;
}
@CustomType.Setter
public Builder dataCatalogEncryptionSettings(List dataCatalogEncryptionSettings) {
if (dataCatalogEncryptionSettings == null) {
throw new MissingRequiredPropertyException("GetDataCatalogEncryptionSettingsResult", "dataCatalogEncryptionSettings");
}
this.dataCatalogEncryptionSettings = dataCatalogEncryptionSettings;
return this;
}
public Builder dataCatalogEncryptionSettings(GetDataCatalogEncryptionSettingsDataCatalogEncryptionSetting... dataCatalogEncryptionSettings) {
return dataCatalogEncryptionSettings(List.of(dataCatalogEncryptionSettings));
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetDataCatalogEncryptionSettingsResult", "id");
}
this.id = id;
return this;
}
public GetDataCatalogEncryptionSettingsResult build() {
final var _resultValue = new GetDataCatalogEncryptionSettingsResult();
_resultValue.catalogId = catalogId;
_resultValue.dataCatalogEncryptionSettings = dataCatalogEncryptionSettings;
_resultValue.id = id;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy