@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)
57 lines (56 loc) • 1.65 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::Glue::Integration
*/
export declare function getIntegration(args: GetIntegrationArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationResult>;
export interface GetIntegrationArgs {
/**
* The Amazon Resource Name (ARN) of the integration.
*/
integrationArn: string;
/**
* The name of the integration.
*/
integrationName: string;
}
export interface GetIntegrationResult {
/**
* The time (UTC) when the integration was created.
*/
readonly createTime?: string;
/**
* Selects source tables for the integration using Maxwell filter syntax.
*/
readonly dataFilter?: string;
/**
* A description for the integration.
*/
readonly description?: string;
/**
* The Amazon Resource Name (ARN) of the integration.
*/
readonly integrationArn?: string;
/**
* The status of the integration.
*/
readonly status?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::Glue::Integration
*/
export declare function getIntegrationOutput(args: GetIntegrationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationResult>;
export interface GetIntegrationOutputArgs {
/**
* The Amazon Resource Name (ARN) of the integration.
*/
integrationArn: pulumi.Input<string>;
/**
* The name of the integration.
*/
integrationName: pulumi.Input<string>;
}