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)

29 lines (28 loc) 1.11 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2 */ export declare function getDataflowEndpointGroupV2(args: GetDataflowEndpointGroupV2Args, opts?: pulumi.InvokeOptions): Promise<GetDataflowEndpointGroupV2Result>; export interface GetDataflowEndpointGroupV2Args { id: string; } export interface GetDataflowEndpointGroupV2Result { readonly arn?: string; /** * Information about the endpoint details. */ readonly endpointDetails?: outputs.groundstation.DataflowEndpointGroupV2EndpointDetails[]; readonly id?: string; /** * Tags assigned to a resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2 */ export declare function getDataflowEndpointGroupV2Output(args: GetDataflowEndpointGroupV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDataflowEndpointGroupV2Result>; export interface GetDataflowEndpointGroupV2OutputArgs { id: pulumi.Input<string>; }