Package com.pulumi.aws.ses
Class IdentityNotificationTopic
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.ses.IdentityNotificationTopic
-
public class IdentityNotificationTopic extends com.pulumi.resources.CustomResource
Resource for managing SES Identity Notification Topics ## Example Usage ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.ses.IdentityNotificationTopic; import com.pulumi.aws.ses.IdentityNotificationTopicArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var test = new IdentityNotificationTopic("test", IdentityNotificationTopicArgs.builder() .topicArn(aws_sns_topic.example().arn()) .notificationType("Bounce") .identity(aws_ses_domain_identity.example().domain()) .includeOriginalHeaders(true) .build()); } } ``` ## Import Using `pulumi import`, import Identity Notification Topics using the ID of the record. The ID is made up as `IDENTITY|TYPE` where `IDENTITY` is the SES Identity and `TYPE` is the Notification Type. For example: ```sh $ pulumi import aws:ses/identityNotificationTopic:IdentityNotificationTopic test 'example.com|Bounce' ```
-
-
Constructor Summary
Constructors Constructor Description IdentityNotificationTopic(java.lang.String name)
IdentityNotificationTopic(java.lang.String name, IdentityNotificationTopicArgs args)
IdentityNotificationTopic(java.lang.String name, IdentityNotificationTopicArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentityNotificationTopic
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, IdentityNotificationTopicState state, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.lang.String>
identity()
com.pulumi.core.Output<java.util.Optional<java.lang.Boolean>>
includeOriginalHeaders()
com.pulumi.core.Output<java.lang.String>
notificationType()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
topicArn()
-
-
-
Constructor Detail
-
IdentityNotificationTopic
public IdentityNotificationTopic(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
IdentityNotificationTopic
public IdentityNotificationTopic(java.lang.String name, IdentityNotificationTopicArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
IdentityNotificationTopic
public IdentityNotificationTopic(java.lang.String name, IdentityNotificationTopicArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
identity
public com.pulumi.core.Output<java.lang.String> identity()
- Returns:
- 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).
-
includeOriginalHeaders
public com.pulumi.core.Output<java.util.Optional<java.lang.Boolean>> includeOriginalHeaders()
- Returns:
- Whether SES should include original email headers in SNS notifications of this type. `false` by default.
-
notificationType
public com.pulumi.core.Output<java.lang.String> notificationType()
- Returns:
- The type of notifications that will be published to the specified Amazon SNS topic. Valid Values: `Bounce`, `Complaint` or `Delivery`.
-
topicArn
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> topicArn()
- Returns:
- The Amazon Resource Name (ARN) of the Amazon SNS topic. Can be set to `""` (an empty string) to disable publishing.
-
get
public static IdentityNotificationTopic get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable IdentityNotificationTopicState state, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.state
-options
- Optional settings to control the behavior of the CustomResource.
-
-