@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
74 lines • 3.12 kB
JavaScript
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccountSuppressionAttributes = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Manages AWS SESv2 (Simple Email V2) account-level suppression attributes.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const example = new aws.sesv2.AccountSuppressionAttributes("example", {suppressedReasons: ["COMPLAINT"]});
* ```
*
* ## Import
*
* Using `pulumi import`, import account-level suppression attributes using the account ID. For example:
*
* ```sh
* $ pulumi import aws:sesv2/accountSuppressionAttributes:AccountSuppressionAttributes example 123456789012
* ```
*/
class AccountSuppressionAttributes extends pulumi.CustomResource {
/**
* Get an existing AccountSuppressionAttributes 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, id, state, opts) {
return new AccountSuppressionAttributes(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of AccountSuppressionAttributes. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === AccountSuppressionAttributes.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["region"] = state?.region;
resourceInputs["suppressedReasons"] = state?.suppressedReasons;
}
else {
const args = argsOrState;
if (args?.suppressedReasons === undefined && !opts.urn) {
throw new Error("Missing required property 'suppressedReasons'");
}
resourceInputs["region"] = args?.region;
resourceInputs["suppressedReasons"] = args?.suppressedReasons;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(AccountSuppressionAttributes.__pulumiType, name, resourceInputs, opts);
}
}
exports.AccountSuppressionAttributes = AccountSuppressionAttributes;
/** @internal */
AccountSuppressionAttributes.__pulumiType = 'aws:sesv2/accountSuppressionAttributes:AccountSuppressionAttributes';
//# sourceMappingURL=accountSuppressionAttributes.js.map
;