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)

111 lines 6.47 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.VerifiedAccessEndpoint = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * The AWS::EC2::VerifiedAccessEndpoint resource creates an AWS EC2 Verified Access Endpoint. */ class VerifiedAccessEndpoint extends pulumi.CustomResource { /** * Get an existing VerifiedAccessEndpoint 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 VerifiedAccessEndpoint(name, undefined, { ...opts, id: id }); } /** * Returns true if the given object is an instance of VerifiedAccessEndpoint. 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'] === VerifiedAccessEndpoint.__pulumiType; } /** * Create a VerifiedAccessEndpoint 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?.attachmentType === undefined && !opts.urn) { throw new Error("Missing required property 'attachmentType'"); } if (args?.endpointType === undefined && !opts.urn) { throw new Error("Missing required property 'endpointType'"); } if (args?.verifiedAccessGroupId === undefined && !opts.urn) { throw new Error("Missing required property 'verifiedAccessGroupId'"); } resourceInputs["applicationDomain"] = args?.applicationDomain; resourceInputs["attachmentType"] = args?.attachmentType; resourceInputs["cidrOptions"] = args?.cidrOptions; resourceInputs["description"] = args?.description; resourceInputs["domainCertificateArn"] = args?.domainCertificateArn; resourceInputs["endpointDomainPrefix"] = args?.endpointDomainPrefix; resourceInputs["endpointType"] = args?.endpointType; resourceInputs["loadBalancerOptions"] = args?.loadBalancerOptions; resourceInputs["networkInterfaceOptions"] = args?.networkInterfaceOptions; resourceInputs["policyDocument"] = args?.policyDocument; resourceInputs["policyEnabled"] = args?.policyEnabled; resourceInputs["rdsOptions"] = args?.rdsOptions; resourceInputs["securityGroupIds"] = args?.securityGroupIds; resourceInputs["sseSpecification"] = args?.sseSpecification; resourceInputs["tags"] = args?.tags; resourceInputs["verifiedAccessGroupId"] = args?.verifiedAccessGroupId; resourceInputs["creationTime"] = undefined /*out*/; resourceInputs["deviceValidationDomain"] = undefined /*out*/; resourceInputs["endpointDomain"] = undefined /*out*/; resourceInputs["lastUpdatedTime"] = undefined /*out*/; resourceInputs["status"] = undefined /*out*/; resourceInputs["verifiedAccessEndpointId"] = undefined /*out*/; resourceInputs["verifiedAccessInstanceId"] = undefined /*out*/; } else { resourceInputs["applicationDomain"] = undefined /*out*/; resourceInputs["attachmentType"] = undefined /*out*/; resourceInputs["cidrOptions"] = undefined /*out*/; resourceInputs["creationTime"] = undefined /*out*/; resourceInputs["description"] = undefined /*out*/; resourceInputs["deviceValidationDomain"] = undefined /*out*/; resourceInputs["domainCertificateArn"] = undefined /*out*/; resourceInputs["endpointDomain"] = undefined /*out*/; resourceInputs["endpointDomainPrefix"] = undefined /*out*/; resourceInputs["endpointType"] = undefined /*out*/; resourceInputs["lastUpdatedTime"] = undefined /*out*/; resourceInputs["loadBalancerOptions"] = undefined /*out*/; resourceInputs["networkInterfaceOptions"] = undefined /*out*/; resourceInputs["policyDocument"] = undefined /*out*/; resourceInputs["policyEnabled"] = undefined /*out*/; resourceInputs["rdsOptions"] = undefined /*out*/; resourceInputs["securityGroupIds"] = undefined /*out*/; resourceInputs["sseSpecification"] = undefined /*out*/; resourceInputs["status"] = undefined /*out*/; resourceInputs["tags"] = undefined /*out*/; resourceInputs["verifiedAccessEndpointId"] = undefined /*out*/; resourceInputs["verifiedAccessGroupId"] = undefined /*out*/; resourceInputs["verifiedAccessInstanceId"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const replaceOnChanges = { replaceOnChanges: ["applicationDomain", "attachmentType", "cidrOptions.cidr", "cidrOptions.protocol", "cidrOptions.subnetIds[*]", "domainCertificateArn", "endpointDomainPrefix", "endpointType", "loadBalancerOptions.loadBalancerArn", "networkInterfaceOptions.networkInterfaceId", "rdsOptions.protocol", "rdsOptions.rdsDbClusterArn", "rdsOptions.rdsDbInstanceArn", "rdsOptions.rdsDbProxyArn", "securityGroupIds[*]"] }; opts = pulumi.mergeOptions(opts, replaceOnChanges); super(VerifiedAccessEndpoint.__pulumiType, name, resourceInputs, opts); } } exports.VerifiedAccessEndpoint = VerifiedAccessEndpoint; /** @internal */ VerifiedAccessEndpoint.__pulumiType = 'aws-native:ec2:VerifiedAccessEndpoint'; //# sourceMappingURL=verifiedAccessEndpoint.js.map