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

com.pulumi.aws.macie2.inputs.ClassificationJobS3JobDefinitionScopingIncludesArgs 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.macie2.inputs;

import com.pulumi.aws.macie2.inputs.ClassificationJobS3JobDefinitionScopingIncludesAndArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final ClassificationJobS3JobDefinitionScopingIncludesArgs Empty = new ClassificationJobS3JobDefinitionScopingIncludesArgs();

    /**
     * An array of conditions, one for each condition that determines which objects to include or exclude from the job. (documented below)
     * 
     */
    @Import(name="ands")
    private @Nullable Output> ands;

    /**
     * @return An array of conditions, one for each condition that determines which objects to include or exclude from the job. (documented below)
     * 
     */
    public Optional>> ands() {
        return Optional.ofNullable(this.ands);
    }

    private ClassificationJobS3JobDefinitionScopingIncludesArgs() {}

    private ClassificationJobS3JobDefinitionScopingIncludesArgs(ClassificationJobS3JobDefinitionScopingIncludesArgs $) {
        this.ands = $.ands;
    }

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

    public static final class Builder {
        private ClassificationJobS3JobDefinitionScopingIncludesArgs $;

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

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

        /**
         * @param ands An array of conditions, one for each condition that determines which objects to include or exclude from the job. (documented below)
         * 
         * @return builder
         * 
         */
        public Builder ands(@Nullable Output> ands) {
            $.ands = ands;
            return this;
        }

        /**
         * @param ands An array of conditions, one for each condition that determines which objects to include or exclude from the job. (documented below)
         * 
         * @return builder
         * 
         */
        public Builder ands(List ands) {
            return ands(Output.of(ands));
        }

        /**
         * @param ands An array of conditions, one for each condition that determines which objects to include or exclude from the job. (documented below)
         * 
         * @return builder
         * 
         */
        public Builder ands(ClassificationJobS3JobDefinitionScopingIncludesAndArgs... ands) {
            return ands(List.of(ands));
        }

        public ClassificationJobS3JobDefinitionScopingIncludesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy