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.54 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * A segment definition resource of Amazon Connect Customer Profiles */ export declare function getSegmentDefinition(args: GetSegmentDefinitionArgs, opts?: pulumi.InvokeOptions): Promise<GetSegmentDefinitionResult>; export interface GetSegmentDefinitionArgs { /** * The unique name of the domain. */ domainName: string; /** * The unique name of the segment definition. */ segmentDefinitionName: string; } export interface GetSegmentDefinitionResult { /** * The time of this segment definition got created. */ readonly createdAt?: string; /** * The description of the segment definition. */ readonly description?: string; /** * The Amazon Resource Name (ARN) of the segment definition. */ readonly segmentDefinitionArn?: string; /** * The tags used to organize, track, or control access for this resource. */ readonly tags?: outputs.Tag[]; } /** * A segment definition resource of Amazon Connect Customer Profiles */ export declare function getSegmentDefinitionOutput(args: GetSegmentDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSegmentDefinitionResult>; export interface GetSegmentDefinitionOutputArgs { /** * The unique name of the domain. */ domainName: pulumi.Input<string>; /** * The unique name of the segment definition. */ segmentDefinitionName: pulumi.Input<string>; }