
com.pulumi.aws.ses.IdentityNotificationTopicArgs 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.ses;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class IdentityNotificationTopicArgs extends com.pulumi.resources.ResourceArgs {
public static final IdentityNotificationTopicArgs Empty = new IdentityNotificationTopicArgs();
/**
* The identity for which the Amazon SNS topic will be set. You can specify an identity by using its name or by using its Amazon Resource Name (ARN).
*
*/
@Import(name="identity", required=true)
private Output identity;
/**
* @return The identity for which the Amazon SNS topic will be set. You can specify an identity by using its name or by using its Amazon Resource Name (ARN).
*
*/
public Output identity() {
return this.identity;
}
/**
* Whether SES should include original email headers in SNS notifications of this type. `false` by default.
*
*/
@Import(name="includeOriginalHeaders")
private @Nullable Output includeOriginalHeaders;
/**
* @return Whether SES should include original email headers in SNS notifications of this type. `false` by default.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy