Identity Notification Topic
Resource for managing SES Identity Notification Topics
Example Usage
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());
}
}
Content copied to clipboard
Import
In TODO v1.5.0 and later, use an import
block to 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 exampleterraform import { to = aws_ses_identity_notification_topic.test id = "example.com|Bounce" } Using TODO 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 exampleconsole % TODO import aws_ses_identity_notification_topic.test 'example.com|Bounce'