@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)
41 lines (40 loc) • 1.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource schema for AWS::AppFlow::Connector
*/
export declare function getConnector(args: GetConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectorResult>;
export interface GetConnectorArgs {
/**
* The name of the connector. The name is unique for each ConnectorRegistration in your AWS account.
*/
connectorLabel: string;
}
export interface GetConnectorResult {
/**
* The arn of the connector. The arn is unique for each ConnectorRegistration in your AWS account.
*/
readonly connectorArn?: string;
/**
* Contains information about the configuration of the connector being registered.
*/
readonly connectorProvisioningConfig?: outputs.appflow.ConnectorProvisioningConfig;
/**
* The provisioning type of the connector. Currently the only supported value is LAMBDA.
*/
readonly connectorProvisioningType?: string;
/**
* A description about the connector that's being registered.
*/
readonly description?: string;
}
/**
* Resource schema for AWS::AppFlow::Connector
*/
export declare function getConnectorOutput(args: GetConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectorResult>;
export interface GetConnectorOutputArgs {
/**
* The name of the connector. The name is unique for each ConnectorRegistration in your AWS account.
*/
connectorLabel: pulumi.Input<string>;
}