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.72 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * <p>Represents a channel group that facilitates the grouping of multiple channels.</p> */ export declare function getChannelGroup(args: GetChannelGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetChannelGroupResult>; export interface GetChannelGroupArgs { /** * <p>The Amazon Resource Name (ARN) associated with the resource.</p> */ arn: string; } export interface GetChannelGroupResult { /** * <p>The Amazon Resource Name (ARN) associated with the resource.</p> */ readonly arn?: string; /** * <p>The date and time the channel group was created.</p> */ readonly createdAt?: string; /** * <p>Enter any descriptive text that helps you to identify the channel group.</p> */ readonly description?: string; /** * <p>The output domain where the source stream should be sent. Integrate the domain with a downstream CDN (such as Amazon CloudFront) or playback device.</p> */ readonly egressDomain?: string; /** * <p>The date and time the channel group was modified.</p> */ readonly modifiedAt?: string; /** * The tags associated with the channel group. */ readonly tags?: outputs.Tag[]; } /** * <p>Represents a channel group that facilitates the grouping of multiple channels.</p> */ export declare function getChannelGroupOutput(args: GetChannelGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetChannelGroupResult>; export interface GetChannelGroupOutputArgs { /** * <p>The Amazon Resource Name (ARN) associated with the resource.</p> */ arn: pulumi.Input<string>; }