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)

54 lines (53 loc) 1.65 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * An Event Stream resource of Amazon Connect Customer Profiles */ export declare function getEventStream(args: GetEventStreamArgs, opts?: pulumi.InvokeOptions): Promise<GetEventStreamResult>; export interface GetEventStreamArgs { /** * The unique name of the domain. */ domainName: string; /** * The name of the event stream. */ eventStreamName: string; } export interface GetEventStreamResult { /** * The timestamp of when the export was created. */ readonly createdAt?: string; /** * Details regarding the Kinesis stream. */ readonly destinationDetails?: outputs.customerprofiles.DestinationDetailsProperties; /** * A unique identifier for the event stream. */ readonly eventStreamArn?: string; /** * The operational state of destination stream for export. */ readonly state?: enums.customerprofiles.EventStreamState; /** * The tags used to organize, track, or control access for this resource. */ readonly tags?: outputs.Tag[]; } /** * An Event Stream resource of Amazon Connect Customer Profiles */ export declare function getEventStreamOutput(args: GetEventStreamOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEventStreamResult>; export interface GetEventStreamOutputArgs { /** * The unique name of the domain. */ domainName: pulumi.Input<string>; /** * The name of the event stream. */ eventStreamName: pulumi.Input<string>; }