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

com.pulumi.mongodbatlas.inputs.EventTriggerEventProcessorsAwsEventbridgeArgs 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.mongodbatlas.inputs;

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


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

    public static final EventTriggerEventProcessorsAwsEventbridgeArgs Empty = new EventTriggerEventProcessorsAwsEventbridgeArgs();

    @Import(name="configAccountId")
    private @Nullable Output configAccountId;

    public Optional> configAccountId() {
        return Optional.ofNullable(this.configAccountId);
    }

    @Import(name="configRegion")
    private @Nullable Output configRegion;

    public Optional> configRegion() {
        return Optional.ofNullable(this.configRegion);
    }

    private EventTriggerEventProcessorsAwsEventbridgeArgs() {}

    private EventTriggerEventProcessorsAwsEventbridgeArgs(EventTriggerEventProcessorsAwsEventbridgeArgs $) {
        this.configAccountId = $.configAccountId;
        this.configRegion = $.configRegion;
    }

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

    public static final class Builder {
        private EventTriggerEventProcessorsAwsEventbridgeArgs $;

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

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

        public Builder configAccountId(@Nullable Output configAccountId) {
            $.configAccountId = configAccountId;
            return this;
        }

        public Builder configAccountId(String configAccountId) {
            return configAccountId(Output.of(configAccountId));
        }

        public Builder configRegion(@Nullable Output configRegion) {
            $.configRegion = configRegion;
            return this;
        }

        public Builder configRegion(String configRegion) {
            return configRegion(Output.of(configRegion));
        }

        public EventTriggerEventProcessorsAwsEventbridgeArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy