Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

@aws-cdk/aws-sagemaker

Package Overview
Dependencies
Maintainers
4
Versions
285
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-cdk/aws-sagemaker - npm Package Compare versions

Comparing version 0.20.0 to 0.21.0

399

lib/sagemaker.generated.d.ts
import cdk = require('@aws-cdk/cdk');
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html
*/
export interface CfnEndpointProps {
/**
* ``AWS::SageMaker::Endpoint.EndpointConfigName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointconfigname
*/
endpointConfigName: string | cdk.Token;
/**
* ``AWS::SageMaker::Endpoint.EndpointName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-endpointname
*/
endpointName?: string | cdk.Token;
/**
* ``AWS::SageMaker::Endpoint.Tags``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html#cfn-sagemaker-endpoint-tags
*/
tags?: Array<cdk.Tag | cdk.Token> | cdk.Token;
}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html
*/
export declare class CfnEndpoint extends cdk.Resource {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly resourceTypeName = "AWS::SageMaker::Endpoint";
/**
* @cloudformation_attribute EndpointName
*/
readonly endpointName: string;
readonly endpointArn: string;
/**
* Creates a new ``AWS::SageMaker::Endpoint``.
*
* @param parent the ``cdk.Construct`` this ``CfnEndpoint`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``CfnEndpoint``
*/
constructor(parent: cdk.Construct, name: string, properties: CfnEndpointProps);
readonly propertyOverrides: CfnEndpointProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
export declare namespace cloudformation {

@@ -24,2 +70,3 @@ /**

/**
* @deprecated "cloudformation.EndpointResource" will be deprecated in a future release in favor of "CfnEndpoint" (see https://github.com/awslabs/aws-cdk/issues/878)
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpoint.html

@@ -51,2 +98,90 @@ */

}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html
*/
export interface CfnEndpointConfigProps {
/**
* ``AWS::SageMaker::EndpointConfig.ProductionVariants``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-productionvariants
*/
productionVariants: Array<CfnEndpointConfig.ProductionVariantProperty | cdk.Token> | cdk.Token;
/**
* ``AWS::SageMaker::EndpointConfig.EndpointConfigName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-endpointconfigname
*/
endpointConfigName?: string | cdk.Token;
/**
* ``AWS::SageMaker::EndpointConfig.KmsKeyId``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-kmskeyid
*/
kmsKeyId?: string | cdk.Token;
/**
* ``AWS::SageMaker::EndpointConfig.Tags``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html#cfn-sagemaker-endpointconfig-tags
*/
tags?: Array<cdk.Tag | cdk.Token> | cdk.Token;
}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html
*/
export declare class CfnEndpointConfig extends cdk.Resource {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly resourceTypeName = "AWS::SageMaker::EndpointConfig";
/**
* @cloudformation_attribute EndpointConfigName
*/
readonly endpointConfigName: string;
readonly endpointConfigArn: string;
/**
* Creates a new ``AWS::SageMaker::EndpointConfig``.
*
* @param parent the ``cdk.Construct`` this ``CfnEndpointConfig`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``CfnEndpointConfig``
*/
constructor(parent: cdk.Construct, name: string, properties: CfnEndpointConfigProps);
readonly propertyOverrides: CfnEndpointConfigProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
export declare namespace CfnEndpointConfig {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html
*/
interface ProductionVariantProperty {
/**
* ``CfnEndpointConfig.ProductionVariantProperty.AcceleratorType``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-acceleratortype
*/
acceleratorType?: string | cdk.Token;
/**
* ``CfnEndpointConfig.ProductionVariantProperty.InitialInstanceCount``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-initialinstancecount
*/
initialInstanceCount: number | cdk.Token;
/**
* ``CfnEndpointConfig.ProductionVariantProperty.InitialVariantWeight``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-initialvariantweight
*/
initialVariantWeight: number | cdk.Token;
/**
* ``CfnEndpointConfig.ProductionVariantProperty.InstanceType``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-instancetype
*/
instanceType: string | cdk.Token;
/**
* ``CfnEndpointConfig.ProductionVariantProperty.ModelName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-modelname
*/
modelName: string | cdk.Token;
/**
* ``CfnEndpointConfig.ProductionVariantProperty.VariantName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-variantname
*/
variantName: string | cdk.Token;
}
}
export declare namespace cloudformation {

@@ -79,2 +214,3 @@ /**

/**
* @deprecated "cloudformation.EndpointConfigResource" will be deprecated in a future release in favor of "CfnEndpointConfig" (see https://github.com/awslabs/aws-cdk/issues/878)
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-endpointconfig.html

@@ -111,2 +247,7 @@ */

/**
* ``EndpointConfigResource.ProductionVariantProperty.AcceleratorType``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-acceleratortype
*/
acceleratorType?: string | cdk.Token;
/**
* ``EndpointConfigResource.ProductionVariantProperty.InitialInstanceCount``

@@ -139,2 +280,107 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-productionvariant.html#cfn-sagemaker-endpointconfig-productionvariant-initialinstancecount

}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html
*/
export interface CfnModelProps {
/**
* ``AWS::SageMaker::Model.ExecutionRoleArn``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-executionrolearn
*/
executionRoleArn: string | cdk.Token;
/**
* ``AWS::SageMaker::Model.Containers``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-containers
*/
containers?: Array<CfnModel.ContainerDefinitionProperty | cdk.Token> | cdk.Token;
/**
* ``AWS::SageMaker::Model.ModelName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-modelname
*/
modelName?: string | cdk.Token;
/**
* ``AWS::SageMaker::Model.PrimaryContainer``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-primarycontainer
*/
primaryContainer?: CfnModel.ContainerDefinitionProperty | cdk.Token;
/**
* ``AWS::SageMaker::Model.Tags``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-tags
*/
tags?: Array<cdk.Tag | cdk.Token> | cdk.Token;
/**
* ``AWS::SageMaker::Model.VpcConfig``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-vpcconfig
*/
vpcConfig?: CfnModel.VpcConfigProperty | cdk.Token;
}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html
*/
export declare class CfnModel extends cdk.Resource {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly resourceTypeName = "AWS::SageMaker::Model";
/**
* @cloudformation_attribute ModelName
*/
readonly modelName: string;
readonly modelArn: string;
/**
* Creates a new ``AWS::SageMaker::Model``.
*
* @param parent the ``cdk.Construct`` this ``CfnModel`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``CfnModel``
*/
constructor(parent: cdk.Construct, name: string, properties: CfnModelProps);
readonly propertyOverrides: CfnModelProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
export declare namespace CfnModel {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html
*/
interface ContainerDefinitionProperty {
/**
* ``CfnModel.ContainerDefinitionProperty.ContainerHostname``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-containerhostname
*/
containerHostname?: string | cdk.Token;
/**
* ``CfnModel.ContainerDefinitionProperty.Environment``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-environment
*/
environment?: object | cdk.Token;
/**
* ``CfnModel.ContainerDefinitionProperty.Image``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-image
*/
image: string | cdk.Token;
/**
* ``CfnModel.ContainerDefinitionProperty.ModelDataUrl``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-containerdefinition.html#cfn-sagemaker-model-containerdefinition-modeldataurl
*/
modelDataUrl?: string | cdk.Token;
}
}
export declare namespace CfnModel {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-vpcconfig.html
*/
interface VpcConfigProperty {
/**
* ``CfnModel.VpcConfigProperty.SecurityGroupIds``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-vpcconfig.html#cfn-sagemaker-model-vpcconfig-securitygroupids
*/
securityGroupIds: Array<string | cdk.Token> | cdk.Token;
/**
* ``CfnModel.VpcConfigProperty.Subnets``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-vpcconfig.html#cfn-sagemaker-model-vpcconfig-subnets
*/
subnets: Array<string | cdk.Token> | cdk.Token;
}
}
export declare namespace cloudformation {

@@ -151,6 +397,6 @@ /**

/**
* ``AWS::SageMaker::Model.PrimaryContainer``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-primarycontainer
* ``AWS::SageMaker::Model.Containers``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-containers
*/
primaryContainer: ModelResource.ContainerDefinitionProperty | cdk.Token;
containers?: Array<ModelResource.ContainerDefinitionProperty | cdk.Token> | cdk.Token;
/**

@@ -162,2 +408,7 @@ * ``AWS::SageMaker::Model.ModelName``

/**
* ``AWS::SageMaker::Model.PrimaryContainer``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-primarycontainer
*/
primaryContainer?: ModelResource.ContainerDefinitionProperty | cdk.Token;
/**
* ``AWS::SageMaker::Model.Tags``

@@ -174,2 +425,3 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html#cfn-sagemaker-model-tags

/**
* @deprecated "cloudformation.ModelResource" will be deprecated in a future release in favor of "CfnModel" (see https://github.com/awslabs/aws-cdk/issues/878)
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-model.html

@@ -245,2 +497,83 @@ */

}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html
*/
export interface CfnNotebookInstanceProps {
/**
* ``AWS::SageMaker::NotebookInstance.InstanceType``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-instancetype
*/
instanceType: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.RoleArn``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-rolearn
*/
roleArn: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.DirectInternetAccess``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-directinternetaccess
*/
directInternetAccess?: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.KmsKeyId``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-kmskeyid
*/
kmsKeyId?: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.LifecycleConfigName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-lifecycleconfigname
*/
lifecycleConfigName?: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.NotebookInstanceName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-notebookinstancename
*/
notebookInstanceName?: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.SecurityGroupIds``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-securitygroupids
*/
securityGroupIds?: Array<string | cdk.Token> | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.SubnetId``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-subnetid
*/
subnetId?: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.Tags``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-tags
*/
tags?: Array<cdk.Tag | cdk.Token> | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstance.VolumeSizeInGB``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html#cfn-sagemaker-notebookinstance-volumesizeingb
*/
volumeSizeInGb?: number | cdk.Token;
}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html
*/
export declare class CfnNotebookInstance extends cdk.Resource {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly resourceTypeName = "AWS::SageMaker::NotebookInstance";
/**
* @cloudformation_attribute NotebookInstanceName
*/
readonly notebookInstanceName: string;
readonly notebookInstanceArn: string;
/**
* Creates a new ``AWS::SageMaker::NotebookInstance``.
*
* @param parent the ``cdk.Construct`` this ``CfnNotebookInstance`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``CfnNotebookInstance``
*/
constructor(parent: cdk.Construct, name: string, properties: CfnNotebookInstanceProps);
readonly propertyOverrides: CfnNotebookInstanceProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
export declare namespace cloudformation {

@@ -303,2 +636,3 @@ /**

/**
* @deprecated "cloudformation.NotebookInstanceResource" will be deprecated in a future release in favor of "CfnNotebookInstance" (see https://github.com/awslabs/aws-cdk/issues/878)
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html

@@ -330,2 +664,60 @@ */

}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html
*/
export interface CfnNotebookInstanceLifecycleConfigProps {
/**
* ``AWS::SageMaker::NotebookInstanceLifecycleConfig.NotebookInstanceLifecycleConfigName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecycleconfigname
*/
notebookInstanceLifecycleConfigName?: string | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstanceLifecycleConfig.OnCreate``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-oncreate
*/
onCreate?: Array<CfnNotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHookProperty | cdk.Token> | cdk.Token;
/**
* ``AWS::SageMaker::NotebookInstanceLifecycleConfig.OnStart``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html#cfn-sagemaker-notebookinstancelifecycleconfig-onstart
*/
onStart?: Array<CfnNotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHookProperty | cdk.Token> | cdk.Token;
}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html
*/
export declare class CfnNotebookInstanceLifecycleConfig extends cdk.Resource {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly resourceTypeName = "AWS::SageMaker::NotebookInstanceLifecycleConfig";
/**
* @cloudformation_attribute NotebookInstanceLifecycleConfigName
*/
readonly notebookInstanceLifecycleConfigName: string;
readonly notebookInstanceLifecycleConfigArn: string;
/**
* Creates a new ``AWS::SageMaker::NotebookInstanceLifecycleConfig``.
*
* @param parent the ``cdk.Construct`` this ``CfnNotebookInstanceLifecycleConfig`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``CfnNotebookInstanceLifecycleConfig``
*/
constructor(parent: cdk.Construct, name: string, properties?: CfnNotebookInstanceLifecycleConfigProps);
readonly propertyOverrides: CfnNotebookInstanceLifecycleConfigProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
export declare namespace CfnNotebookInstanceLifecycleConfig {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecyclehook.html
*/
interface NotebookInstanceLifecycleHookProperty {
/**
* ``CfnNotebookInstanceLifecycleConfig.NotebookInstanceLifecycleHookProperty.Content``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecyclehook.html#cfn-sagemaker-notebookinstancelifecycleconfig-notebookinstancelifecyclehook-content
*/
content?: string | cdk.Token;
}
}
export declare namespace cloudformation {

@@ -353,2 +745,3 @@ /**

/**
* @deprecated "cloudformation.NotebookInstanceLifecycleConfigResource" will be deprecated in a future release in favor of "CfnNotebookInstanceLifecycleConfig" (see https://github.com/awslabs/aws-cdk/issues/878)
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstancelifecycleconfig.html

@@ -355,0 +748,0 @@ */

17

package.json
{
"name": "@aws-cdk/aws-sagemaker",
"version": "0.20.0",
"version": "0.21.0",
"description": "The CDK Construct Library for AWS::SageMaker",

@@ -56,13 +56,16 @@ "main": "lib/index.js",

"devDependencies": {
"@aws-cdk/assert": "^0.20.0",
"cdk-build-tools": "^0.20.0",
"cfn2ts": "^0.20.0",
"pkglint": "^0.20.0"
"@aws-cdk/assert": "^0.21.0",
"cdk-build-tools": "^0.21.0",
"cfn2ts": "^0.21.0",
"pkglint": "^0.21.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.20.0"
"@aws-cdk/cdk": "^0.21.0"
},
"peerDependencies": {
"@aws-cdk/cdk": "^0.20.0"
"@aws-cdk/cdk": "^0.21.0"
},
"engines": {
"node": ">= 8.10.0"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc