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

com.pulumi.aws.cloudwatch.inputs.GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

The newest version!
// *** 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.cloudwatch.inputs;

import com.pulumi.aws.cloudwatch.inputs.GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyMaskConfigArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;


public final class GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs extends com.pulumi.resources.ResourceArgs {

    public static final GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs Empty = new GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs();

    /**
     * An empty object that configures masking.
     * 
     */
    @Import(name="maskConfig", required=true)
    private Output maskConfig;

    /**
     * @return An empty object that configures masking.
     * 
     */
    public Output maskConfig() {
        return this.maskConfig;
    }

    private GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs() {}

    private GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs(GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs $) {
        this.maskConfig = $.maskConfig;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs $;

        public Builder() {
            $ = new GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs();
        }

        public Builder(GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs defaults) {
            $ = new GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param maskConfig An empty object that configures masking.
         * 
         * @return builder
         * 
         */
        public Builder maskConfig(Output maskConfig) {
            $.maskConfig = maskConfig;
            return this;
        }

        /**
         * @param maskConfig An empty object that configures masking.
         * 
         * @return builder
         * 
         */
        public Builder maskConfig(GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyMaskConfigArgs maskConfig) {
            return maskConfig(Output.of(maskConfig));
        }

        public GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs build() {
            if ($.maskConfig == null) {
                throw new MissingRequiredPropertyException("GetLogDataProtectionPolicyDocumentStatementOperationDeidentifyArgs", "maskConfig");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy