@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)
61 lines (60 loc) • 1.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Resource Type definition for AWS::SageMaker::App
*/
export declare function getApp(args: GetAppArgs, opts?: pulumi.InvokeOptions): Promise<GetAppResult>;
export interface GetAppArgs {
/**
* The name of the app.
*/
appName: string;
/**
* The type of app.
*/
appType: enums.sagemaker.AppType;
/**
* The domain ID.
*/
domainId: string;
/**
* The user profile name.
*/
userProfileName: string;
}
export interface GetAppResult {
/**
* The Amazon Resource Name (ARN) of the app.
*/
readonly appArn?: string;
/**
* The lifecycle configuration that runs before the default lifecycle configuration.
*/
readonly builtInLifecycleConfigArn?: string;
/**
* Indicates whether the application is launched in recovery mode.
*/
readonly recoveryMode?: boolean;
}
/**
* Resource Type definition for AWS::SageMaker::App
*/
export declare function getAppOutput(args: GetAppOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppResult>;
export interface GetAppOutputArgs {
/**
* The name of the app.
*/
appName: pulumi.Input<string>;
/**
* The type of app.
*/
appType: pulumi.Input<enums.sagemaker.AppType>;
/**
* The domain ID.
*/
domainId: pulumi.Input<string>;
/**
* The user profile name.
*/
userProfileName: pulumi.Input<string>;
}