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