com.pulumi.aws.devopsguru.inputs.GetNotificationChannelSn 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.aws.devopsguru.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetNotificationChannelSn extends com.pulumi.resources.InvokeArgs {
public static final GetNotificationChannelSn Empty = new GetNotificationChannelSn();
/**
* Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
*
*/
@Import(name="topicArn", required=true)
private String topicArn;
/**
* @return Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
*
*/
public String topicArn() {
return this.topicArn;
}
private GetNotificationChannelSn() {}
private GetNotificationChannelSn(GetNotificationChannelSn $) {
this.topicArn = $.topicArn;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetNotificationChannelSn defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetNotificationChannelSn $;
public Builder() {
$ = new GetNotificationChannelSn();
}
public Builder(GetNotificationChannelSn defaults) {
$ = new GetNotificationChannelSn(Objects.requireNonNull(defaults));
}
/**
* @param topicArn Amazon Resource Name (ARN) of an Amazon Simple Notification Service topic.
*
* @return builder
*
*/
public Builder topicArn(String topicArn) {
$.topicArn = topicArn;
return this;
}
public GetNotificationChannelSn build() {
if ($.topicArn == null) {
throw new MissingRequiredPropertyException("GetNotificationChannelSn", "topicArn");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy