@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)
101 lines • 5.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.Gateway = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Definition of AWS::BedrockAgentCore::Gateway Resource Type
*/
class Gateway extends pulumi.CustomResource {
/**
* Get an existing Gateway 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 Gateway(name, undefined, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of Gateway. 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'] === Gateway.__pulumiType;
}
/**
* Create a Gateway 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) {
if (args?.authorizerType === undefined && !opts.urn) {
throw new Error("Missing required property 'authorizerType'");
}
if (args?.protocolType === undefined && !opts.urn) {
throw new Error("Missing required property 'protocolType'");
}
if (args?.roleArn === undefined && !opts.urn) {
throw new Error("Missing required property 'roleArn'");
}
resourceInputs["authorizerConfiguration"] = args?.authorizerConfiguration;
resourceInputs["authorizerType"] = args?.authorizerType;
resourceInputs["description"] = args?.description;
resourceInputs["exceptionLevel"] = args?.exceptionLevel;
resourceInputs["interceptorConfigurations"] = args?.interceptorConfigurations;
resourceInputs["kmsKeyArn"] = args?.kmsKeyArn;
resourceInputs["name"] = args?.name;
resourceInputs["protocolConfiguration"] = args?.protocolConfiguration;
resourceInputs["protocolType"] = args?.protocolType;
resourceInputs["roleArn"] = args?.roleArn;
resourceInputs["tags"] = args?.tags;
resourceInputs["createdAt"] = undefined /*out*/;
resourceInputs["gatewayArn"] = undefined /*out*/;
resourceInputs["gatewayIdentifier"] = undefined /*out*/;
resourceInputs["gatewayUrl"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
resourceInputs["statusReasons"] = undefined /*out*/;
resourceInputs["updatedAt"] = undefined /*out*/;
resourceInputs["workloadIdentityDetails"] = undefined /*out*/;
}
else {
resourceInputs["authorizerConfiguration"] = undefined /*out*/;
resourceInputs["authorizerType"] = undefined /*out*/;
resourceInputs["createdAt"] = undefined /*out*/;
resourceInputs["description"] = undefined /*out*/;
resourceInputs["exceptionLevel"] = undefined /*out*/;
resourceInputs["gatewayArn"] = undefined /*out*/;
resourceInputs["gatewayIdentifier"] = undefined /*out*/;
resourceInputs["gatewayUrl"] = undefined /*out*/;
resourceInputs["interceptorConfigurations"] = undefined /*out*/;
resourceInputs["kmsKeyArn"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["protocolConfiguration"] = undefined /*out*/;
resourceInputs["protocolType"] = undefined /*out*/;
resourceInputs["roleArn"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
resourceInputs["statusReasons"] = undefined /*out*/;
resourceInputs["tags"] = undefined /*out*/;
resourceInputs["updatedAt"] = undefined /*out*/;
resourceInputs["workloadIdentityDetails"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Gateway.__pulumiType, name, resourceInputs, opts);
}
}
exports.Gateway = Gateway;
/** @internal */
Gateway.__pulumiType = 'aws-native:bedrockagentcore:Gateway';
//# sourceMappingURL=gateway.js.map