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

com.pulumi.aws.iot.EventConfigurationsArgs 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.72.0
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.iot;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Map;
import java.util.Objects;


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

    public static final EventConfigurationsArgs Empty = new EventConfigurationsArgs();

    /**
     * Map. The new event configuration values. You can use only these strings as keys: `THING_GROUP_HIERARCHY`, `THING_GROUP_MEMBERSHIP`, `THING_TYPE`, `THING_TYPE_ASSOCIATION`, `THING_GROUP`, `THING`, `POLICY`, `CA_CERTIFICATE`, `JOB_EXECUTION`, `CERTIFICATE`, `JOB`. Use boolean for values of mapping.
     * 
     */
    @Import(name="eventConfigurations", required=true)
    private Output> eventConfigurations;

    /**
     * @return Map. The new event configuration values. You can use only these strings as keys: `THING_GROUP_HIERARCHY`, `THING_GROUP_MEMBERSHIP`, `THING_TYPE`, `THING_TYPE_ASSOCIATION`, `THING_GROUP`, `THING`, `POLICY`, `CA_CERTIFICATE`, `JOB_EXECUTION`, `CERTIFICATE`, `JOB`. Use boolean for values of mapping.
     * 
     */
    public Output> eventConfigurations() {
        return this.eventConfigurations;
    }

    private EventConfigurationsArgs() {}

    private EventConfigurationsArgs(EventConfigurationsArgs $) {
        this.eventConfigurations = $.eventConfigurations;
    }

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

    public static final class Builder {
        private EventConfigurationsArgs $;

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

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

        /**
         * @param eventConfigurations Map. The new event configuration values. You can use only these strings as keys: `THING_GROUP_HIERARCHY`, `THING_GROUP_MEMBERSHIP`, `THING_TYPE`, `THING_TYPE_ASSOCIATION`, `THING_GROUP`, `THING`, `POLICY`, `CA_CERTIFICATE`, `JOB_EXECUTION`, `CERTIFICATE`, `JOB`. Use boolean for values of mapping.
         * 
         * @return builder
         * 
         */
        public Builder eventConfigurations(Output> eventConfigurations) {
            $.eventConfigurations = eventConfigurations;
            return this;
        }

        /**
         * @param eventConfigurations Map. The new event configuration values. You can use only these strings as keys: `THING_GROUP_HIERARCHY`, `THING_GROUP_MEMBERSHIP`, `THING_TYPE`, `THING_TYPE_ASSOCIATION`, `THING_GROUP`, `THING`, `POLICY`, `CA_CERTIFICATE`, `JOB_EXECUTION`, `CERTIFICATE`, `JOB`. Use boolean for values of mapping.
         * 
         * @return builder
         * 
         */
        public Builder eventConfigurations(Map eventConfigurations) {
            return eventConfigurations(Output.of(eventConfigurations));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy