@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
76 lines • 3.03 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.ActiveReceiptRuleSet = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to designate the active SES receipt rule set
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const main = new aws.ses.ActiveReceiptRuleSet("main", {ruleSetName: "primary-rules"});
* ```
*
* ## Import
*
* Using `pulumi import`, import active SES receipt rule sets using the rule set name. For example:
*
* ```sh
* $ pulumi import aws:ses/activeReceiptRuleSet:ActiveReceiptRuleSet my_rule_set my_rule_set_name
* ```
*/
class ActiveReceiptRuleSet extends pulumi.CustomResource {
/**
* Get an existing ActiveReceiptRuleSet 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 ActiveReceiptRuleSet(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of ActiveReceiptRuleSet. 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'] === ActiveReceiptRuleSet.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["arn"] = state?.arn;
resourceInputs["region"] = state?.region;
resourceInputs["ruleSetName"] = state?.ruleSetName;
}
else {
const args = argsOrState;
if (args?.ruleSetName === undefined && !opts.urn) {
throw new Error("Missing required property 'ruleSetName'");
}
resourceInputs["region"] = args?.region;
resourceInputs["ruleSetName"] = args?.ruleSetName;
resourceInputs["arn"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(ActiveReceiptRuleSet.__pulumiType, name, resourceInputs, opts);
}
}
exports.ActiveReceiptRuleSet = ActiveReceiptRuleSet;
/** @internal */
ActiveReceiptRuleSet.__pulumiType = 'aws:ses/activeReceiptRuleSet:ActiveReceiptRuleSet';
//# sourceMappingURL=activeReceiptRuleSet.js.map
;