com.pulumi.aws.ssm.inputs.GetContactsRotationPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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