@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
94 lines • 5.44 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.EventDataStore = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* A storage lake of event data against which you can run complex SQL-based queries. An event data store can include events that you have logged on your account from the last 7 to 2557 or 3653 days (about seven or ten years) depending on the selected BillingMode.
*/
class EventDataStore extends pulumi.CustomResource {
/**
* Get an existing EventDataStore 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 opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, opts) {
return new EventDataStore(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of EventDataStore. 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'] === EventDataStore.__pulumiType;
}
/**
* Create a EventDataStore 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, args, opts) {
let resourceInputs = {};
opts = opts || {};
if (!opts.id) {
resourceInputs["advancedEventSelectors"] = args ? args.advancedEventSelectors : undefined;
resourceInputs["billingMode"] = args ? args.billingMode : undefined;
resourceInputs["contextKeySelectors"] = args ? args.contextKeySelectors : undefined;
resourceInputs["federationEnabled"] = args ? args.federationEnabled : undefined;
resourceInputs["federationRoleArn"] = args ? args.federationRoleArn : undefined;
resourceInputs["ingestionEnabled"] = args ? args.ingestionEnabled : undefined;
resourceInputs["insightSelectors"] = args ? args.insightSelectors : undefined;
resourceInputs["insightsDestination"] = args ? args.insightsDestination : undefined;
resourceInputs["kmsKeyId"] = args ? args.kmsKeyId : undefined;
resourceInputs["maxEventSize"] = args ? args.maxEventSize : undefined;
resourceInputs["multiRegionEnabled"] = args ? args.multiRegionEnabled : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["organizationEnabled"] = args ? args.organizationEnabled : undefined;
resourceInputs["retentionPeriod"] = args ? args.retentionPeriod : undefined;
resourceInputs["tags"] = args ? args.tags : undefined;
resourceInputs["terminationProtectionEnabled"] = args ? args.terminationProtectionEnabled : undefined;
resourceInputs["createdTimestamp"] = undefined /*out*/;
resourceInputs["eventDataStoreArn"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
resourceInputs["updatedTimestamp"] = undefined /*out*/;
}
else {
resourceInputs["advancedEventSelectors"] = undefined /*out*/;
resourceInputs["billingMode"] = undefined /*out*/;
resourceInputs["contextKeySelectors"] = undefined /*out*/;
resourceInputs["createdTimestamp"] = undefined /*out*/;
resourceInputs["eventDataStoreArn"] = undefined /*out*/;
resourceInputs["federationEnabled"] = undefined /*out*/;
resourceInputs["federationRoleArn"] = undefined /*out*/;
resourceInputs["ingestionEnabled"] = undefined /*out*/;
resourceInputs["insightSelectors"] = undefined /*out*/;
resourceInputs["insightsDestination"] = undefined /*out*/;
resourceInputs["kmsKeyId"] = undefined /*out*/;
resourceInputs["maxEventSize"] = undefined /*out*/;
resourceInputs["multiRegionEnabled"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["organizationEnabled"] = undefined /*out*/;
resourceInputs["retentionPeriod"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
resourceInputs["tags"] = undefined /*out*/;
resourceInputs["terminationProtectionEnabled"] = undefined /*out*/;
resourceInputs["updatedTimestamp"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(EventDataStore.__pulumiType, name, resourceInputs, opts);
}
}
exports.EventDataStore = EventDataStore;
/** @internal */
EventDataStore.__pulumiType = 'aws-native:cloudtrail:EventDataStore';
//# sourceMappingURL=eventDataStore.js.map