@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
122 lines (121 loc) • 5.62 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource for managing SES Identity Notification Topics
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const test = new aws.ses.IdentityNotificationTopic("test", {
* topicArn: exampleAwsSnsTopic.arn,
* notificationType: "Bounce",
* identity: example.domain,
* includeOriginalHeaders: true,
* });
* ```
*
* ## 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'
* ```
*/
export declare class IdentityNotificationTopic extends pulumi.CustomResource {
/**
* Get an existing IdentityNotificationTopic resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IdentityNotificationTopicState, opts?: pulumi.CustomResourceOptions): IdentityNotificationTopic;
/**
* Returns true if the given object is an instance of IdentityNotificationTopic. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is IdentityNotificationTopic;
/**
* 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).
*/
readonly identity: pulumi.Output<string>;
/**
* Whether SES should include original email headers in SNS notifications of this type. `false` by default.
*/
readonly includeOriginalHeaders: pulumi.Output<boolean | undefined>;
/**
* The type of notifications that will be published to the specified Amazon SNS topic. Valid Values: `Bounce`, `Complaint` or `Delivery`.
*/
readonly notificationType: pulumi.Output<string>;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
readonly region: pulumi.Output<string>;
/**
* The Amazon Resource Name (ARN) of the Amazon SNS topic. Can be set to `""` (an empty string) to disable publishing.
*/
readonly topicArn: pulumi.Output<string | undefined>;
/**
* Create a IdentityNotificationTopic resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: IdentityNotificationTopicArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering IdentityNotificationTopic resources.
*/
export interface IdentityNotificationTopicState {
/**
* 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).
*/
identity?: pulumi.Input<string>;
/**
* Whether SES should include original email headers in SNS notifications of this type. `false` by default.
*/
includeOriginalHeaders?: pulumi.Input<boolean>;
/**
* The type of notifications that will be published to the specified Amazon SNS topic. Valid Values: `Bounce`, `Complaint` or `Delivery`.
*/
notificationType?: pulumi.Input<string>;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
region?: pulumi.Input<string>;
/**
* The Amazon Resource Name (ARN) of the Amazon SNS topic. Can be set to `""` (an empty string) to disable publishing.
*/
topicArn?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a IdentityNotificationTopic resource.
*/
export interface 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).
*/
identity: pulumi.Input<string>;
/**
* Whether SES should include original email headers in SNS notifications of this type. `false` by default.
*/
includeOriginalHeaders?: pulumi.Input<boolean>;
/**
* The type of notifications that will be published to the specified Amazon SNS topic. Valid Values: `Bounce`, `Complaint` or `Delivery`.
*/
notificationType: pulumi.Input<string>;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
region?: pulumi.Input<string>;
/**
* The Amazon Resource Name (ARN) of the Amazon SNS topic. Can be set to `""` (an empty string) to disable publishing.
*/
topicArn?: pulumi.Input<string>;
}