diff --git a/.changelog/01da546fab7941e2b37ad8aa3cea91b6.json b/.changelog/01da546fab7941e2b37ad8aa3cea91b6.json new file mode 100644 index 00000000000..b830a825930 --- /dev/null +++ b/.changelog/01da546fab7941e2b37ad8aa3cea91b6.json @@ -0,0 +1,8 @@ +{ + "id": "01da546f-ab79-41e2-b37a-d8aa3cea91b6", + "type": "feature", + "description": "This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.", + "modules": [ + "service/sagemaker" + ] +} \ No newline at end of file diff --git a/service/sagemaker/types/enums.go b/service/sagemaker/types/enums.go index fb25550680f..443d885e4e2 100644 --- a/service/sagemaker/types/enums.go +++ b/service/sagemaker/types/enums.go @@ -33,6 +33,7 @@ type AdditionalS3DataSourceDataType string // Enum values for AdditionalS3DataSourceDataType const ( AdditionalS3DataSourceDataTypeS3object AdditionalS3DataSourceDataType = "S3Object" + AdditionalS3DataSourceDataTypeS3prefix AdditionalS3DataSourceDataType = "S3Prefix" ) // Values returns all known values for AdditionalS3DataSourceDataType. Note that @@ -42,6 +43,7 @@ const ( func (AdditionalS3DataSourceDataType) Values() []AdditionalS3DataSourceDataType { return []AdditionalS3DataSourceDataType{ "S3Object", + "S3Prefix", } } @@ -356,17 +358,11 @@ const ( AppTypeKernelGateway AppType = "KernelGateway" AppTypeDetailedProfiler AppType = "DetailedProfiler" AppTypeTensorBoard AppType = "TensorBoard" - AppTypeVSCode AppType = "VSCode" - AppTypeSavitur AppType = "Savitur" AppTypeCodeEditor AppType = "CodeEditor" AppTypeJupyterLab AppType = "JupyterLab" AppTypeRStudioServerPro AppType = "RStudioServerPro" - AppTypeRSession AppType = "RSession" AppTypeRSessionGateway AppType = "RSessionGateway" AppTypeCanvas AppType = "Canvas" - AppTypeDatasetManager AppType = "DatasetManager" - AppTypeSageMakerLite AppType = "SageMakerLite" - AppTypeLocal AppType = "Local" ) // Values returns all known values for AppType. Note that this can be expanded in @@ -378,17 +374,11 @@ func (AppType) Values() []AppType { "KernelGateway", "DetailedProfiler", "TensorBoard", - "VSCode", - "Savitur", "CodeEditor", "JupyterLab", "RStudioServerPro", - "RSession", "RSessionGateway", "Canvas", - "DatasetManager", - "SageMakerLite", - "Local", } } @@ -5904,8 +5894,6 @@ type StudioLifecycleConfigAppType string const ( StudioLifecycleConfigAppTypeJupyterServer StudioLifecycleConfigAppType = "JupyterServer" StudioLifecycleConfigAppTypeKernelGateway StudioLifecycleConfigAppType = "KernelGateway" - StudioLifecycleConfigAppTypeVSCode StudioLifecycleConfigAppType = "VSCode" - StudioLifecycleConfigAppTypeSavitur StudioLifecycleConfigAppType = "Savitur" StudioLifecycleConfigAppTypeCodeEditor StudioLifecycleConfigAppType = "CodeEditor" StudioLifecycleConfigAppTypeJupyterLab StudioLifecycleConfigAppType = "JupyterLab" ) @@ -5918,8 +5906,6 @@ func (StudioLifecycleConfigAppType) Values() []StudioLifecycleConfigAppType { return []StudioLifecycleConfigAppType{ "JupyterServer", "KernelGateway", - "VSCode", - "Savitur", "CodeEditor", "JupyterLab", }