@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.93 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Definition of AWS::Deadline::Monitor Resource Type
*/
export declare function getMonitor(args: GetMonitorArgs, opts?: pulumi.InvokeOptions): Promise<GetMonitorResult>;
export interface GetMonitorArgs {
/**
* The Amazon Resource Name (ARN) of the monitor.
*/
arn: string;
}
export interface GetMonitorResult {
/**
* The Amazon Resource Name (ARN) of the monitor.
*/
readonly arn?: string;
/**
* The name of the monitor that displays on the Deadline Cloud console.
*
* > This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
*/
readonly displayName?: string;
/**
* The Amazon Resource Name (ARN) that the IAM Identity Center assigned to the monitor when it was created.
*/
readonly identityCenterApplicationArn?: string;
/**
* The unique identifier for the monitor.
*/
readonly monitorId?: string;
/**
* The Amazon Resource Name (ARN) of the IAM role for the monitor. Users of the monitor use this role to access Deadline Cloud resources.
*/
readonly roleArn?: string;
/**
* The subdomain used for the monitor URL. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.
*/
readonly subdomain?: string;
/**
* The complete URL of the monitor. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.
*/
readonly url?: string;
}
/**
* Definition of AWS::Deadline::Monitor Resource Type
*/
export declare function getMonitorOutput(args: GetMonitorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMonitorResult>;
export interface GetMonitorOutputArgs {
/**
* The Amazon Resource Name (ARN) of the monitor.
*/
arn: pulumi.Input<string>;
}