UNPKG

@pulumi/aws

Version:

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

113 lines 4.21 kB
"use strict"; // *** 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.SinkPolicy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Resource for managing an AWS CloudWatch Observability Access Manager Sink Policy. * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = new aws.oam.Sink("example", {name: "ExampleSink"}); * const exampleSinkPolicy = new aws.oam.SinkPolicy("example", { * sinkIdentifier: example.arn, * policy: JSON.stringify({ * Version: "2012-10-17", * Statement: [{ * Action: [ * "oam:CreateLink", * "oam:UpdateLink", * ], * Effect: "Allow", * Resource: "*", * Principal: { * AWS: [ * "1111111111111", * "222222222222", * ], * }, * Condition: { * "ForAllValues:StringEquals": { * "oam:ResourceTypes": [ * "AWS::CloudWatch::Metric", * "AWS::Logs::LogGroup", * ], * }, * }, * }], * }), * }); * ``` * * ## Import * * Using `pulumi import`, import CloudWatch Observability Access Manager Sink Policy using the `sink_identifier`. For example: * * ```sh * $ pulumi import aws:oam/sinkPolicy:SinkPolicy example arn:aws:oam:us-west-2:123456789012:sink/sink-id * ``` */ class SinkPolicy extends pulumi.CustomResource { /** * Get an existing SinkPolicy 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 SinkPolicy(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of SinkPolicy. 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'] === SinkPolicy.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["arn"] = state?.arn; resourceInputs["policy"] = state?.policy; resourceInputs["region"] = state?.region; resourceInputs["sinkId"] = state?.sinkId; resourceInputs["sinkIdentifier"] = state?.sinkIdentifier; } else { const args = argsOrState; if (args?.policy === undefined && !opts.urn) { throw new Error("Missing required property 'policy'"); } if (args?.sinkIdentifier === undefined && !opts.urn) { throw new Error("Missing required property 'sinkIdentifier'"); } resourceInputs["policy"] = args?.policy; resourceInputs["region"] = args?.region; resourceInputs["sinkIdentifier"] = args?.sinkIdentifier; resourceInputs["arn"] = undefined /*out*/; resourceInputs["sinkId"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(SinkPolicy.__pulumiType, name, resourceInputs, opts); } } exports.SinkPolicy = SinkPolicy; /** @internal */ SinkPolicy.__pulumiType = 'aws:oam/sinkPolicy:SinkPolicy'; //# sourceMappingURL=sinkPolicy.js.map