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)

76 lines (75 loc) 3.71 kB
import * as pulumi from "@pulumi/pulumi"; /** * The AWS::NeptuneGraph::PrivateGraphEndpoint resource creates an Amazon NeptuneGraph PrivateGraphEndpoint. */ export declare class PrivateGraphEndpoint extends pulumi.CustomResource { /** * Get an existing PrivateGraphEndpoint 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: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): PrivateGraphEndpoint; /** * Returns true if the given object is an instance of PrivateGraphEndpoint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PrivateGraphEndpoint; /** * The auto-generated Graph Id assigned by the service. */ readonly graphIdentifier: pulumi.Output<string>; /** * PrivateGraphEndpoint resource identifier generated by concatenating the associated GraphIdentifier and VpcId with an underscore separator. * * For example, if GraphIdentifier is `g-12a3bcdef4` and VpcId is `vpc-0a12bc34567de8f90`, the generated PrivateGraphEndpointIdentifier will be `g-12a3bcdef4_vpc-0a12bc34567de8f90` */ readonly privateGraphEndpointIdentifier: pulumi.Output<string>; /** * The security group Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC. */ readonly securityGroupIds: pulumi.Output<string[] | undefined>; /** * The subnet Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC. */ readonly subnetIds: pulumi.Output<string[] | undefined>; /** * VPC endpoint that provides a private connection between the Graph and specified VPC. */ readonly vpcEndpointId: pulumi.Output<string>; /** * The VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC. */ readonly vpcId: pulumi.Output<string>; /** * Create a PrivateGraphEndpoint 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: string, args: PrivateGraphEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a PrivateGraphEndpoint resource. */ export interface PrivateGraphEndpointArgs { /** * The auto-generated Graph Id assigned by the service. */ graphIdentifier: pulumi.Input<string>; /** * The security group Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC. */ securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>; /** * The subnet Ids associated with the VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC. */ subnetIds?: pulumi.Input<pulumi.Input<string>[]>; /** * The VPC where you want the private graph endpoint to be created, ie, the graph will be reachable from within the VPC. */ vpcId: pulumi.Input<string>; }