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

com.pulumi.aws.costexplorer.inputs.AnomalySubscriptionThresholdExpressionNotDimensionArgs Maven / Gradle / Ivy

Go to download

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

There is a newer version: 6.60.0-alpha.1731982519
Show 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.costexplorer.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final AnomalySubscriptionThresholdExpressionNotDimensionArgs Empty = new AnomalySubscriptionThresholdExpressionNotDimensionArgs();

    /**
     * Unique name of the Cost Category.
     * 
     */
    @Import(name="key")
    private @Nullable Output key;

    /**
     * @return Unique name of the Cost Category.
     * 
     */
    public Optional> key() {
        return Optional.ofNullable(this.key);
    }

    /**
     * Match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is `EQUALS` and `CASE_SENSITIVE`. Valid values are: `EQUALS`,  `ABSENT`, `STARTS_WITH`, `ENDS_WITH`, `CONTAINS`, `CASE_SENSITIVE`, `CASE_INSENSITIVE`.
     * 
     */
    @Import(name="matchOptions")
    private @Nullable Output> matchOptions;

    /**
     * @return Match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is `EQUALS` and `CASE_SENSITIVE`. Valid values are: `EQUALS`,  `ABSENT`, `STARTS_WITH`, `ENDS_WITH`, `CONTAINS`, `CASE_SENSITIVE`, `CASE_INSENSITIVE`.
     * 
     */
    public Optional>> matchOptions() {
        return Optional.ofNullable(this.matchOptions);
    }

    /**
     * Specific value of the Cost Category.
     * 
     */
    @Import(name="values")
    private @Nullable Output> values;

    /**
     * @return Specific value of the Cost Category.
     * 
     */
    public Optional>> values() {
        return Optional.ofNullable(this.values);
    }

    private AnomalySubscriptionThresholdExpressionNotDimensionArgs() {}

    private AnomalySubscriptionThresholdExpressionNotDimensionArgs(AnomalySubscriptionThresholdExpressionNotDimensionArgs $) {
        this.key = $.key;
        this.matchOptions = $.matchOptions;
        this.values = $.values;
    }

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

    public static final class Builder {
        private AnomalySubscriptionThresholdExpressionNotDimensionArgs $;

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

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

        /**
         * @param key Unique name of the Cost Category.
         * 
         * @return builder
         * 
         */
        public Builder key(@Nullable Output key) {
            $.key = key;
            return this;
        }

        /**
         * @param key Unique name of the Cost Category.
         * 
         * @return builder
         * 
         */
        public Builder key(String key) {
            return key(Output.of(key));
        }

        /**
         * @param matchOptions Match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is `EQUALS` and `CASE_SENSITIVE`. Valid values are: `EQUALS`,  `ABSENT`, `STARTS_WITH`, `ENDS_WITH`, `CONTAINS`, `CASE_SENSITIVE`, `CASE_INSENSITIVE`.
         * 
         * @return builder
         * 
         */
        public Builder matchOptions(@Nullable Output> matchOptions) {
            $.matchOptions = matchOptions;
            return this;
        }

        /**
         * @param matchOptions Match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is `EQUALS` and `CASE_SENSITIVE`. Valid values are: `EQUALS`,  `ABSENT`, `STARTS_WITH`, `ENDS_WITH`, `CONTAINS`, `CASE_SENSITIVE`, `CASE_INSENSITIVE`.
         * 
         * @return builder
         * 
         */
        public Builder matchOptions(List matchOptions) {
            return matchOptions(Output.of(matchOptions));
        }

        /**
         * @param matchOptions Match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is `EQUALS` and `CASE_SENSITIVE`. Valid values are: `EQUALS`,  `ABSENT`, `STARTS_WITH`, `ENDS_WITH`, `CONTAINS`, `CASE_SENSITIVE`, `CASE_INSENSITIVE`.
         * 
         * @return builder
         * 
         */
        public Builder matchOptions(String... matchOptions) {
            return matchOptions(List.of(matchOptions));
        }

        /**
         * @param values Specific value of the Cost Category.
         * 
         * @return builder
         * 
         */
        public Builder values(@Nullable Output> values) {
            $.values = values;
            return this;
        }

        /**
         * @param values Specific value of the Cost Category.
         * 
         * @return builder
         * 
         */
        public Builder values(List values) {
            return values(Output.of(values));
        }

        /**
         * @param values Specific value of the Cost Category.
         * 
         * @return builder
         * 
         */
        public Builder values(String... values) {
            return values(List.of(values));
        }

        public AnomalySubscriptionThresholdExpressionNotDimensionArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy