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)

49 lines (48 loc) 1.39 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::EventSchemas::Discoverer */ export declare function getDiscoverer(args: GetDiscovererArgs, opts?: pulumi.InvokeOptions): Promise<GetDiscovererResult>; export interface GetDiscovererArgs { /** * The ARN of the discoverer. */ discovererArn: string; } export interface GetDiscovererResult { /** * Defines whether event schemas from other accounts are discovered. Default is True. */ readonly crossAccount?: boolean; /** * A description for the discoverer. */ readonly description?: string; /** * The ARN of the discoverer. */ readonly discovererArn?: string; /** * The Id of the discoverer. */ readonly discovererId?: string; /** * Defines the current state of the discoverer. */ readonly state?: string; /** * Tags associated with the resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::EventSchemas::Discoverer */ export declare function getDiscovererOutput(args: GetDiscovererOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDiscovererResult>; export interface GetDiscovererOutputArgs { /** * The ARN of the discoverer. */ discovererArn: pulumi.Input<string>; }