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

com.pulumi.aws.ssmcontacts.inputs.GetPlanPlainArgs 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.ssmcontacts.inputs;

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


public final class GetPlanPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetPlanPlainArgs Empty = new GetPlanPlainArgs();

    /**
     * The Amazon Resource Name (ARN) of the contact or escalation plan.
     * 
     */
    @Import(name="contactId", required=true)
    private String contactId;

    /**
     * @return The Amazon Resource Name (ARN) of the contact or escalation plan.
     * 
     */
    public String contactId() {
        return this.contactId;
    }

    private GetPlanPlainArgs() {}

    private GetPlanPlainArgs(GetPlanPlainArgs $) {
        this.contactId = $.contactId;
    }

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

    public static final class Builder {
        private GetPlanPlainArgs $;

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

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

        /**
         * @param contactId The Amazon Resource Name (ARN) of the contact or escalation plan.
         * 
         * @return builder
         * 
         */
        public Builder contactId(String contactId) {
            $.contactId = contactId;
            return this;
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy