typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
44 lines (43 loc) • 2.36 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type NotebookInstanceLifecycleConfig_Type = 'AWS::SageMaker::NotebookInstanceLifecycleConfig';
export declare const NotebookInstanceLifecycleConfig_Type = "AWS::SageMaker::NotebookInstanceLifecycleConfig";
/**
* Resource Type definition for
* AWS::SageMaker::NotebookInstanceLifecycleConfig {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html}
*/
export default function NotebookInstanceLifecycleConfig(props: NotebookInstanceLifecycleConfig_Properties): CfnResource<NotebookInstanceLifecycleConfig_Properties>;
/**
* Resource Type definition for
* AWS::SageMaker::NotebookInstanceLifecycleConfig {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html}
*/
export declare type NotebookInstanceLifecycleConfig_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-onstart}
*/
OnStart?: NotebookInstanceLifecycleHook[];
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecycleconfigname}
*/
NotebookInstanceLifecycleConfigName?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-oncreate}
*/
OnCreate?: NotebookInstanceLifecycleHook[];
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecyclehook.html}
*/
export declare type NotebookInstanceLifecycleHook = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecyclehook.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecyclehook-content}
*/
Content?: Resolvable<string>;
};