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

com.pulumi.aws.ssm.inputs.GetContactsRotationPlainArgs 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.ssm.inputs;

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


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

    public static final GetContactsRotationPlainArgs Empty = new GetContactsRotationPlainArgs();

    /**
     * The Amazon Resource Name (ARN) of the rotation.
     * 
     */
    @Import(name="arn", required=true)
    private String arn;

    /**
     * @return The Amazon Resource Name (ARN) of the rotation.
     * 
     */
    public String arn() {
        return this.arn;
    }

    private GetContactsRotationPlainArgs() {}

    private GetContactsRotationPlainArgs(GetContactsRotationPlainArgs $) {
        this.arn = $.arn;
    }

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

    public static final class Builder {
        private GetContactsRotationPlainArgs $;

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

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

        /**
         * @param arn The Amazon Resource Name (ARN) of the rotation.
         * 
         * @return builder
         * 
         */
        public Builder arn(String arn) {
            $.arn = arn;
            return this;
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy