@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)
81 lines (80 loc) • 2.7 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Definition of AWS::MediaLive::SignalMap Resource Type
*/
export declare function getSignalMap(args: GetSignalMapArgs, opts?: pulumi.InvokeOptions): Promise<GetSignalMapResult>;
export interface GetSignalMapArgs {
identifier: string;
}
export interface GetSignalMapResult {
/**
* A signal map's ARN (Amazon Resource Name)
*/
readonly arn?: string;
/**
* An alarm template group's id.
*/
readonly cloudWatchAlarmTemplateGroupIds?: string[];
/**
* The date and time of resource creation.
*/
readonly createdAt?: string;
/**
* A resource's optional description.
*/
readonly description?: string;
/**
* A top-level supported AWS resource ARN to discovery a signal map from.
*/
readonly discoveryEntryPointArn?: string;
/**
* Error message associated with a failed creation or failed update attempt of a signal map.
*/
readonly errorMessage?: string;
/**
* An eventbridge rule template group's id.
*/
readonly eventBridgeRuleTemplateGroupIds?: string[];
readonly failedMediaResourceMap?: {
[key: string]: outputs.medialive.SignalMapMediaResource;
};
/**
* A signal map's id.
*/
readonly id?: string;
readonly identifier?: string;
/**
* The date and time of latest discovery.
*/
readonly lastDiscoveredAt?: string;
readonly lastSuccessfulMonitorDeployment?: outputs.medialive.SignalMapSuccessfulMonitorDeployment;
readonly mediaResourceMap?: {
[key: string]: outputs.medialive.SignalMapMediaResource;
};
/**
* The date and time of latest resource modification.
*/
readonly modifiedAt?: string;
/**
* If true, there are pending monitor changes for this signal map that can be deployed.
*/
readonly monitorChangesPendingDeployment?: boolean;
readonly monitorDeployment?: outputs.medialive.SignalMapMonitorDeployment;
/**
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
*/
readonly name?: string;
/**
* A signal map's current status, which is dependent on its lifecycle actions or associated jobs.
*/
readonly status?: enums.medialive.SignalMapStatus;
}
/**
* Definition of AWS::MediaLive::SignalMap Resource Type
*/
export declare function getSignalMapOutput(args: GetSignalMapOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSignalMapResult>;
export interface GetSignalMapOutputArgs {
identifier: pulumi.Input<string>;
}