
com.pulumi.aws.customerprofiles.outputs.DomainRuleBasedMatchingExportingConfigS3Exporting 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.aws.customerprofiles.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DomainRuleBasedMatchingExportingConfigS3Exporting {
/**
* @return The name of the S3 bucket where Identity Resolution Jobs write result files.
*
*/
private String s3BucketName;
/**
* @return The S3 key name of the location where Identity Resolution Jobs write result files.
*
*/
private @Nullable String s3KeyName;
private DomainRuleBasedMatchingExportingConfigS3Exporting() {}
/**
* @return The name of the S3 bucket where Identity Resolution Jobs write result files.
*
*/
public String s3BucketName() {
return this.s3BucketName;
}
/**
* @return The S3 key name of the location where Identity Resolution Jobs write result files.
*
*/
public Optional s3KeyName() {
return Optional.ofNullable(this.s3KeyName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DomainRuleBasedMatchingExportingConfigS3Exporting defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String s3BucketName;
private @Nullable String s3KeyName;
public Builder() {}
public Builder(DomainRuleBasedMatchingExportingConfigS3Exporting defaults) {
Objects.requireNonNull(defaults);
this.s3BucketName = defaults.s3BucketName;
this.s3KeyName = defaults.s3KeyName;
}
@CustomType.Setter
public Builder s3BucketName(String s3BucketName) {
if (s3BucketName == null) {
throw new MissingRequiredPropertyException("DomainRuleBasedMatchingExportingConfigS3Exporting", "s3BucketName");
}
this.s3BucketName = s3BucketName;
return this;
}
@CustomType.Setter
public Builder s3KeyName(@Nullable String s3KeyName) {
this.s3KeyName = s3KeyName;
return this;
}
public DomainRuleBasedMatchingExportingConfigS3Exporting build() {
final var _resultValue = new DomainRuleBasedMatchingExportingConfigS3Exporting();
_resultValue.s3BucketName = s3BucketName;
_resultValue.s3KeyName = s3KeyName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy