UNPKG

@pulumi/aws

Version:

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

99 lines 3.78 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.VectorsVectorBucketPolicy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Resource for managing an Amazon S3 Vectors Vector Bucket policy. * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = new aws.s3.VectorsVectorBucketPolicy("example", { * vectorBucketArn: exampleAwsS3vectorsVectorBucket.arn, * policy: `{ * \\"Version\\": \\"2012-10-17\\", * \\"Id\\": \\"writePolicy\\", * \\"Statement\\": [{ * \\"Sid\\": \\"writeStatement\\", * \\"Effect\\": \\"Allow\\", * \\"Principal\\": { * \\"AWS\\": \\"123456789012\\" * }, * \\"Action\\": [ * \\"s3vectors:PutVectors\\" * ], * \\"Resource\\": \\"*\\" * }] * } * `, * }); * ``` * * ## Import * * Using `pulumi import`, import S3 Vectors Vector Bucket policy using the `vector_bucket_arn`. For example: * * ```sh * $ pulumi import aws:s3/vectorsVectorBucketPolicy:VectorsVectorBucketPolicy example arn:aws:s3vectors:us-west-2:123456789012:bucket/example-bucket * ``` */ class VectorsVectorBucketPolicy extends pulumi.CustomResource { /** * Get an existing VectorsVectorBucketPolicy 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 VectorsVectorBucketPolicy(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of VectorsVectorBucketPolicy. 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'] === VectorsVectorBucketPolicy.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["policy"] = state?.policy; resourceInputs["region"] = state?.region; resourceInputs["vectorBucketArn"] = state?.vectorBucketArn; } else { const args = argsOrState; if (args?.policy === undefined && !opts.urn) { throw new Error("Missing required property 'policy'"); } if (args?.vectorBucketArn === undefined && !opts.urn) { throw new Error("Missing required property 'vectorBucketArn'"); } resourceInputs["policy"] = args?.policy; resourceInputs["region"] = args?.region; resourceInputs["vectorBucketArn"] = args?.vectorBucketArn; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(VectorsVectorBucketPolicy.__pulumiType, name, resourceInputs, opts); } } exports.VectorsVectorBucketPolicy = VectorsVectorBucketPolicy; /** @internal */ VectorsVectorBucketPolicy.__pulumiType = 'aws:s3/vectorsVectorBucketPolicy:VectorsVectorBucketPolicy'; //# sourceMappingURL=vectorsVectorBucketPolicy.js.map