UNPKG

@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)

28 lines 1.27 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.getTableBucketOutput = exports.getTableBucket = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack. */ function getTableBucket(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("aws-native:s3tables:getTableBucket", { "tableBucketArn": args.tableBucketArn, }, opts); } exports.getTableBucket = getTableBucket; /** * Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack. */ function getTableBucketOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("aws-native:s3tables:getTableBucket", { "tableBucketArn": args.tableBucketArn, }, opts); } exports.getTableBucketOutput = getTableBucketOutput; //# sourceMappingURL=getTableBucket.js.map