aws-sdk-sagemaker 1.303.0 → 1.305.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +37 -10
- data/lib/aws-sdk-sagemaker/client_api.rb +271 -254
- data/lib/aws-sdk-sagemaker/types.rb +114 -19
- data/lib/aws-sdk-sagemaker/waiters.rb +76 -76
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +22 -2
- data/sig/types.rbs +15 -1
- metadata +1 -1
@@ -1976,6 +1976,7 @@ module Aws::SageMaker
|
|
1976
1976
|
RedshiftResultFormat = Shapes::StringShape.new(name: 'RedshiftResultFormat')
|
1977
1977
|
RedshiftUserName = Shapes::StringShape.new(name: 'RedshiftUserName')
|
1978
1978
|
ReferenceMinVersion = Shapes::StringShape.new(name: 'ReferenceMinVersion')
|
1979
|
+
RegionName = Shapes::StringShape.new(name: 'RegionName')
|
1979
1980
|
RegisterDevicesRequest = Shapes::StructureShape.new(name: 'RegisterDevicesRequest')
|
1980
1981
|
RegisterModelStepMetadata = Shapes::StructureShape.new(name: 'RegisterModelStepMetadata')
|
1981
1982
|
Relation = Shapes::StringShape.new(name: 'Relation')
|
@@ -2390,6 +2391,10 @@ module Aws::SageMaker
|
|
2390
2391
|
UiTemplate = Shapes::StructureShape.new(name: 'UiTemplate')
|
2391
2392
|
UiTemplateInfo = Shapes::StructureShape.new(name: 'UiTemplateInfo')
|
2392
2393
|
Uid = Shapes::IntegerShape.new(name: 'Uid')
|
2394
|
+
UnifiedStudioDomainId = Shapes::StringShape.new(name: 'UnifiedStudioDomainId')
|
2395
|
+
UnifiedStudioEnvironmentId = Shapes::StringShape.new(name: 'UnifiedStudioEnvironmentId')
|
2396
|
+
UnifiedStudioProjectId = Shapes::StringShape.new(name: 'UnifiedStudioProjectId')
|
2397
|
+
UnifiedStudioSettings = Shapes::StructureShape.new(name: 'UnifiedStudioSettings')
|
2393
2398
|
UpdateActionRequest = Shapes::StructureShape.new(name: 'UpdateActionRequest')
|
2394
2399
|
UpdateActionResponse = Shapes::StructureShape.new(name: 'UpdateActionResponse')
|
2395
2400
|
UpdateAppImageConfigRequest = Shapes::StructureShape.new(name: 'UpdateAppImageConfigRequest')
|
@@ -2596,7 +2601,7 @@ module Aws::SageMaker
|
|
2596
2601
|
AdditionalS3DataSource.struct_class = Types::AdditionalS3DataSource
|
2597
2602
|
|
2598
2603
|
AgentVersion.add_member(:version, Shapes::ShapeRef.new(shape: EdgeVersion, required: true, location_name: "Version"))
|
2599
|
-
AgentVersion.add_member(:agent_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "AgentCount"))
|
2604
|
+
AgentVersion.add_member(:agent_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "AgentCount", metadata: {"box" => true}))
|
2600
2605
|
AgentVersion.struct_class = Types::AgentVersion
|
2601
2606
|
|
2602
2607
|
AgentVersions.member = Shapes::ShapeRef.new(shape: AgentVersion)
|
@@ -2616,7 +2621,7 @@ module Aws::SageMaker
|
|
2616
2621
|
AlgorithmSpecification.add_member(:algorithm_name, Shapes::ShapeRef.new(shape: ArnOrName, location_name: "AlgorithmName"))
|
2617
2622
|
AlgorithmSpecification.add_member(:training_input_mode, Shapes::ShapeRef.new(shape: TrainingInputMode, required: true, location_name: "TrainingInputMode"))
|
2618
2623
|
AlgorithmSpecification.add_member(:metric_definitions, Shapes::ShapeRef.new(shape: MetricDefinitionList, location_name: "MetricDefinitions"))
|
2619
|
-
AlgorithmSpecification.add_member(:enable_sage_maker_metrics_time_series, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableSageMakerMetricsTimeSeries"))
|
2624
|
+
AlgorithmSpecification.add_member(:enable_sage_maker_metrics_time_series, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableSageMakerMetricsTimeSeries", metadata: {"box" => true}))
|
2620
2625
|
AlgorithmSpecification.add_member(:container_entrypoint, Shapes::ShapeRef.new(shape: TrainingContainerEntrypoint, location_name: "ContainerEntrypoint"))
|
2621
2626
|
AlgorithmSpecification.add_member(:container_arguments, Shapes::ShapeRef.new(shape: TrainingContainerArguments, location_name: "ContainerArguments"))
|
2622
2627
|
AlgorithmSpecification.add_member(:training_image_config, Shapes::ShapeRef.new(shape: TrainingImageConfig, location_name: "TrainingImageConfig"))
|
@@ -2917,7 +2922,7 @@ module Aws::SageMaker
|
|
2917
2922
|
AutoMLS3DataSource.struct_class = Types::AutoMLS3DataSource
|
2918
2923
|
|
2919
2924
|
AutoMLSecurityConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
2920
|
-
AutoMLSecurityConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
2925
|
+
AutoMLSecurityConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption", metadata: {"box" => true}))
|
2921
2926
|
AutoMLSecurityConfig.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
2922
2927
|
AutoMLSecurityConfig.struct_class = Types::AutoMLSecurityConfig
|
2923
2928
|
|
@@ -2937,7 +2942,7 @@ module Aws::SageMaker
|
|
2937
2942
|
|
2938
2943
|
BatchDataCaptureConfig.add_member(:destination_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "DestinationS3Uri"))
|
2939
2944
|
BatchDataCaptureConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
2940
|
-
BatchDataCaptureConfig.add_member(:generate_inference_id, Shapes::ShapeRef.new(shape: Boolean, location_name: "GenerateInferenceId"))
|
2945
|
+
BatchDataCaptureConfig.add_member(:generate_inference_id, Shapes::ShapeRef.new(shape: Boolean, location_name: "GenerateInferenceId", metadata: {"box" => true}))
|
2941
2946
|
BatchDataCaptureConfig.struct_class = Types::BatchDataCaptureConfig
|
2942
2947
|
|
2943
2948
|
BatchDeleteClusterNodesError.add_member(:code, Shapes::ShapeRef.new(shape: BatchDeleteClusterNodesErrorCode, required: true, location_name: "Code"))
|
@@ -3083,7 +3088,7 @@ module Aws::SageMaker
|
|
3083
3088
|
|
3084
3089
|
ChannelSpecification.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, required: true, location_name: "Name"))
|
3085
3090
|
ChannelSpecification.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "Description"))
|
3086
|
-
ChannelSpecification.add_member(:is_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRequired"))
|
3091
|
+
ChannelSpecification.add_member(:is_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRequired", metadata: {"box" => true}))
|
3087
3092
|
ChannelSpecification.add_member(:supported_content_types, Shapes::ShapeRef.new(shape: ContentTypes, required: true, location_name: "SupportedContentTypes"))
|
3088
3093
|
ChannelSpecification.add_member(:supported_compression_types, Shapes::ShapeRef.new(shape: CompressionTypes, location_name: "SupportedCompressionTypes"))
|
3089
3094
|
ChannelSpecification.add_member(:supported_input_modes, Shapes::ShapeRef.new(shape: InputModes, required: true, location_name: "SupportedInputModes"))
|
@@ -3103,8 +3108,8 @@ module Aws::SageMaker
|
|
3103
3108
|
ClarifyCheckStepMetadata.add_member(:model_package_group_name, Shapes::ShapeRef.new(shape: String256, location_name: "ModelPackageGroupName"))
|
3104
3109
|
ClarifyCheckStepMetadata.add_member(:violation_report, Shapes::ShapeRef.new(shape: String1024, location_name: "ViolationReport"))
|
3105
3110
|
ClarifyCheckStepMetadata.add_member(:check_job_arn, Shapes::ShapeRef.new(shape: String256, location_name: "CheckJobArn"))
|
3106
|
-
ClarifyCheckStepMetadata.add_member(:skip_check, Shapes::ShapeRef.new(shape: Boolean, location_name: "SkipCheck"))
|
3107
|
-
ClarifyCheckStepMetadata.add_member(:register_new_baseline, Shapes::ShapeRef.new(shape: Boolean, location_name: "RegisterNewBaseline"))
|
3111
|
+
ClarifyCheckStepMetadata.add_member(:skip_check, Shapes::ShapeRef.new(shape: Boolean, location_name: "SkipCheck", metadata: {"box" => true}))
|
3112
|
+
ClarifyCheckStepMetadata.add_member(:register_new_baseline, Shapes::ShapeRef.new(shape: Boolean, location_name: "RegisterNewBaseline", metadata: {"box" => true}))
|
3108
3113
|
ClarifyCheckStepMetadata.struct_class = Types::ClarifyCheckStepMetadata
|
3109
3114
|
|
3110
3115
|
ClarifyExplainerConfig.add_member(:enable_explanations, Shapes::ShapeRef.new(shape: ClarifyEnableExplanations, location_name: "EnableExplanations"))
|
@@ -3241,7 +3246,7 @@ module Aws::SageMaker
|
|
3241
3246
|
|
3242
3247
|
ClusterSchedulerConfigSummary.add_member(:cluster_scheduler_config_arn, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigArn, required: true, location_name: "ClusterSchedulerConfigArn"))
|
3243
3248
|
ClusterSchedulerConfigSummary.add_member(:cluster_scheduler_config_id, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigId, required: true, location_name: "ClusterSchedulerConfigId"))
|
3244
|
-
ClusterSchedulerConfigSummary.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ClusterSchedulerConfigVersion"))
|
3249
|
+
ClusterSchedulerConfigSummary.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ClusterSchedulerConfigVersion", metadata: {"box" => true}))
|
3245
3250
|
ClusterSchedulerConfigSummary.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "Name"))
|
3246
3251
|
ClusterSchedulerConfigSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
3247
3252
|
ClusterSchedulerConfigSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
@@ -3340,7 +3345,7 @@ module Aws::SageMaker
|
|
3340
3345
|
ComputeQuotaSummary.add_member(:compute_quota_arn, Shapes::ShapeRef.new(shape: ComputeQuotaArn, required: true, location_name: "ComputeQuotaArn"))
|
3341
3346
|
ComputeQuotaSummary.add_member(:compute_quota_id, Shapes::ShapeRef.new(shape: ComputeQuotaId, required: true, location_name: "ComputeQuotaId"))
|
3342
3347
|
ComputeQuotaSummary.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "Name"))
|
3343
|
-
ComputeQuotaSummary.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ComputeQuotaVersion"))
|
3348
|
+
ComputeQuotaSummary.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ComputeQuotaVersion", metadata: {"box" => true}))
|
3344
3349
|
ComputeQuotaSummary.add_member(:status, Shapes::ShapeRef.new(shape: SchedulerResourceStatus, required: true, location_name: "Status"))
|
3345
3350
|
ComputeQuotaSummary.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, location_name: "ClusterArn"))
|
3346
3351
|
ComputeQuotaSummary.add_member(:compute_quota_config, Shapes::ShapeRef.new(shape: ComputeQuotaConfig, location_name: "ComputeQuotaConfig"))
|
@@ -3438,7 +3443,7 @@ module Aws::SageMaker
|
|
3438
3443
|
CreateAlgorithmInput.add_member(:training_specification, Shapes::ShapeRef.new(shape: TrainingSpecification, required: true, location_name: "TrainingSpecification"))
|
3439
3444
|
CreateAlgorithmInput.add_member(:inference_specification, Shapes::ShapeRef.new(shape: InferenceSpecification, location_name: "InferenceSpecification"))
|
3440
3445
|
CreateAlgorithmInput.add_member(:validation_specification, Shapes::ShapeRef.new(shape: AlgorithmValidationSpecification, location_name: "ValidationSpecification"))
|
3441
|
-
CreateAlgorithmInput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace"))
|
3446
|
+
CreateAlgorithmInput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace", metadata: {"box" => true}))
|
3442
3447
|
CreateAlgorithmInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3443
3448
|
CreateAlgorithmInput.struct_class = Types::CreateAlgorithmInput
|
3444
3449
|
|
@@ -3462,7 +3467,7 @@ module Aws::SageMaker
|
|
3462
3467
|
CreateAppRequest.add_member(:app_name, Shapes::ShapeRef.new(shape: AppName, required: true, location_name: "AppName"))
|
3463
3468
|
CreateAppRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3464
3469
|
CreateAppRequest.add_member(:resource_spec, Shapes::ShapeRef.new(shape: ResourceSpec, location_name: "ResourceSpec"))
|
3465
|
-
CreateAppRequest.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: Boolean, location_name: "RecoveryMode"))
|
3470
|
+
CreateAppRequest.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: Boolean, location_name: "RecoveryMode", metadata: {"box" => true}))
|
3466
3471
|
CreateAppRequest.struct_class = Types::CreateAppRequest
|
3467
3472
|
|
3468
3473
|
CreateAppResponse.add_member(:app_arn, Shapes::ShapeRef.new(shape: AppArn, location_name: "AppArn"))
|
@@ -3486,7 +3491,7 @@ module Aws::SageMaker
|
|
3486
3491
|
CreateAutoMLJobRequest.add_member(:auto_ml_job_objective, Shapes::ShapeRef.new(shape: AutoMLJobObjective, location_name: "AutoMLJobObjective"))
|
3487
3492
|
CreateAutoMLJobRequest.add_member(:auto_ml_job_config, Shapes::ShapeRef.new(shape: AutoMLJobConfig, location_name: "AutoMLJobConfig"))
|
3488
3493
|
CreateAutoMLJobRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
3489
|
-
CreateAutoMLJobRequest.add_member(:generate_candidate_definitions_only, Shapes::ShapeRef.new(shape: GenerateCandidateDefinitionsOnly, location_name: "GenerateCandidateDefinitionsOnly"))
|
3494
|
+
CreateAutoMLJobRequest.add_member(:generate_candidate_definitions_only, Shapes::ShapeRef.new(shape: GenerateCandidateDefinitionsOnly, location_name: "GenerateCandidateDefinitionsOnly", metadata: {"box" => true}))
|
3490
3495
|
CreateAutoMLJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3491
3496
|
CreateAutoMLJobRequest.add_member(:model_deploy_config, Shapes::ShapeRef.new(shape: ModelDeployConfig, location_name: "ModelDeployConfig"))
|
3492
3497
|
CreateAutoMLJobRequest.struct_class = Types::CreateAutoMLJobRequest
|
@@ -3654,7 +3659,7 @@ module Aws::SageMaker
|
|
3654
3659
|
CreateEndpointConfigInput.add_member(:shadow_production_variants, Shapes::ShapeRef.new(shape: ProductionVariantList, location_name: "ShadowProductionVariants"))
|
3655
3660
|
CreateEndpointConfigInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ExecutionRoleArn"))
|
3656
3661
|
CreateEndpointConfigInput.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
3657
|
-
CreateEndpointConfigInput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
3662
|
+
CreateEndpointConfigInput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
3658
3663
|
CreateEndpointConfigInput.struct_class = Types::CreateEndpointConfigInput
|
3659
3664
|
|
3660
3665
|
CreateEndpointConfigOutput.add_member(:endpoint_config_arn, Shapes::ShapeRef.new(shape: EndpointConfigArn, required: true, location_name: "EndpointConfigArn"))
|
@@ -3766,7 +3771,7 @@ module Aws::SageMaker
|
|
3766
3771
|
CreateImageVersionRequest.add_member(:ml_framework, Shapes::ShapeRef.new(shape: MLFramework, location_name: "MLFramework"))
|
3767
3772
|
CreateImageVersionRequest.add_member(:programming_lang, Shapes::ShapeRef.new(shape: ProgrammingLang, location_name: "ProgrammingLang"))
|
3768
3773
|
CreateImageVersionRequest.add_member(:processor, Shapes::ShapeRef.new(shape: Processor, location_name: "Processor"))
|
3769
|
-
CreateImageVersionRequest.add_member(:horovod, Shapes::ShapeRef.new(shape: Horovod, location_name: "Horovod"))
|
3774
|
+
CreateImageVersionRequest.add_member(:horovod, Shapes::ShapeRef.new(shape: Horovod, location_name: "Horovod", metadata: {"box" => true}))
|
3770
3775
|
CreateImageVersionRequest.add_member(:release_notes, Shapes::ShapeRef.new(shape: ReleaseNotes, location_name: "ReleaseNotes"))
|
3771
3776
|
CreateImageVersionRequest.struct_class = Types::CreateImageVersionRequest
|
3772
3777
|
|
@@ -3833,7 +3838,7 @@ module Aws::SageMaker
|
|
3833
3838
|
CreateMlflowTrackingServerRequest.add_member(:tracking_server_size, Shapes::ShapeRef.new(shape: TrackingServerSize, location_name: "TrackingServerSize"))
|
3834
3839
|
CreateMlflowTrackingServerRequest.add_member(:mlflow_version, Shapes::ShapeRef.new(shape: MlflowVersion, location_name: "MlflowVersion"))
|
3835
3840
|
CreateMlflowTrackingServerRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
3836
|
-
CreateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration"))
|
3841
|
+
CreateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration", metadata: {"box" => true}))
|
3837
3842
|
CreateMlflowTrackingServerRequest.add_member(:weekly_maintenance_window_start, Shapes::ShapeRef.new(shape: WeeklyMaintenanceWindowStart, location_name: "WeeklyMaintenanceWindowStart"))
|
3838
3843
|
CreateMlflowTrackingServerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3839
3844
|
CreateMlflowTrackingServerRequest.struct_class = Types::CreateMlflowTrackingServerRequest
|
@@ -3857,7 +3862,7 @@ module Aws::SageMaker
|
|
3857
3862
|
CreateModelBiasJobDefinitionResponse.struct_class = Types::CreateModelBiasJobDefinitionResponse
|
3858
3863
|
|
3859
3864
|
CreateModelCardExportJobRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: ModelCardNameOrArn, required: true, location_name: "ModelCardName"))
|
3860
|
-
CreateModelCardExportJobRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion"))
|
3865
|
+
CreateModelCardExportJobRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
3861
3866
|
CreateModelCardExportJobRequest.add_member(:model_card_export_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardExportJobName"))
|
3862
3867
|
CreateModelCardExportJobRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: ModelCardExportOutputConfig, required: true, location_name: "OutputConfig"))
|
3863
3868
|
CreateModelCardExportJobRequest.struct_class = Types::CreateModelCardExportJobRequest
|
@@ -3897,7 +3902,7 @@ module Aws::SageMaker
|
|
3897
3902
|
CreateModelInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ExecutionRoleArn"))
|
3898
3903
|
CreateModelInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3899
3904
|
CreateModelInput.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
3900
|
-
CreateModelInput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
3905
|
+
CreateModelInput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
3901
3906
|
CreateModelInput.struct_class = Types::CreateModelInput
|
3902
3907
|
|
3903
3908
|
CreateModelOutput.add_member(:model_arn, Shapes::ShapeRef.new(shape: ModelArn, required: true, location_name: "ModelArn"))
|
@@ -3917,7 +3922,7 @@ module Aws::SageMaker
|
|
3917
3922
|
CreateModelPackageInput.add_member(:inference_specification, Shapes::ShapeRef.new(shape: InferenceSpecification, location_name: "InferenceSpecification"))
|
3918
3923
|
CreateModelPackageInput.add_member(:validation_specification, Shapes::ShapeRef.new(shape: ModelPackageValidationSpecification, location_name: "ValidationSpecification"))
|
3919
3924
|
CreateModelPackageInput.add_member(:source_algorithm_specification, Shapes::ShapeRef.new(shape: SourceAlgorithmSpecification, location_name: "SourceAlgorithmSpecification"))
|
3920
|
-
CreateModelPackageInput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace"))
|
3925
|
+
CreateModelPackageInput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace", metadata: {"box" => true}))
|
3921
3926
|
CreateModelPackageInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3922
3927
|
CreateModelPackageInput.add_member(:model_approval_status, Shapes::ShapeRef.new(shape: ModelApprovalStatus, location_name: "ModelApprovalStatus"))
|
3923
3928
|
CreateModelPackageInput.add_member(:metadata_properties, Shapes::ShapeRef.new(shape: MetadataProperties, location_name: "MetadataProperties"))
|
@@ -4023,7 +4028,7 @@ module Aws::SageMaker
|
|
4023
4028
|
CreatePartnerAppRequest.add_member(:tier, Shapes::ShapeRef.new(shape: NonEmptyString64, required: true, location_name: "Tier"))
|
4024
4029
|
CreatePartnerAppRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: PartnerAppConfig, location_name: "ApplicationConfig"))
|
4025
4030
|
CreatePartnerAppRequest.add_member(:auth_type, Shapes::ShapeRef.new(shape: PartnerAppAuthType, required: true, location_name: "AuthType"))
|
4026
|
-
CreatePartnerAppRequest.add_member(:enable_iam_session_based_identity, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableIamSessionBasedIdentity"))
|
4031
|
+
CreatePartnerAppRequest.add_member(:enable_iam_session_based_identity, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableIamSessionBasedIdentity", metadata: {"box" => true}))
|
4027
4032
|
CreatePartnerAppRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
4028
4033
|
CreatePartnerAppRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4029
4034
|
CreatePartnerAppRequest.struct_class = Types::CreatePartnerAppRequest
|
@@ -4128,9 +4133,9 @@ module Aws::SageMaker
|
|
4128
4133
|
CreateTrainingJobRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
4129
4134
|
CreateTrainingJobRequest.add_member(:stopping_condition, Shapes::ShapeRef.new(shape: StoppingCondition, required: true, location_name: "StoppingCondition"))
|
4130
4135
|
CreateTrainingJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4131
|
-
CreateTrainingJobRequest.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
4132
|
-
CreateTrainingJobRequest.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
4133
|
-
CreateTrainingJobRequest.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining"))
|
4136
|
+
CreateTrainingJobRequest.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
4137
|
+
CreateTrainingJobRequest.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption", metadata: {"box" => true}))
|
4138
|
+
CreateTrainingJobRequest.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining", metadata: {"box" => true}))
|
4134
4139
|
CreateTrainingJobRequest.add_member(:checkpoint_config, Shapes::ShapeRef.new(shape: CheckpointConfig, location_name: "CheckpointConfig"))
|
4135
4140
|
CreateTrainingJobRequest.add_member(:debug_hook_config, Shapes::ShapeRef.new(shape: DebugHookConfig, location_name: "DebugHookConfig"))
|
4136
4141
|
CreateTrainingJobRequest.add_member(:debug_rule_configurations, Shapes::ShapeRef.new(shape: DebugRuleConfigurations, location_name: "DebugRuleConfigurations"))
|
@@ -4257,7 +4262,7 @@ module Aws::SageMaker
|
|
4257
4262
|
CustomFileSystems.member = Shapes::ShapeRef.new(shape: CustomFileSystem)
|
4258
4263
|
|
4259
4264
|
CustomImage.add_member(:image_name, Shapes::ShapeRef.new(shape: ImageName, required: true, location_name: "ImageName"))
|
4260
|
-
CustomImage.add_member(:image_version_number, Shapes::ShapeRef.new(shape: ImageVersionNumber, location_name: "ImageVersionNumber"
|
4265
|
+
CustomImage.add_member(:image_version_number, Shapes::ShapeRef.new(shape: ImageVersionNumber, location_name: "ImageVersionNumber"))
|
4261
4266
|
CustomImage.add_member(:app_image_config_name, Shapes::ShapeRef.new(shape: AppImageConfigName, required: true, location_name: "AppImageConfigName"))
|
4262
4267
|
CustomImage.struct_class = Types::CustomImage
|
4263
4268
|
|
@@ -4284,7 +4289,7 @@ module Aws::SageMaker
|
|
4284
4289
|
CustomizedMetricSpecification.add_member(:statistic, Shapes::ShapeRef.new(shape: Statistic, location_name: "Statistic"))
|
4285
4290
|
CustomizedMetricSpecification.struct_class = Types::CustomizedMetricSpecification
|
4286
4291
|
|
4287
|
-
DataCaptureConfig.add_member(:enable_capture, Shapes::ShapeRef.new(shape: EnableCapture, location_name: "EnableCapture"))
|
4292
|
+
DataCaptureConfig.add_member(:enable_capture, Shapes::ShapeRef.new(shape: EnableCapture, location_name: "EnableCapture", metadata: {"box" => true}))
|
4288
4293
|
DataCaptureConfig.add_member(:initial_sampling_percentage, Shapes::ShapeRef.new(shape: SamplingPercentage, required: true, location_name: "InitialSamplingPercentage"))
|
4289
4294
|
DataCaptureConfig.add_member(:destination_s3_uri, Shapes::ShapeRef.new(shape: DestinationS3Uri, required: true, location_name: "DestinationS3Uri"))
|
4290
4295
|
DataCaptureConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
@@ -4292,7 +4297,7 @@ module Aws::SageMaker
|
|
4292
4297
|
DataCaptureConfig.add_member(:capture_content_type_header, Shapes::ShapeRef.new(shape: CaptureContentTypeHeader, location_name: "CaptureContentTypeHeader"))
|
4293
4298
|
DataCaptureConfig.struct_class = Types::DataCaptureConfig
|
4294
4299
|
|
4295
|
-
DataCaptureConfigSummary.add_member(:enable_capture, Shapes::ShapeRef.new(shape: EnableCapture, required: true, location_name: "EnableCapture"))
|
4300
|
+
DataCaptureConfigSummary.add_member(:enable_capture, Shapes::ShapeRef.new(shape: EnableCapture, required: true, location_name: "EnableCapture", metadata: {"box" => true}))
|
4296
4301
|
DataCaptureConfigSummary.add_member(:capture_status, Shapes::ShapeRef.new(shape: CaptureStatus, required: true, location_name: "CaptureStatus"))
|
4297
4302
|
DataCaptureConfigSummary.add_member(:current_sampling_percentage, Shapes::ShapeRef.new(shape: SamplingPercentage, required: true, location_name: "CurrentSamplingPercentage"))
|
4298
4303
|
DataCaptureConfigSummary.add_member(:destination_s3_uri, Shapes::ShapeRef.new(shape: DestinationS3Uri, required: true, location_name: "DestinationS3Uri"))
|
@@ -4348,7 +4353,7 @@ module Aws::SageMaker
|
|
4348
4353
|
DebugRuleConfiguration.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3OutputPath"))
|
4349
4354
|
DebugRuleConfiguration.add_member(:rule_evaluator_image, Shapes::ShapeRef.new(shape: AlgorithmImage, required: true, location_name: "RuleEvaluatorImage"))
|
4350
4355
|
DebugRuleConfiguration.add_member(:instance_type, Shapes::ShapeRef.new(shape: ProcessingInstanceType, location_name: "InstanceType"))
|
4351
|
-
DebugRuleConfiguration.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: OptionalVolumeSizeInGB, location_name: "VolumeSizeInGB"))
|
4356
|
+
DebugRuleConfiguration.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: OptionalVolumeSizeInGB, location_name: "VolumeSizeInGB", metadata: {"box" => true}))
|
4352
4357
|
DebugRuleConfiguration.add_member(:rule_parameters, Shapes::ShapeRef.new(shape: RuleParameters, location_name: "RuleParameters"))
|
4353
4358
|
DebugRuleConfiguration.struct_class = Types::DebugRuleConfiguration
|
4354
4359
|
|
@@ -4614,7 +4619,7 @@ module Aws::SageMaker
|
|
4614
4619
|
DeleteWorkteamRequest.add_member(:workteam_name, Shapes::ShapeRef.new(shape: WorkteamName, required: true, location_name: "WorkteamName"))
|
4615
4620
|
DeleteWorkteamRequest.struct_class = Types::DeleteWorkteamRequest
|
4616
4621
|
|
4617
|
-
DeleteWorkteamResponse.add_member(:success, Shapes::ShapeRef.new(shape: Success, required: true, location_name: "Success"))
|
4622
|
+
DeleteWorkteamResponse.add_member(:success, Shapes::ShapeRef.new(shape: Success, required: true, location_name: "Success", metadata: {"box" => true}))
|
4618
4623
|
DeleteWorkteamResponse.struct_class = Types::DeleteWorkteamResponse
|
4619
4624
|
|
4620
4625
|
DeployedImage.add_member(:specified_image, Shapes::ShapeRef.new(shape: ContainerImage, location_name: "SpecifiedImage"))
|
@@ -4691,7 +4696,7 @@ module Aws::SageMaker
|
|
4691
4696
|
DescribeAlgorithmOutput.add_member(:algorithm_status, Shapes::ShapeRef.new(shape: AlgorithmStatus, required: true, location_name: "AlgorithmStatus"))
|
4692
4697
|
DescribeAlgorithmOutput.add_member(:algorithm_status_details, Shapes::ShapeRef.new(shape: AlgorithmStatusDetails, required: true, location_name: "AlgorithmStatusDetails"))
|
4693
4698
|
DescribeAlgorithmOutput.add_member(:product_id, Shapes::ShapeRef.new(shape: ProductId, location_name: "ProductId"))
|
4694
|
-
DescribeAlgorithmOutput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace"))
|
4699
|
+
DescribeAlgorithmOutput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace", metadata: {"box" => true}))
|
4695
4700
|
DescribeAlgorithmOutput.struct_class = Types::DescribeAlgorithmOutput
|
4696
4701
|
|
4697
4702
|
DescribeAppImageConfigRequest.add_member(:app_image_config_name, Shapes::ShapeRef.new(shape: AppImageConfigName, required: true, location_name: "AppImageConfigName"))
|
@@ -4720,7 +4725,7 @@ module Aws::SageMaker
|
|
4720
4725
|
DescribeAppResponse.add_member(:user_profile_name, Shapes::ShapeRef.new(shape: UserProfileName, location_name: "UserProfileName"))
|
4721
4726
|
DescribeAppResponse.add_member(:space_name, Shapes::ShapeRef.new(shape: SpaceName, location_name: "SpaceName"))
|
4722
4727
|
DescribeAppResponse.add_member(:status, Shapes::ShapeRef.new(shape: AppStatus, location_name: "Status"))
|
4723
|
-
DescribeAppResponse.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: Boolean, location_name: "RecoveryMode"))
|
4728
|
+
DescribeAppResponse.add_member(:recovery_mode, Shapes::ShapeRef.new(shape: Boolean, location_name: "RecoveryMode", metadata: {"box" => true}))
|
4724
4729
|
DescribeAppResponse.add_member(:last_health_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastHealthCheckTimestamp"))
|
4725
4730
|
DescribeAppResponse.add_member(:last_user_activity_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUserActivityTimestamp"))
|
4726
4731
|
DescribeAppResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
@@ -4764,7 +4769,7 @@ module Aws::SageMaker
|
|
4764
4769
|
DescribeAutoMLJobResponse.add_member(:best_candidate, Shapes::ShapeRef.new(shape: AutoMLCandidate, location_name: "BestCandidate"))
|
4765
4770
|
DescribeAutoMLJobResponse.add_member(:auto_ml_job_status, Shapes::ShapeRef.new(shape: AutoMLJobStatus, required: true, location_name: "AutoMLJobStatus"))
|
4766
4771
|
DescribeAutoMLJobResponse.add_member(:auto_ml_job_secondary_status, Shapes::ShapeRef.new(shape: AutoMLJobSecondaryStatus, required: true, location_name: "AutoMLJobSecondaryStatus"))
|
4767
|
-
DescribeAutoMLJobResponse.add_member(:generate_candidate_definitions_only, Shapes::ShapeRef.new(shape: GenerateCandidateDefinitionsOnly, location_name: "GenerateCandidateDefinitionsOnly"))
|
4772
|
+
DescribeAutoMLJobResponse.add_member(:generate_candidate_definitions_only, Shapes::ShapeRef.new(shape: GenerateCandidateDefinitionsOnly, location_name: "GenerateCandidateDefinitionsOnly", metadata: {"box" => true}))
|
4768
4773
|
DescribeAutoMLJobResponse.add_member(:auto_ml_job_artifacts, Shapes::ShapeRef.new(shape: AutoMLJobArtifacts, location_name: "AutoMLJobArtifacts"))
|
4769
4774
|
DescribeAutoMLJobResponse.add_member(:resolved_attributes, Shapes::ShapeRef.new(shape: ResolvedAttributes, location_name: "ResolvedAttributes"))
|
4770
4775
|
DescribeAutoMLJobResponse.add_member(:model_deploy_config, Shapes::ShapeRef.new(shape: ModelDeployConfig, location_name: "ModelDeployConfig"))
|
@@ -4821,13 +4826,13 @@ module Aws::SageMaker
|
|
4821
4826
|
DescribeClusterResponse.struct_class = Types::DescribeClusterResponse
|
4822
4827
|
|
4823
4828
|
DescribeClusterSchedulerConfigRequest.add_member(:cluster_scheduler_config_id, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigId, required: true, location_name: "ClusterSchedulerConfigId"))
|
4824
|
-
DescribeClusterSchedulerConfigRequest.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ClusterSchedulerConfigVersion"))
|
4829
|
+
DescribeClusterSchedulerConfigRequest.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ClusterSchedulerConfigVersion", metadata: {"box" => true}))
|
4825
4830
|
DescribeClusterSchedulerConfigRequest.struct_class = Types::DescribeClusterSchedulerConfigRequest
|
4826
4831
|
|
4827
4832
|
DescribeClusterSchedulerConfigResponse.add_member(:cluster_scheduler_config_arn, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigArn, required: true, location_name: "ClusterSchedulerConfigArn"))
|
4828
4833
|
DescribeClusterSchedulerConfigResponse.add_member(:cluster_scheduler_config_id, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigId, required: true, location_name: "ClusterSchedulerConfigId"))
|
4829
4834
|
DescribeClusterSchedulerConfigResponse.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "Name"))
|
4830
|
-
DescribeClusterSchedulerConfigResponse.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ClusterSchedulerConfigVersion"))
|
4835
|
+
DescribeClusterSchedulerConfigResponse.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ClusterSchedulerConfigVersion", metadata: {"box" => true}))
|
4831
4836
|
DescribeClusterSchedulerConfigResponse.add_member(:status, Shapes::ShapeRef.new(shape: SchedulerResourceStatus, required: true, location_name: "Status"))
|
4832
4837
|
DescribeClusterSchedulerConfigResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
|
4833
4838
|
DescribeClusterSchedulerConfigResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, location_name: "ClusterArn"))
|
@@ -4873,14 +4878,14 @@ module Aws::SageMaker
|
|
4873
4878
|
DescribeCompilationJobResponse.struct_class = Types::DescribeCompilationJobResponse
|
4874
4879
|
|
4875
4880
|
DescribeComputeQuotaRequest.add_member(:compute_quota_id, Shapes::ShapeRef.new(shape: ComputeQuotaId, required: true, location_name: "ComputeQuotaId"))
|
4876
|
-
DescribeComputeQuotaRequest.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ComputeQuotaVersion"))
|
4881
|
+
DescribeComputeQuotaRequest.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ComputeQuotaVersion", metadata: {"box" => true}))
|
4877
4882
|
DescribeComputeQuotaRequest.struct_class = Types::DescribeComputeQuotaRequest
|
4878
4883
|
|
4879
4884
|
DescribeComputeQuotaResponse.add_member(:compute_quota_arn, Shapes::ShapeRef.new(shape: ComputeQuotaArn, required: true, location_name: "ComputeQuotaArn"))
|
4880
4885
|
DescribeComputeQuotaResponse.add_member(:compute_quota_id, Shapes::ShapeRef.new(shape: ComputeQuotaId, required: true, location_name: "ComputeQuotaId"))
|
4881
4886
|
DescribeComputeQuotaResponse.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "Name"))
|
4882
4887
|
DescribeComputeQuotaResponse.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "Description"))
|
4883
|
-
DescribeComputeQuotaResponse.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ComputeQuotaVersion"))
|
4888
|
+
DescribeComputeQuotaResponse.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ComputeQuotaVersion", metadata: {"box" => true}))
|
4884
4889
|
DescribeComputeQuotaResponse.add_member(:status, Shapes::ShapeRef.new(shape: SchedulerResourceStatus, required: true, location_name: "Status"))
|
4885
4890
|
DescribeComputeQuotaResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
|
4886
4891
|
DescribeComputeQuotaResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, location_name: "ClusterArn"))
|
@@ -4951,7 +4956,7 @@ module Aws::SageMaker
|
|
4951
4956
|
DescribeDeviceResponse.add_member(:registration_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "RegistrationTime"))
|
4952
4957
|
DescribeDeviceResponse.add_member(:latest_heartbeat, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LatestHeartbeat"))
|
4953
4958
|
DescribeDeviceResponse.add_member(:models, Shapes::ShapeRef.new(shape: EdgeModels, location_name: "Models"))
|
4954
|
-
DescribeDeviceResponse.add_member(:max_models, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxModels"))
|
4959
|
+
DescribeDeviceResponse.add_member(:max_models, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxModels", metadata: {"box" => true}))
|
4955
4960
|
DescribeDeviceResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4956
4961
|
DescribeDeviceResponse.add_member(:agent_version, Shapes::ShapeRef.new(shape: EdgeVersion, location_name: "AgentVersion"))
|
4957
4962
|
DescribeDeviceResponse.struct_class = Types::DescribeDeviceResponse
|
@@ -4986,16 +4991,16 @@ module Aws::SageMaker
|
|
4986
4991
|
|
4987
4992
|
DescribeEdgeDeploymentPlanRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
4988
4993
|
DescribeEdgeDeploymentPlanRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4989
|
-
DescribeEdgeDeploymentPlanRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DeploymentStageMaxResults, location_name: "MaxResults"))
|
4994
|
+
DescribeEdgeDeploymentPlanRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DeploymentStageMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
4990
4995
|
DescribeEdgeDeploymentPlanRequest.struct_class = Types::DescribeEdgeDeploymentPlanRequest
|
4991
4996
|
|
4992
4997
|
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_plan_arn, Shapes::ShapeRef.new(shape: EdgeDeploymentPlanArn, required: true, location_name: "EdgeDeploymentPlanArn"))
|
4993
4998
|
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
4994
4999
|
DescribeEdgeDeploymentPlanResponse.add_member(:model_configs, Shapes::ShapeRef.new(shape: EdgeDeploymentModelConfigs, required: true, location_name: "ModelConfigs"))
|
4995
5000
|
DescribeEdgeDeploymentPlanResponse.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
4996
|
-
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_success, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentSuccess"))
|
4997
|
-
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_pending, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentPending"))
|
4998
|
-
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_failed, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentFailed"))
|
5001
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_success, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentSuccess", metadata: {"box" => true}))
|
5002
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_pending, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentPending", metadata: {"box" => true}))
|
5003
|
+
DescribeEdgeDeploymentPlanResponse.add_member(:edge_deployment_failed, Shapes::ShapeRef.new(shape: Integer, location_name: "EdgeDeploymentFailed", metadata: {"box" => true}))
|
4999
5004
|
DescribeEdgeDeploymentPlanResponse.add_member(:stages, Shapes::ShapeRef.new(shape: DeploymentStageStatusSummaries, required: true, location_name: "Stages"))
|
5000
5005
|
DescribeEdgeDeploymentPlanResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5001
5006
|
DescribeEdgeDeploymentPlanResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
@@ -5036,7 +5041,7 @@ module Aws::SageMaker
|
|
5036
5041
|
DescribeEndpointConfigOutput.add_member(:shadow_production_variants, Shapes::ShapeRef.new(shape: ProductionVariantList, location_name: "ShadowProductionVariants"))
|
5037
5042
|
DescribeEndpointConfigOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ExecutionRoleArn"))
|
5038
5043
|
DescribeEndpointConfigOutput.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
5039
|
-
DescribeEndpointConfigOutput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
5044
|
+
DescribeEndpointConfigOutput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
5040
5045
|
DescribeEndpointConfigOutput.struct_class = Types::DescribeEndpointConfigOutput
|
5041
5046
|
|
5042
5047
|
DescribeEndpointInput.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location_name: "EndpointName"))
|
@@ -5234,7 +5239,7 @@ module Aws::SageMaker
|
|
5234
5239
|
DescribeImageVersionResponse.add_member(:ml_framework, Shapes::ShapeRef.new(shape: MLFramework, location_name: "MLFramework"))
|
5235
5240
|
DescribeImageVersionResponse.add_member(:programming_lang, Shapes::ShapeRef.new(shape: ProgrammingLang, location_name: "ProgrammingLang"))
|
5236
5241
|
DescribeImageVersionResponse.add_member(:processor, Shapes::ShapeRef.new(shape: Processor, location_name: "Processor"))
|
5237
|
-
DescribeImageVersionResponse.add_member(:horovod, Shapes::ShapeRef.new(shape: Horovod, location_name: "Horovod"))
|
5242
|
+
DescribeImageVersionResponse.add_member(:horovod, Shapes::ShapeRef.new(shape: Horovod, location_name: "Horovod", metadata: {"box" => true}))
|
5238
5243
|
DescribeImageVersionResponse.add_member(:release_notes, Shapes::ShapeRef.new(shape: ReleaseNotes, location_name: "ReleaseNotes"))
|
5239
5244
|
DescribeImageVersionResponse.struct_class = Types::DescribeImageVersionResponse
|
5240
5245
|
|
@@ -5344,7 +5349,7 @@ module Aws::SageMaker
|
|
5344
5349
|
DescribeMlflowTrackingServerResponse.add_member(:is_active, Shapes::ShapeRef.new(shape: IsTrackingServerActive, location_name: "IsActive"))
|
5345
5350
|
DescribeMlflowTrackingServerResponse.add_member(:tracking_server_url, Shapes::ShapeRef.new(shape: TrackingServerUrl, location_name: "TrackingServerUrl"))
|
5346
5351
|
DescribeMlflowTrackingServerResponse.add_member(:weekly_maintenance_window_start, Shapes::ShapeRef.new(shape: WeeklyMaintenanceWindowStart, location_name: "WeeklyMaintenanceWindowStart"))
|
5347
|
-
DescribeMlflowTrackingServerResponse.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration"))
|
5352
|
+
DescribeMlflowTrackingServerResponse.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration", metadata: {"box" => true}))
|
5348
5353
|
DescribeMlflowTrackingServerResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
5349
5354
|
DescribeMlflowTrackingServerResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
5350
5355
|
DescribeMlflowTrackingServerResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
@@ -5374,7 +5379,7 @@ module Aws::SageMaker
|
|
5374
5379
|
DescribeModelCardExportJobResponse.add_member(:model_card_export_job_arn, Shapes::ShapeRef.new(shape: ModelCardExportJobArn, required: true, location_name: "ModelCardExportJobArn"))
|
5375
5380
|
DescribeModelCardExportJobResponse.add_member(:status, Shapes::ShapeRef.new(shape: ModelCardExportJobStatus, required: true, location_name: "Status"))
|
5376
5381
|
DescribeModelCardExportJobResponse.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
|
5377
|
-
DescribeModelCardExportJobResponse.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion"))
|
5382
|
+
DescribeModelCardExportJobResponse.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
5378
5383
|
DescribeModelCardExportJobResponse.add_member(:output_config, Shapes::ShapeRef.new(shape: ModelCardExportOutputConfig, required: true, location_name: "OutputConfig"))
|
5379
5384
|
DescribeModelCardExportJobResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
5380
5385
|
DescribeModelCardExportJobResponse.add_member(:last_modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedAt"))
|
@@ -5383,12 +5388,12 @@ module Aws::SageMaker
|
|
5383
5388
|
DescribeModelCardExportJobResponse.struct_class = Types::DescribeModelCardExportJobResponse
|
5384
5389
|
|
5385
5390
|
DescribeModelCardRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: ModelCardNameOrArn, required: true, location_name: "ModelCardName"))
|
5386
|
-
DescribeModelCardRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion"))
|
5391
|
+
DescribeModelCardRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
5387
5392
|
DescribeModelCardRequest.struct_class = Types::DescribeModelCardRequest
|
5388
5393
|
|
5389
5394
|
DescribeModelCardResponse.add_member(:model_card_arn, Shapes::ShapeRef.new(shape: ModelCardArn, required: true, location_name: "ModelCardArn"))
|
5390
5395
|
DescribeModelCardResponse.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
|
5391
|
-
DescribeModelCardResponse.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion"))
|
5396
|
+
DescribeModelCardResponse.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
5392
5397
|
DescribeModelCardResponse.add_member(:content, Shapes::ShapeRef.new(shape: ModelCardContent, required: true, location_name: "Content"))
|
5393
5398
|
DescribeModelCardResponse.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, required: true, location_name: "ModelCardStatus"))
|
5394
5399
|
DescribeModelCardResponse.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelCardSecurityConfig, location_name: "SecurityConfig"))
|
@@ -5426,7 +5431,7 @@ module Aws::SageMaker
|
|
5426
5431
|
DescribeModelOutput.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
5427
5432
|
DescribeModelOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
5428
5433
|
DescribeModelOutput.add_member(:model_arn, Shapes::ShapeRef.new(shape: ModelArn, required: true, location_name: "ModelArn"))
|
5429
|
-
DescribeModelOutput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
5434
|
+
DescribeModelOutput.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
5430
5435
|
DescribeModelOutput.add_member(:deployment_recommendation, Shapes::ShapeRef.new(shape: DeploymentRecommendation, location_name: "DeploymentRecommendation"))
|
5431
5436
|
DescribeModelOutput.struct_class = Types::DescribeModelOutput
|
5432
5437
|
|
@@ -5455,7 +5460,7 @@ module Aws::SageMaker
|
|
5455
5460
|
DescribeModelPackageOutput.add_member(:validation_specification, Shapes::ShapeRef.new(shape: ModelPackageValidationSpecification, location_name: "ValidationSpecification"))
|
5456
5461
|
DescribeModelPackageOutput.add_member(:model_package_status, Shapes::ShapeRef.new(shape: ModelPackageStatus, required: true, location_name: "ModelPackageStatus"))
|
5457
5462
|
DescribeModelPackageOutput.add_member(:model_package_status_details, Shapes::ShapeRef.new(shape: ModelPackageStatusDetails, required: true, location_name: "ModelPackageStatusDetails"))
|
5458
|
-
DescribeModelPackageOutput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace"))
|
5463
|
+
DescribeModelPackageOutput.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace", metadata: {"box" => true}))
|
5459
5464
|
DescribeModelPackageOutput.add_member(:model_approval_status, Shapes::ShapeRef.new(shape: ModelApprovalStatus, location_name: "ModelApprovalStatus"))
|
5460
5465
|
DescribeModelPackageOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
5461
5466
|
DescribeModelPackageOutput.add_member(:metadata_properties, Shapes::ShapeRef.new(shape: MetadataProperties, location_name: "MetadataProperties"))
|
@@ -5584,7 +5589,7 @@ module Aws::SageMaker
|
|
5584
5589
|
DescribePartnerAppResponse.add_member(:version, Shapes::ShapeRef.new(shape: NonEmptyString64, location_name: "Version"))
|
5585
5590
|
DescribePartnerAppResponse.add_member(:application_config, Shapes::ShapeRef.new(shape: PartnerAppConfig, location_name: "ApplicationConfig"))
|
5586
5591
|
DescribePartnerAppResponse.add_member(:auth_type, Shapes::ShapeRef.new(shape: PartnerAppAuthType, location_name: "AuthType"))
|
5587
|
-
DescribePartnerAppResponse.add_member(:enable_iam_session_based_identity, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableIamSessionBasedIdentity"))
|
5592
|
+
DescribePartnerAppResponse.add_member(:enable_iam_session_based_identity, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableIamSessionBasedIdentity", metadata: {"box" => true}))
|
5588
5593
|
DescribePartnerAppResponse.add_member(:error, Shapes::ShapeRef.new(shape: ErrorInfo, location_name: "Error"))
|
5589
5594
|
DescribePartnerAppResponse.struct_class = Types::DescribePartnerAppResponse
|
5590
5595
|
|
@@ -5736,9 +5741,9 @@ module Aws::SageMaker
|
|
5736
5741
|
DescribeTrainingJobResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
5737
5742
|
DescribeTrainingJobResponse.add_member(:secondary_status_transitions, Shapes::ShapeRef.new(shape: SecondaryStatusTransitions, location_name: "SecondaryStatusTransitions"))
|
5738
5743
|
DescribeTrainingJobResponse.add_member(:final_metric_data_list, Shapes::ShapeRef.new(shape: FinalMetricDataList, location_name: "FinalMetricDataList"))
|
5739
|
-
DescribeTrainingJobResponse.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
5740
|
-
DescribeTrainingJobResponse.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
5741
|
-
DescribeTrainingJobResponse.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining"))
|
5744
|
+
DescribeTrainingJobResponse.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
5745
|
+
DescribeTrainingJobResponse.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption", metadata: {"box" => true}))
|
5746
|
+
DescribeTrainingJobResponse.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining", metadata: {"box" => true}))
|
5742
5747
|
DescribeTrainingJobResponse.add_member(:checkpoint_config, Shapes::ShapeRef.new(shape: CheckpointConfig, location_name: "CheckpointConfig"))
|
5743
5748
|
DescribeTrainingJobResponse.add_member(:training_time_in_seconds, Shapes::ShapeRef.new(shape: TrainingTimeInSeconds, location_name: "TrainingTimeInSeconds"))
|
5744
5749
|
DescribeTrainingJobResponse.add_member(:billable_time_in_seconds, Shapes::ShapeRef.new(shape: BillableTimeInSeconds, location_name: "BillableTimeInSeconds"))
|
@@ -5909,13 +5914,13 @@ module Aws::SageMaker
|
|
5909
5914
|
DeviceNames.member = Shapes::ShapeRef.new(shape: DeviceName)
|
5910
5915
|
|
5911
5916
|
DeviceSelectionConfig.add_member(:device_subset_type, Shapes::ShapeRef.new(shape: DeviceSubsetType, required: true, location_name: "DeviceSubsetType"))
|
5912
|
-
DeviceSelectionConfig.add_member(:percentage, Shapes::ShapeRef.new(shape: Percentage, location_name: "Percentage"))
|
5917
|
+
DeviceSelectionConfig.add_member(:percentage, Shapes::ShapeRef.new(shape: Percentage, location_name: "Percentage", metadata: {"box" => true}))
|
5913
5918
|
DeviceSelectionConfig.add_member(:device_names, Shapes::ShapeRef.new(shape: DeviceNames, location_name: "DeviceNames"))
|
5914
5919
|
DeviceSelectionConfig.add_member(:device_name_contains, Shapes::ShapeRef.new(shape: DeviceName, location_name: "DeviceNameContains"))
|
5915
5920
|
DeviceSelectionConfig.struct_class = Types::DeviceSelectionConfig
|
5916
5921
|
|
5917
|
-
DeviceStats.add_member(:connected_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ConnectedDeviceCount"))
|
5918
|
-
DeviceStats.add_member(:registered_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "RegisteredDeviceCount"))
|
5922
|
+
DeviceStats.add_member(:connected_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ConnectedDeviceCount", metadata: {"box" => true}))
|
5923
|
+
DeviceStats.add_member(:registered_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "RegisteredDeviceCount", metadata: {"box" => true}))
|
5919
5924
|
DeviceStats.struct_class = Types::DeviceStats
|
5920
5925
|
|
5921
5926
|
DeviceSummaries.member = Shapes::ShapeRef.new(shape: DeviceSummary)
|
@@ -5970,6 +5975,7 @@ module Aws::SageMaker
|
|
5970
5975
|
DomainSettings.add_member(:execution_role_identity_config, Shapes::ShapeRef.new(shape: ExecutionRoleIdentityConfig, location_name: "ExecutionRoleIdentityConfig"))
|
5971
5976
|
DomainSettings.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
|
5972
5977
|
DomainSettings.add_member(:amazon_q_settings, Shapes::ShapeRef.new(shape: AmazonQSettings, location_name: "AmazonQSettings"))
|
5978
|
+
DomainSettings.add_member(:unified_studio_settings, Shapes::ShapeRef.new(shape: UnifiedStudioSettings, location_name: "UnifiedStudioSettings"))
|
5973
5979
|
DomainSettings.struct_class = Types::DomainSettings
|
5974
5980
|
|
5975
5981
|
DomainSettingsForUpdate.add_member(:r_studio_server_pro_domain_settings_for_update, Shapes::ShapeRef.new(shape: RStudioServerProDomainSettingsForUpdate, location_name: "RStudioServerProDomainSettingsForUpdate"))
|
@@ -5977,6 +5983,7 @@ module Aws::SageMaker
|
|
5977
5983
|
DomainSettingsForUpdate.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: DomainSecurityGroupIds, location_name: "SecurityGroupIds"))
|
5978
5984
|
DomainSettingsForUpdate.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
|
5979
5985
|
DomainSettingsForUpdate.add_member(:amazon_q_settings, Shapes::ShapeRef.new(shape: AmazonQSettings, location_name: "AmazonQSettings"))
|
5986
|
+
DomainSettingsForUpdate.add_member(:unified_studio_settings, Shapes::ShapeRef.new(shape: UnifiedStudioSettings, location_name: "UnifiedStudioSettings"))
|
5980
5987
|
DomainSettingsForUpdate.struct_class = Types::DomainSettingsForUpdate
|
5981
5988
|
|
5982
5989
|
DriftCheckBaselines.add_member(:bias, Shapes::ShapeRef.new(shape: DriftCheckBias, location_name: "Bias"))
|
@@ -6002,10 +6009,10 @@ module Aws::SageMaker
|
|
6002
6009
|
DriftCheckModelQuality.add_member(:constraints, Shapes::ShapeRef.new(shape: MetricsSource, location_name: "Constraints"))
|
6003
6010
|
DriftCheckModelQuality.struct_class = Types::DriftCheckModelQuality
|
6004
6011
|
|
6005
|
-
DynamicScalingConfiguration.add_member(:min_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "MinCapacity"))
|
6006
|
-
DynamicScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxCapacity"))
|
6007
|
-
DynamicScalingConfiguration.add_member(:scale_in_cooldown, Shapes::ShapeRef.new(shape: Integer, location_name: "ScaleInCooldown"))
|
6008
|
-
DynamicScalingConfiguration.add_member(:scale_out_cooldown, Shapes::ShapeRef.new(shape: Integer, location_name: "ScaleOutCooldown"))
|
6012
|
+
DynamicScalingConfiguration.add_member(:min_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "MinCapacity", metadata: {"box" => true}))
|
6013
|
+
DynamicScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxCapacity", metadata: {"box" => true}))
|
6014
|
+
DynamicScalingConfiguration.add_member(:scale_in_cooldown, Shapes::ShapeRef.new(shape: Integer, location_name: "ScaleInCooldown", metadata: {"box" => true}))
|
6015
|
+
DynamicScalingConfiguration.add_member(:scale_out_cooldown, Shapes::ShapeRef.new(shape: Integer, location_name: "ScaleOutCooldown", metadata: {"box" => true}))
|
6009
6016
|
DynamicScalingConfiguration.add_member(:scaling_policies, Shapes::ShapeRef.new(shape: ScalingPolicies, location_name: "ScalingPolicies"))
|
6010
6017
|
DynamicScalingConfiguration.struct_class = Types::DynamicScalingConfiguration
|
6011
6018
|
|
@@ -6044,17 +6051,17 @@ module Aws::SageMaker
|
|
6044
6051
|
EdgeDeploymentPlanSummary.add_member(:edge_deployment_plan_arn, Shapes::ShapeRef.new(shape: EdgeDeploymentPlanArn, required: true, location_name: "EdgeDeploymentPlanArn"))
|
6045
6052
|
EdgeDeploymentPlanSummary.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
6046
6053
|
EdgeDeploymentPlanSummary.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
6047
|
-
EdgeDeploymentPlanSummary.add_member(:edge_deployment_success, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentSuccess"))
|
6048
|
-
EdgeDeploymentPlanSummary.add_member(:edge_deployment_pending, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentPending"))
|
6049
|
-
EdgeDeploymentPlanSummary.add_member(:edge_deployment_failed, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentFailed"))
|
6054
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_success, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentSuccess", metadata: {"box" => true}))
|
6055
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_pending, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentPending", metadata: {"box" => true}))
|
6056
|
+
EdgeDeploymentPlanSummary.add_member(:edge_deployment_failed, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentFailed", metadata: {"box" => true}))
|
6050
6057
|
EdgeDeploymentPlanSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
6051
6058
|
EdgeDeploymentPlanSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
6052
6059
|
EdgeDeploymentPlanSummary.struct_class = Types::EdgeDeploymentPlanSummary
|
6053
6060
|
|
6054
6061
|
EdgeDeploymentStatus.add_member(:stage_status, Shapes::ShapeRef.new(shape: StageStatus, required: true, location_name: "StageStatus"))
|
6055
|
-
EdgeDeploymentStatus.add_member(:edge_deployment_success_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentSuccessInStage"))
|
6056
|
-
EdgeDeploymentStatus.add_member(:edge_deployment_pending_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentPendingInStage"))
|
6057
|
-
EdgeDeploymentStatus.add_member(:edge_deployment_failed_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentFailedInStage"))
|
6062
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_success_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentSuccessInStage", metadata: {"box" => true}))
|
6063
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_pending_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentPendingInStage", metadata: {"box" => true}))
|
6064
|
+
EdgeDeploymentStatus.add_member(:edge_deployment_failed_in_stage, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "EdgeDeploymentFailedInStage", metadata: {"box" => true}))
|
6058
6065
|
EdgeDeploymentStatus.add_member(:edge_deployment_status_message, Shapes::ShapeRef.new(shape: String, location_name: "EdgeDeploymentStatusMessage"))
|
6059
6066
|
EdgeDeploymentStatus.add_member(:edge_deployment_stage_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EdgeDeploymentStageStartTime"))
|
6060
6067
|
EdgeDeploymentStatus.struct_class = Types::EdgeDeploymentStatus
|
@@ -6067,10 +6074,10 @@ module Aws::SageMaker
|
|
6067
6074
|
|
6068
6075
|
EdgeModelStat.add_member(:model_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelName"))
|
6069
6076
|
EdgeModelStat.add_member(:model_version, Shapes::ShapeRef.new(shape: EdgeVersion, required: true, location_name: "ModelVersion"))
|
6070
|
-
EdgeModelStat.add_member(:offline_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "OfflineDeviceCount"))
|
6071
|
-
EdgeModelStat.add_member(:connected_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ConnectedDeviceCount"))
|
6072
|
-
EdgeModelStat.add_member(:active_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ActiveDeviceCount"))
|
6073
|
-
EdgeModelStat.add_member(:sampling_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "SamplingDeviceCount"))
|
6077
|
+
EdgeModelStat.add_member(:offline_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "OfflineDeviceCount", metadata: {"box" => true}))
|
6078
|
+
EdgeModelStat.add_member(:connected_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ConnectedDeviceCount", metadata: {"box" => true}))
|
6079
|
+
EdgeModelStat.add_member(:active_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "ActiveDeviceCount", metadata: {"box" => true}))
|
6080
|
+
EdgeModelStat.add_member(:sampling_device_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "SamplingDeviceCount", metadata: {"box" => true}))
|
6074
6081
|
EdgeModelStat.struct_class = Types::EdgeModelStat
|
6075
6082
|
|
6076
6083
|
EdgeModelStats.member = Shapes::ShapeRef.new(shape: EdgeModelStat)
|
@@ -6360,13 +6367,13 @@ module Aws::SageMaker
|
|
6360
6367
|
|
6361
6368
|
FinalAutoMLJobObjectiveMetric.add_member(:type, Shapes::ShapeRef.new(shape: AutoMLJobObjectiveType, location_name: "Type"))
|
6362
6369
|
FinalAutoMLJobObjectiveMetric.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, required: true, location_name: "MetricName"))
|
6363
|
-
FinalAutoMLJobObjectiveMetric.add_member(:value, Shapes::ShapeRef.new(shape: MetricValue, required: true, location_name: "Value"))
|
6370
|
+
FinalAutoMLJobObjectiveMetric.add_member(:value, Shapes::ShapeRef.new(shape: MetricValue, required: true, location_name: "Value", metadata: {"box" => true}))
|
6364
6371
|
FinalAutoMLJobObjectiveMetric.add_member(:standard_metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, location_name: "StandardMetricName"))
|
6365
6372
|
FinalAutoMLJobObjectiveMetric.struct_class = Types::FinalAutoMLJobObjectiveMetric
|
6366
6373
|
|
6367
6374
|
FinalHyperParameterTuningJobObjectiveMetric.add_member(:type, Shapes::ShapeRef.new(shape: HyperParameterTuningJobObjectiveType, location_name: "Type"))
|
6368
6375
|
FinalHyperParameterTuningJobObjectiveMetric.add_member(:metric_name, Shapes::ShapeRef.new(shape: MetricName, required: true, location_name: "MetricName"))
|
6369
|
-
FinalHyperParameterTuningJobObjectiveMetric.add_member(:value, Shapes::ShapeRef.new(shape: MetricValue, required: true, location_name: "Value"))
|
6376
|
+
FinalHyperParameterTuningJobObjectiveMetric.add_member(:value, Shapes::ShapeRef.new(shape: MetricValue, required: true, location_name: "Value", metadata: {"box" => true}))
|
6370
6377
|
FinalHyperParameterTuningJobObjectiveMetric.struct_class = Types::FinalHyperParameterTuningJobObjectiveMetric
|
6371
6378
|
|
6372
6379
|
FinalMetricDataList.member = Shapes::ShapeRef.new(shape: MetricData)
|
@@ -6573,8 +6580,8 @@ module Aws::SageMaker
|
|
6573
6580
|
HyperParameterSpecification.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "Description"))
|
6574
6581
|
HyperParameterSpecification.add_member(:type, Shapes::ShapeRef.new(shape: ParameterType, required: true, location_name: "Type"))
|
6575
6582
|
HyperParameterSpecification.add_member(:range, Shapes::ShapeRef.new(shape: ParameterRange, location_name: "Range"))
|
6576
|
-
HyperParameterSpecification.add_member(:is_tunable, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsTunable"))
|
6577
|
-
HyperParameterSpecification.add_member(:is_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRequired"))
|
6583
|
+
HyperParameterSpecification.add_member(:is_tunable, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsTunable", metadata: {"box" => true}))
|
6584
|
+
HyperParameterSpecification.add_member(:is_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRequired", metadata: {"box" => true}))
|
6578
6585
|
HyperParameterSpecification.add_member(:default_value, Shapes::ShapeRef.new(shape: HyperParameterValue, location_name: "DefaultValue"))
|
6579
6586
|
HyperParameterSpecification.struct_class = Types::HyperParameterSpecification
|
6580
6587
|
|
@@ -6592,9 +6599,9 @@ module Aws::SageMaker
|
|
6592
6599
|
HyperParameterTrainingJobDefinition.add_member(:resource_config, Shapes::ShapeRef.new(shape: ResourceConfig, location_name: "ResourceConfig"))
|
6593
6600
|
HyperParameterTrainingJobDefinition.add_member(:hyper_parameter_tuning_resource_config, Shapes::ShapeRef.new(shape: HyperParameterTuningResourceConfig, location_name: "HyperParameterTuningResourceConfig"))
|
6594
6601
|
HyperParameterTrainingJobDefinition.add_member(:stopping_condition, Shapes::ShapeRef.new(shape: StoppingCondition, required: true, location_name: "StoppingCondition"))
|
6595
|
-
HyperParameterTrainingJobDefinition.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
6596
|
-
HyperParameterTrainingJobDefinition.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
6597
|
-
HyperParameterTrainingJobDefinition.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining"))
|
6602
|
+
HyperParameterTrainingJobDefinition.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
6603
|
+
HyperParameterTrainingJobDefinition.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption", metadata: {"box" => true}))
|
6604
|
+
HyperParameterTrainingJobDefinition.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining", metadata: {"box" => true}))
|
6598
6605
|
HyperParameterTrainingJobDefinition.add_member(:checkpoint_config, Shapes::ShapeRef.new(shape: CheckpointConfig, location_name: "CheckpointConfig"))
|
6599
6606
|
HyperParameterTrainingJobDefinition.add_member(:retry_strategy, Shapes::ShapeRef.new(shape: RetryStrategy, location_name: "RetryStrategy"))
|
6600
6607
|
HyperParameterTrainingJobDefinition.add_member(:environment, Shapes::ShapeRef.new(shape: HyperParameterTrainingJobEnvironmentMap, location_name: "Environment"))
|
@@ -6622,13 +6629,13 @@ module Aws::SageMaker
|
|
6622
6629
|
HyperParameterTrainingJobSummary.struct_class = Types::HyperParameterTrainingJobSummary
|
6623
6630
|
|
6624
6631
|
HyperParameterTuningInstanceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, required: true, location_name: "InstanceType"))
|
6625
|
-
HyperParameterTuningInstanceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, required: true, location_name: "InstanceCount"))
|
6626
|
-
HyperParameterTuningInstanceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: VolumeSizeInGB, required: true, location_name: "VolumeSizeInGB"))
|
6632
|
+
HyperParameterTuningInstanceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, required: true, location_name: "InstanceCount", metadata: {"box" => true}))
|
6633
|
+
HyperParameterTuningInstanceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: VolumeSizeInGB, required: true, location_name: "VolumeSizeInGB", metadata: {"box" => true}))
|
6627
6634
|
HyperParameterTuningInstanceConfig.struct_class = Types::HyperParameterTuningInstanceConfig
|
6628
6635
|
|
6629
6636
|
HyperParameterTuningInstanceConfigs.member = Shapes::ShapeRef.new(shape: HyperParameterTuningInstanceConfig)
|
6630
6637
|
|
6631
|
-
HyperParameterTuningJobCompletionDetails.add_member(:number_of_training_jobs_objective_not_improving, Shapes::ShapeRef.new(shape: Integer, location_name: "NumberOfTrainingJobsObjectiveNotImproving"))
|
6638
|
+
HyperParameterTuningJobCompletionDetails.add_member(:number_of_training_jobs_objective_not_improving, Shapes::ShapeRef.new(shape: Integer, location_name: "NumberOfTrainingJobsObjectiveNotImproving", metadata: {"box" => true}))
|
6632
6639
|
HyperParameterTuningJobCompletionDetails.add_member(:convergence_detected_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ConvergenceDetectedTime"))
|
6633
6640
|
HyperParameterTuningJobCompletionDetails.struct_class = Types::HyperParameterTuningJobCompletionDetails
|
6634
6641
|
|
@@ -6642,7 +6649,7 @@ module Aws::SageMaker
|
|
6642
6649
|
HyperParameterTuningJobConfig.add_member(:random_seed, Shapes::ShapeRef.new(shape: RandomSeed, location_name: "RandomSeed"))
|
6643
6650
|
HyperParameterTuningJobConfig.struct_class = Types::HyperParameterTuningJobConfig
|
6644
6651
|
|
6645
|
-
HyperParameterTuningJobConsumedResources.add_member(:runtime_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "RuntimeInSeconds"))
|
6652
|
+
HyperParameterTuningJobConsumedResources.add_member(:runtime_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "RuntimeInSeconds", metadata: {"box" => true}))
|
6646
6653
|
HyperParameterTuningJobConsumedResources.struct_class = Types::HyperParameterTuningJobConsumedResources
|
6647
6654
|
|
6648
6655
|
HyperParameterTuningJobObjective.add_member(:type, Shapes::ShapeRef.new(shape: HyperParameterTuningJobObjectiveType, required: true, location_name: "Type"))
|
@@ -6693,8 +6700,8 @@ module Aws::SageMaker
|
|
6693
6700
|
HyperParameterTuningJobWarmStartConfig.struct_class = Types::HyperParameterTuningJobWarmStartConfig
|
6694
6701
|
|
6695
6702
|
HyperParameterTuningResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, location_name: "InstanceType"))
|
6696
|
-
HyperParameterTuningResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, location_name: "InstanceCount"))
|
6697
|
-
HyperParameterTuningResourceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: OptionalVolumeSizeInGB, location_name: "VolumeSizeInGB"))
|
6703
|
+
HyperParameterTuningResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, location_name: "InstanceCount", metadata: {"box" => true}))
|
6704
|
+
HyperParameterTuningResourceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: OptionalVolumeSizeInGB, location_name: "VolumeSizeInGB", metadata: {"box" => true}))
|
6698
6705
|
HyperParameterTuningResourceConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
6699
6706
|
HyperParameterTuningResourceConfig.add_member(:allocation_strategy, Shapes::ShapeRef.new(shape: HyperParameterTuningAllocationStrategy, location_name: "AllocationStrategy"))
|
6700
6707
|
HyperParameterTuningResourceConfig.add_member(:instance_configs, Shapes::ShapeRef.new(shape: HyperParameterTuningInstanceConfigs, location_name: "InstanceConfigs"))
|
@@ -6875,8 +6882,8 @@ module Aws::SageMaker
|
|
6875
6882
|
InferenceHubAccessConfig.add_member(:hub_content_arn, Shapes::ShapeRef.new(shape: HubContentArn, required: true, location_name: "HubContentArn"))
|
6876
6883
|
InferenceHubAccessConfig.struct_class = Types::InferenceHubAccessConfig
|
6877
6884
|
|
6878
|
-
InferenceMetrics.add_member(:max_invocations, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "MaxInvocations"))
|
6879
|
-
InferenceMetrics.add_member(:model_latency, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelLatency"))
|
6885
|
+
InferenceMetrics.add_member(:max_invocations, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "MaxInvocations", metadata: {"box" => true}))
|
6886
|
+
InferenceMetrics.add_member(:model_latency, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelLatency", metadata: {"box" => true}))
|
6880
6887
|
InferenceMetrics.struct_class = Types::InferenceMetrics
|
6881
6888
|
|
6882
6889
|
InferenceRecommendation.add_member(:recommendation_id, Shapes::ShapeRef.new(shape: String, location_name: "RecommendationId"))
|
@@ -6935,7 +6942,7 @@ module Aws::SageMaker
|
|
6935
6942
|
InputModes.member = Shapes::ShapeRef.new(shape: TrainingInputMode)
|
6936
6943
|
|
6937
6944
|
InstanceGroup.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, required: true, location_name: "InstanceType"))
|
6938
|
-
InstanceGroup.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, required: true, location_name: "InstanceCount"))
|
6945
|
+
InstanceGroup.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, required: true, location_name: "InstanceCount", metadata: {"box" => true}))
|
6939
6946
|
InstanceGroup.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: InstanceGroupName, required: true, location_name: "InstanceGroupName"))
|
6940
6947
|
InstanceGroup.struct_class = Types::InstanceGroup
|
6941
6948
|
|
@@ -6996,16 +7003,16 @@ module Aws::SageMaker
|
|
6996
7003
|
|
6997
7004
|
KernelSpecs.member = Shapes::ShapeRef.new(shape: KernelSpec)
|
6998
7005
|
|
6999
|
-
LabelCounters.add_member(:total_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "TotalLabeled"))
|
7000
|
-
LabelCounters.add_member(:human_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "HumanLabeled"))
|
7001
|
-
LabelCounters.add_member(:machine_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "MachineLabeled"))
|
7002
|
-
LabelCounters.add_member(:failed_non_retryable_error, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "FailedNonRetryableError"))
|
7003
|
-
LabelCounters.add_member(:unlabeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "Unlabeled"))
|
7006
|
+
LabelCounters.add_member(:total_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "TotalLabeled", metadata: {"box" => true}))
|
7007
|
+
LabelCounters.add_member(:human_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "HumanLabeled", metadata: {"box" => true}))
|
7008
|
+
LabelCounters.add_member(:machine_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "MachineLabeled", metadata: {"box" => true}))
|
7009
|
+
LabelCounters.add_member(:failed_non_retryable_error, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "FailedNonRetryableError", metadata: {"box" => true}))
|
7010
|
+
LabelCounters.add_member(:unlabeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "Unlabeled", metadata: {"box" => true}))
|
7004
7011
|
LabelCounters.struct_class = Types::LabelCounters
|
7005
7012
|
|
7006
|
-
LabelCountersForWorkteam.add_member(:human_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "HumanLabeled"))
|
7007
|
-
LabelCountersForWorkteam.add_member(:pending_human, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "PendingHuman"))
|
7008
|
-
LabelCountersForWorkteam.add_member(:total, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "Total"))
|
7013
|
+
LabelCountersForWorkteam.add_member(:human_labeled, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "HumanLabeled", metadata: {"box" => true}))
|
7014
|
+
LabelCountersForWorkteam.add_member(:pending_human, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "PendingHuman", metadata: {"box" => true}))
|
7015
|
+
LabelCountersForWorkteam.add_member(:total, Shapes::ShapeRef.new(shape: LabelCounter, location_name: "Total", metadata: {"box" => true}))
|
7009
7016
|
LabelCountersForWorkteam.struct_class = Types::LabelCountersForWorkteam
|
7010
7017
|
|
7011
7018
|
LabelingJobAlgorithmsConfig.add_member(:labeling_job_algorithm_specification_arn, Shapes::ShapeRef.new(shape: LabelingJobAlgorithmSpecificationArn, required: true, location_name: "LabelingJobAlgorithmSpecificationArn"))
|
@@ -7280,7 +7287,7 @@ module Aws::SageMaker
|
|
7280
7287
|
ListCodeRepositoriesOutput.struct_class = Types::ListCodeRepositoriesOutput
|
7281
7288
|
|
7282
7289
|
ListCompilationJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
7283
|
-
ListCompilationJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
7290
|
+
ListCompilationJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
7284
7291
|
ListCompilationJobsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTimeAfter"))
|
7285
7292
|
ListCompilationJobsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTimeBefore"))
|
7286
7293
|
ListCompilationJobsRequest.add_member(:last_modified_time_after, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTimeAfter"))
|
@@ -7465,7 +7472,7 @@ module Aws::SageMaker
|
|
7465
7472
|
ListFlowDefinitionsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
|
7466
7473
|
ListFlowDefinitionsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
7467
7474
|
ListFlowDefinitionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
7468
|
-
ListFlowDefinitionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
7475
|
+
ListFlowDefinitionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
7469
7476
|
ListFlowDefinitionsRequest.struct_class = Types::ListFlowDefinitionsRequest
|
7470
7477
|
|
7471
7478
|
ListFlowDefinitionsResponse.add_member(:flow_definition_summaries, Shapes::ShapeRef.new(shape: FlowDefinitionSummaries, required: true, location_name: "FlowDefinitionSummaries"))
|
@@ -7524,7 +7531,7 @@ module Aws::SageMaker
|
|
7524
7531
|
ListHumanTaskUisRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
|
7525
7532
|
ListHumanTaskUisRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
7526
7533
|
ListHumanTaskUisRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
7527
|
-
ListHumanTaskUisRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
7534
|
+
ListHumanTaskUisRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
7528
7535
|
ListHumanTaskUisRequest.struct_class = Types::ListHumanTaskUisRequest
|
7529
7536
|
|
7530
7537
|
ListHumanTaskUisResponse.add_member(:human_task_ui_summaries, Shapes::ShapeRef.new(shape: HumanTaskUiSummaries, required: true, location_name: "HumanTaskUiSummaries"))
|
@@ -7532,7 +7539,7 @@ module Aws::SageMaker
|
|
7532
7539
|
ListHumanTaskUisResponse.struct_class = Types::ListHumanTaskUisResponse
|
7533
7540
|
|
7534
7541
|
ListHyperParameterTuningJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
7535
|
-
ListHyperParameterTuningJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
7542
|
+
ListHyperParameterTuningJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
7536
7543
|
ListHyperParameterTuningJobsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: HyperParameterTuningJobSortByOptions, location_name: "SortBy"))
|
7537
7544
|
ListHyperParameterTuningJobsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
7538
7545
|
ListHyperParameterTuningJobsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: NameContains, location_name: "NameContains"))
|
@@ -7714,7 +7721,7 @@ module Aws::SageMaker
|
|
7714
7721
|
ListModelBiasJobDefinitionsResponse.struct_class = Types::ListModelBiasJobDefinitionsResponse
|
7715
7722
|
|
7716
7723
|
ListModelCardExportJobsRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
|
7717
|
-
ListModelCardExportJobsRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion"))
|
7724
|
+
ListModelCardExportJobsRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
7718
7725
|
ListModelCardExportJobsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
|
7719
7726
|
ListModelCardExportJobsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
|
7720
7727
|
ListModelCardExportJobsRequest.add_member(:model_card_export_job_name_contains, Shapes::ShapeRef.new(shape: EntityName, location_name: "ModelCardExportJobNameContains"))
|
@@ -7936,7 +7943,7 @@ module Aws::SageMaker
|
|
7936
7943
|
ListNotebookInstancesOutput.struct_class = Types::ListNotebookInstancesOutput
|
7937
7944
|
|
7938
7945
|
ListOptimizationJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
7939
|
-
ListOptimizationJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
7946
|
+
ListOptimizationJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
7940
7947
|
ListOptimizationJobsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTimeAfter"))
|
7941
7948
|
ListOptimizationJobsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTimeBefore"))
|
7942
7949
|
ListOptimizationJobsRequest.add_member(:last_modified_time_after, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "LastModifiedTimeAfter"))
|
@@ -8014,7 +8021,7 @@ module Aws::SageMaker
|
|
8014
8021
|
ListProcessingJobsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortBy, location_name: "SortBy"))
|
8015
8022
|
ListProcessingJobsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
8016
8023
|
ListProcessingJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8017
|
-
ListProcessingJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
8024
|
+
ListProcessingJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8018
8025
|
ListProcessingJobsRequest.struct_class = Types::ListProcessingJobsRequest
|
8019
8026
|
|
8020
8027
|
ListProcessingJobsResponse.add_member(:processing_job_summaries, Shapes::ShapeRef.new(shape: ProcessingJobSummaries, required: true, location_name: "ProcessingJobSummaries"))
|
@@ -8062,7 +8069,7 @@ module Aws::SageMaker
|
|
8062
8069
|
ListStageDevicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8063
8070
|
ListStageDevicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
8064
8071
|
ListStageDevicesRequest.add_member(:edge_deployment_plan_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "EdgeDeploymentPlanName"))
|
8065
|
-
ListStageDevicesRequest.add_member(:exclude_devices_deployed_in_other_stage, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExcludeDevicesDeployedInOtherStage"))
|
8072
|
+
ListStageDevicesRequest.add_member(:exclude_devices_deployed_in_other_stage, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExcludeDevicesDeployedInOtherStage", metadata: {"box" => true}))
|
8066
8073
|
ListStageDevicesRequest.add_member(:stage_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageName"))
|
8067
8074
|
ListStageDevicesRequest.struct_class = Types::ListStageDevicesRequest
|
8068
8075
|
|
@@ -8088,7 +8095,7 @@ module Aws::SageMaker
|
|
8088
8095
|
|
8089
8096
|
ListSubscribedWorkteamsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: WorkteamName, location_name: "NameContains"))
|
8090
8097
|
ListSubscribedWorkteamsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8091
|
-
ListSubscribedWorkteamsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
8098
|
+
ListSubscribedWorkteamsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8092
8099
|
ListSubscribedWorkteamsRequest.struct_class = Types::ListSubscribedWorkteamsRequest
|
8093
8100
|
|
8094
8101
|
ListSubscribedWorkteamsResponse.add_member(:subscribed_workteams, Shapes::ShapeRef.new(shape: SubscribedWorkteams, required: true, location_name: "SubscribedWorkteams"))
|
@@ -8117,7 +8124,7 @@ module Aws::SageMaker
|
|
8117
8124
|
ListTrainingJobsForHyperParameterTuningJobResponse.struct_class = Types::ListTrainingJobsForHyperParameterTuningJobResponse
|
8118
8125
|
|
8119
8126
|
ListTrainingJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8120
|
-
ListTrainingJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
8127
|
+
ListTrainingJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8121
8128
|
ListTrainingJobsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
|
8122
8129
|
ListTrainingJobsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
|
8123
8130
|
ListTrainingJobsRequest.add_member(:last_modified_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTimeAfter"))
|
@@ -8135,7 +8142,7 @@ module Aws::SageMaker
|
|
8135
8142
|
ListTrainingJobsResponse.struct_class = Types::ListTrainingJobsResponse
|
8136
8143
|
|
8137
8144
|
ListTrainingPlansRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8138
|
-
ListTrainingPlansRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
8145
|
+
ListTrainingPlansRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8139
8146
|
ListTrainingPlansRequest.add_member(:start_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTimeAfter"))
|
8140
8147
|
ListTrainingPlansRequest.add_member(:start_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTimeBefore"))
|
8141
8148
|
ListTrainingPlansRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: TrainingPlanSortBy, location_name: "SortBy"))
|
@@ -8156,7 +8163,7 @@ module Aws::SageMaker
|
|
8156
8163
|
ListTransformJobsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortBy, location_name: "SortBy"))
|
8157
8164
|
ListTransformJobsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
8158
8165
|
ListTransformJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8159
|
-
ListTransformJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
8166
|
+
ListTransformJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8160
8167
|
ListTransformJobsRequest.struct_class = Types::ListTransformJobsRequest
|
8161
8168
|
|
8162
8169
|
ListTransformJobsResponse.add_member(:transform_job_summaries, Shapes::ShapeRef.new(shape: TransformJobSummaries, required: true, location_name: "TransformJobSummaries"))
|
@@ -8210,7 +8217,7 @@ module Aws::SageMaker
|
|
8210
8217
|
ListWorkforcesRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
8211
8218
|
ListWorkforcesRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: WorkforceName, location_name: "NameContains"))
|
8212
8219
|
ListWorkforcesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8213
|
-
ListWorkforcesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
8220
|
+
ListWorkforcesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8214
8221
|
ListWorkforcesRequest.struct_class = Types::ListWorkforcesRequest
|
8215
8222
|
|
8216
8223
|
ListWorkforcesResponse.add_member(:workforces, Shapes::ShapeRef.new(shape: Workforces, required: true, location_name: "Workforces"))
|
@@ -8221,7 +8228,7 @@ module Aws::SageMaker
|
|
8221
8228
|
ListWorkteamsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
8222
8229
|
ListWorkteamsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: WorkteamName, location_name: "NameContains"))
|
8223
8230
|
ListWorkteamsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8224
|
-
ListWorkteamsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
8231
|
+
ListWorkteamsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
8225
8232
|
ListWorkteamsRequest.struct_class = Types::ListWorkteamsRequest
|
8226
8233
|
|
8227
8234
|
ListWorkteamsResponse.add_member(:workteams, Shapes::ShapeRef.new(shape: Workteams, required: true, location_name: "Workteams"))
|
@@ -8241,16 +8248,16 @@ module Aws::SageMaker
|
|
8241
8248
|
MetadataProperties.struct_class = Types::MetadataProperties
|
8242
8249
|
|
8243
8250
|
MetricData.add_member(:metric_name, Shapes::ShapeRef.new(shape: MetricName, location_name: "MetricName"))
|
8244
|
-
MetricData.add_member(:value, Shapes::ShapeRef.new(shape: Float, location_name: "Value"))
|
8251
|
+
MetricData.add_member(:value, Shapes::ShapeRef.new(shape: Float, location_name: "Value", metadata: {"box" => true}))
|
8245
8252
|
MetricData.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Timestamp"))
|
8246
8253
|
MetricData.struct_class = Types::MetricData
|
8247
8254
|
|
8248
8255
|
MetricDataList.member = Shapes::ShapeRef.new(shape: MetricDatum)
|
8249
8256
|
|
8250
8257
|
MetricDatum.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, location_name: "MetricName"))
|
8251
|
-
MetricDatum.add_member(:value, Shapes::ShapeRef.new(shape: Float, location_name: "Value"))
|
8252
|
-
MetricDatum.add_member(:set, Shapes::ShapeRef.new(shape: MetricSetSource, location_name: "Set"))
|
8253
8258
|
MetricDatum.add_member(:standard_metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricExtendedEnum, location_name: "StandardMetricName"))
|
8259
|
+
MetricDatum.add_member(:value, Shapes::ShapeRef.new(shape: Float, location_name: "Value", metadata: {"box" => true}))
|
8260
|
+
MetricDatum.add_member(:set, Shapes::ShapeRef.new(shape: MetricSetSource, location_name: "Set"))
|
8254
8261
|
MetricDatum.struct_class = Types::MetricDatum
|
8255
8262
|
|
8256
8263
|
MetricDefinition.add_member(:name, Shapes::ShapeRef.new(shape: MetricName, required: true, location_name: "Name"))
|
@@ -8280,12 +8287,12 @@ module Aws::SageMaker
|
|
8280
8287
|
Model.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
8281
8288
|
Model.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
8282
8289
|
Model.add_member(:model_arn, Shapes::ShapeRef.new(shape: ModelArn, location_name: "ModelArn"))
|
8283
|
-
Model.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
8290
|
+
Model.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
8284
8291
|
Model.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
8285
8292
|
Model.add_member(:deployment_recommendation, Shapes::ShapeRef.new(shape: DeploymentRecommendation, location_name: "DeploymentRecommendation"))
|
8286
8293
|
Model.struct_class = Types::Model
|
8287
8294
|
|
8288
|
-
ModelAccessConfig.add_member(:accept_eula, Shapes::ShapeRef.new(shape: AcceptEula, required: true, location_name: "AcceptEula"))
|
8295
|
+
ModelAccessConfig.add_member(:accept_eula, Shapes::ShapeRef.new(shape: AcceptEula, required: true, location_name: "AcceptEula", metadata: {"box" => true}))
|
8289
8296
|
ModelAccessConfig.struct_class = Types::ModelAccessConfig
|
8290
8297
|
|
8291
8298
|
ModelArtifacts.add_member(:s3_model_artifacts, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3ModelArtifacts"))
|
@@ -8307,7 +8314,7 @@ module Aws::SageMaker
|
|
8307
8314
|
|
8308
8315
|
ModelCard.add_member(:model_card_arn, Shapes::ShapeRef.new(shape: ModelCardArn, location_name: "ModelCardArn"))
|
8309
8316
|
ModelCard.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "ModelCardName"))
|
8310
|
-
ModelCard.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion"))
|
8317
|
+
ModelCard.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
8311
8318
|
ModelCard.add_member(:content, Shapes::ShapeRef.new(shape: ModelCardContent, location_name: "Content"))
|
8312
8319
|
ModelCard.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, location_name: "ModelCardStatus"))
|
8313
8320
|
ModelCard.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelCardSecurityConfig, location_name: "SecurityConfig"))
|
@@ -8328,7 +8335,7 @@ module Aws::SageMaker
|
|
8328
8335
|
ModelCardExportJobSummary.add_member(:model_card_export_job_arn, Shapes::ShapeRef.new(shape: ModelCardExportJobArn, required: true, location_name: "ModelCardExportJobArn"))
|
8329
8336
|
ModelCardExportJobSummary.add_member(:status, Shapes::ShapeRef.new(shape: ModelCardExportJobStatus, required: true, location_name: "Status"))
|
8330
8337
|
ModelCardExportJobSummary.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
|
8331
|
-
ModelCardExportJobSummary.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion"))
|
8338
|
+
ModelCardExportJobSummary.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
8332
8339
|
ModelCardExportJobSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
8333
8340
|
ModelCardExportJobSummary.add_member(:last_modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedAt"))
|
8334
8341
|
ModelCardExportJobSummary.struct_class = Types::ModelCardExportJobSummary
|
@@ -8353,7 +8360,7 @@ module Aws::SageMaker
|
|
8353
8360
|
ModelCardVersionSummary.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
|
8354
8361
|
ModelCardVersionSummary.add_member(:model_card_arn, Shapes::ShapeRef.new(shape: ModelCardArn, required: true, location_name: "ModelCardArn"))
|
8355
8362
|
ModelCardVersionSummary.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, required: true, location_name: "ModelCardStatus"))
|
8356
|
-
ModelCardVersionSummary.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion"))
|
8363
|
+
ModelCardVersionSummary.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
8357
8364
|
ModelCardVersionSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
8358
8365
|
ModelCardVersionSummary.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
8359
8366
|
ModelCardVersionSummary.struct_class = Types::ModelCardVersionSummary
|
@@ -8382,7 +8389,7 @@ module Aws::SageMaker
|
|
8382
8389
|
|
8383
8390
|
ModelDashboardEndpoints.member = Shapes::ShapeRef.new(shape: ModelDashboardEndpoint)
|
8384
8391
|
|
8385
|
-
ModelDashboardIndicatorAction.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
8392
|
+
ModelDashboardIndicatorAction.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled", metadata: {"box" => true}))
|
8386
8393
|
ModelDashboardIndicatorAction.struct_class = Types::ModelDashboardIndicatorAction
|
8387
8394
|
|
8388
8395
|
ModelDashboardModel.add_member(:model, Shapes::ShapeRef.new(shape: Model, location_name: "Model"))
|
@@ -8394,7 +8401,7 @@ module Aws::SageMaker
|
|
8394
8401
|
|
8395
8402
|
ModelDashboardModelCard.add_member(:model_card_arn, Shapes::ShapeRef.new(shape: ModelCardArn, location_name: "ModelCardArn"))
|
8396
8403
|
ModelDashboardModelCard.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, location_name: "ModelCardName"))
|
8397
|
-
ModelDashboardModelCard.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion"))
|
8404
|
+
ModelDashboardModelCard.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion", metadata: {"box" => true}))
|
8398
8405
|
ModelDashboardModelCard.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, location_name: "ModelCardStatus"))
|
8399
8406
|
ModelDashboardModelCard.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelCardSecurityConfig, location_name: "SecurityConfig"))
|
8400
8407
|
ModelDashboardModelCard.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
@@ -8429,7 +8436,7 @@ module Aws::SageMaker
|
|
8429
8436
|
ModelDataSource.add_member(:s3_data_source, Shapes::ShapeRef.new(shape: S3ModelDataSource, location_name: "S3DataSource"))
|
8430
8437
|
ModelDataSource.struct_class = Types::ModelDataSource
|
8431
8438
|
|
8432
|
-
ModelDeployConfig.add_member(:auto_generate_endpoint_name, Shapes::ShapeRef.new(shape: AutoGenerateEndpointName, location_name: "AutoGenerateEndpointName"))
|
8439
|
+
ModelDeployConfig.add_member(:auto_generate_endpoint_name, Shapes::ShapeRef.new(shape: AutoGenerateEndpointName, location_name: "AutoGenerateEndpointName", metadata: {"box" => true}))
|
8433
8440
|
ModelDeployConfig.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, location_name: "EndpointName"))
|
8434
8441
|
ModelDeployConfig.struct_class = Types::ModelDeployConfig
|
8435
8442
|
|
@@ -8460,7 +8467,7 @@ module Aws::SageMaker
|
|
8460
8467
|
ModelInput.struct_class = Types::ModelInput
|
8461
8468
|
|
8462
8469
|
ModelLatencyThreshold.add_member(:percentile, Shapes::ShapeRef.new(shape: String64, location_name: "Percentile"))
|
8463
|
-
ModelLatencyThreshold.add_member(:value_in_milliseconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ValueInMilliseconds"))
|
8470
|
+
ModelLatencyThreshold.add_member(:value_in_milliseconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ValueInMilliseconds", metadata: {"box" => true}))
|
8464
8471
|
ModelLatencyThreshold.struct_class = Types::ModelLatencyThreshold
|
8465
8472
|
|
8466
8473
|
ModelLatencyThresholds.member = Shapes::ShapeRef.new(shape: ModelLatencyThreshold)
|
@@ -8505,7 +8512,7 @@ module Aws::SageMaker
|
|
8505
8512
|
ModelPackage.add_member(:validation_specification, Shapes::ShapeRef.new(shape: ModelPackageValidationSpecification, location_name: "ValidationSpecification"))
|
8506
8513
|
ModelPackage.add_member(:model_package_status, Shapes::ShapeRef.new(shape: ModelPackageStatus, location_name: "ModelPackageStatus"))
|
8507
8514
|
ModelPackage.add_member(:model_package_status_details, Shapes::ShapeRef.new(shape: ModelPackageStatusDetails, location_name: "ModelPackageStatusDetails"))
|
8508
|
-
ModelPackage.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace"))
|
8515
|
+
ModelPackage.add_member(:certify_for_marketplace, Shapes::ShapeRef.new(shape: CertifyForMarketplace, location_name: "CertifyForMarketplace", metadata: {"box" => true}))
|
8509
8516
|
ModelPackage.add_member(:model_approval_status, Shapes::ShapeRef.new(shape: ModelApprovalStatus, location_name: "ModelApprovalStatus"))
|
8510
8517
|
ModelPackage.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
8511
8518
|
ModelPackage.add_member(:metadata_properties, Shapes::ShapeRef.new(shape: MetadataProperties, location_name: "MetadataProperties"))
|
@@ -8715,7 +8722,7 @@ module Aws::SageMaker
|
|
8715
8722
|
|
8716
8723
|
MonitoringContainerArguments.member = Shapes::ShapeRef.new(shape: ContainerArgument)
|
8717
8724
|
|
8718
|
-
MonitoringCsvDatasetFormat.add_member(:header, Shapes::ShapeRef.new(shape: Boolean, location_name: "Header"))
|
8725
|
+
MonitoringCsvDatasetFormat.add_member(:header, Shapes::ShapeRef.new(shape: Boolean, location_name: "Header", metadata: {"box" => true}))
|
8719
8726
|
MonitoringCsvDatasetFormat.struct_class = Types::MonitoringCsvDatasetFormat
|
8720
8727
|
|
8721
8728
|
MonitoringDatasetFormat.add_member(:csv, Shapes::ShapeRef.new(shape: MonitoringCsvDatasetFormat, location_name: "Csv"))
|
@@ -8768,11 +8775,11 @@ module Aws::SageMaker
|
|
8768
8775
|
|
8769
8776
|
MonitoringJobDefinitionSummaryList.member = Shapes::ShapeRef.new(shape: MonitoringJobDefinitionSummary)
|
8770
8777
|
|
8771
|
-
MonitoringJsonDatasetFormat.add_member(:line, Shapes::ShapeRef.new(shape: Boolean, location_name: "Line"))
|
8778
|
+
MonitoringJsonDatasetFormat.add_member(:line, Shapes::ShapeRef.new(shape: Boolean, location_name: "Line", metadata: {"box" => true}))
|
8772
8779
|
MonitoringJsonDatasetFormat.struct_class = Types::MonitoringJsonDatasetFormat
|
8773
8780
|
|
8774
|
-
MonitoringNetworkConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
8775
|
-
MonitoringNetworkConfig.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
8781
|
+
MonitoringNetworkConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption", metadata: {"box" => true}))
|
8782
|
+
MonitoringNetworkConfig.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
8776
8783
|
MonitoringNetworkConfig.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
8777
8784
|
MonitoringNetworkConfig.struct_class = Types::MonitoringNetworkConfig
|
8778
8785
|
|
@@ -8831,7 +8838,7 @@ module Aws::SageMaker
|
|
8831
8838
|
MonitoringStatisticsResource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3Uri"))
|
8832
8839
|
MonitoringStatisticsResource.struct_class = Types::MonitoringStatisticsResource
|
8833
8840
|
|
8834
|
-
MonitoringStoppingCondition.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: MonitoringMaxRuntimeInSeconds, required: true, location_name: "MaxRuntimeInSeconds"))
|
8841
|
+
MonitoringStoppingCondition.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: MonitoringMaxRuntimeInSeconds, required: true, location_name: "MaxRuntimeInSeconds", metadata: {"box" => true}))
|
8835
8842
|
MonitoringStoppingCondition.struct_class = Types::MonitoringStoppingCondition
|
8836
8843
|
|
8837
8844
|
MultiModelConfig.add_member(:model_cache_setting, Shapes::ShapeRef.new(shape: ModelCacheSetting, location_name: "ModelCacheSetting"))
|
@@ -8851,8 +8858,8 @@ module Aws::SageMaker
|
|
8851
8858
|
|
8852
8859
|
NestedFiltersList.member = Shapes::ShapeRef.new(shape: NestedFilters)
|
8853
8860
|
|
8854
|
-
NetworkConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
8855
|
-
NetworkConfig.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
8861
|
+
NetworkConfig.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption", metadata: {"box" => true}))
|
8862
|
+
NetworkConfig.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
8856
8863
|
NetworkConfig.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
8857
8864
|
NetworkConfig.struct_class = Types::NetworkConfig
|
8858
8865
|
|
@@ -8888,13 +8895,13 @@ module Aws::SageMaker
|
|
8888
8895
|
NotificationConfiguration.add_member(:notification_topic_arn, Shapes::ShapeRef.new(shape: NotificationTopicArn, location_name: "NotificationTopicArn"))
|
8889
8896
|
NotificationConfiguration.struct_class = Types::NotificationConfiguration
|
8890
8897
|
|
8891
|
-
ObjectiveStatusCounters.add_member(:succeeded, Shapes::ShapeRef.new(shape: ObjectiveStatusCounter, location_name: "Succeeded"))
|
8892
|
-
ObjectiveStatusCounters.add_member(:pending, Shapes::ShapeRef.new(shape: ObjectiveStatusCounter, location_name: "Pending"))
|
8893
|
-
ObjectiveStatusCounters.add_member(:failed, Shapes::ShapeRef.new(shape: ObjectiveStatusCounter, location_name: "Failed"))
|
8898
|
+
ObjectiveStatusCounters.add_member(:succeeded, Shapes::ShapeRef.new(shape: ObjectiveStatusCounter, location_name: "Succeeded", metadata: {"box" => true}))
|
8899
|
+
ObjectiveStatusCounters.add_member(:pending, Shapes::ShapeRef.new(shape: ObjectiveStatusCounter, location_name: "Pending", metadata: {"box" => true}))
|
8900
|
+
ObjectiveStatusCounters.add_member(:failed, Shapes::ShapeRef.new(shape: ObjectiveStatusCounter, location_name: "Failed", metadata: {"box" => true}))
|
8894
8901
|
ObjectiveStatusCounters.struct_class = Types::ObjectiveStatusCounters
|
8895
8902
|
|
8896
8903
|
OfflineStoreConfig.add_member(:s3_storage_config, Shapes::ShapeRef.new(shape: S3StorageConfig, required: true, location_name: "S3StorageConfig"))
|
8897
|
-
OfflineStoreConfig.add_member(:disable_glue_table_creation, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableGlueTableCreation"))
|
8904
|
+
OfflineStoreConfig.add_member(:disable_glue_table_creation, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableGlueTableCreation", metadata: {"box" => true}))
|
8898
8905
|
OfflineStoreConfig.add_member(:data_catalog_config, Shapes::ShapeRef.new(shape: DataCatalogConfig, location_name: "DataCatalogConfig"))
|
8899
8906
|
OfflineStoreConfig.add_member(:table_format, Shapes::ShapeRef.new(shape: TableFormat, location_name: "TableFormat"))
|
8900
8907
|
OfflineStoreConfig.struct_class = Types::OfflineStoreConfig
|
@@ -8932,7 +8939,7 @@ module Aws::SageMaker
|
|
8932
8939
|
OnStartDeepHealthChecks.member = Shapes::ShapeRef.new(shape: DeepHealthCheckType)
|
8933
8940
|
|
8934
8941
|
OnlineStoreConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: OnlineStoreSecurityConfig, location_name: "SecurityConfig"))
|
8935
|
-
OnlineStoreConfig.add_member(:enable_online_store, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableOnlineStore"))
|
8942
|
+
OnlineStoreConfig.add_member(:enable_online_store, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableOnlineStore", metadata: {"box" => true}))
|
8936
8943
|
OnlineStoreConfig.add_member(:ttl_duration, Shapes::ShapeRef.new(shape: TtlDuration, location_name: "TtlDuration"))
|
8937
8944
|
OnlineStoreConfig.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
8938
8945
|
OnlineStoreConfig.struct_class = Types::OnlineStoreConfig
|
@@ -8982,7 +8989,7 @@ module Aws::SageMaker
|
|
8982
8989
|
OptimizationJobSummary.add_member(:optimization_types, Shapes::ShapeRef.new(shape: OptimizationTypes, required: true, location_name: "OptimizationTypes"))
|
8983
8990
|
OptimizationJobSummary.struct_class = Types::OptimizationJobSummary
|
8984
8991
|
|
8985
|
-
OptimizationModelAccessConfig.add_member(:accept_eula, Shapes::ShapeRef.new(shape: OptimizationModelAcceptEula, required: true, location_name: "AcceptEula"))
|
8992
|
+
OptimizationModelAccessConfig.add_member(:accept_eula, Shapes::ShapeRef.new(shape: OptimizationModelAcceptEula, required: true, location_name: "AcceptEula", metadata: {"box" => true}))
|
8986
8993
|
OptimizationModelAccessConfig.struct_class = Types::OptimizationModelAccessConfig
|
8987
8994
|
|
8988
8995
|
OptimizationOutput.add_member(:recommended_inference_image, Shapes::ShapeRef.new(shape: OptimizationContainerImage, location_name: "RecommendedInferenceImage"))
|
@@ -9022,7 +9029,7 @@ module Aws::SageMaker
|
|
9022
9029
|
OwnershipSettingsSummary.add_member(:owner_user_profile_name, Shapes::ShapeRef.new(shape: UserProfileName, location_name: "OwnerUserProfileName"))
|
9023
9030
|
OwnershipSettingsSummary.struct_class = Types::OwnershipSettingsSummary
|
9024
9031
|
|
9025
|
-
ParallelismConfiguration.add_member(:max_parallel_execution_steps, Shapes::ShapeRef.new(shape: MaxParallelExecutionSteps, required: true, location_name: "MaxParallelExecutionSteps"))
|
9032
|
+
ParallelismConfiguration.add_member(:max_parallel_execution_steps, Shapes::ShapeRef.new(shape: MaxParallelExecutionSteps, required: true, location_name: "MaxParallelExecutionSteps", metadata: {"box" => true}))
|
9026
9033
|
ParallelismConfiguration.struct_class = Types::ParallelismConfiguration
|
9027
9034
|
|
9028
9035
|
Parameter.add_member(:name, Shapes::ShapeRef.new(shape: PipelineParameterName, required: true, location_name: "Name"))
|
@@ -9151,7 +9158,7 @@ module Aws::SageMaker
|
|
9151
9158
|
PipelineExecutionStep.add_member(:cache_hit_result, Shapes::ShapeRef.new(shape: CacheHitResult, location_name: "CacheHitResult"))
|
9152
9159
|
PipelineExecutionStep.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
|
9153
9160
|
PipelineExecutionStep.add_member(:metadata, Shapes::ShapeRef.new(shape: PipelineExecutionStepMetadata, location_name: "Metadata"))
|
9154
|
-
PipelineExecutionStep.add_member(:attempt_count, Shapes::ShapeRef.new(shape: Integer, location_name: "AttemptCount"))
|
9161
|
+
PipelineExecutionStep.add_member(:attempt_count, Shapes::ShapeRef.new(shape: Integer, location_name: "AttemptCount", metadata: {"box" => true}))
|
9155
9162
|
PipelineExecutionStep.add_member(:selective_execution_result, Shapes::ShapeRef.new(shape: SelectiveExecutionResult, location_name: "SelectiveExecutionResult"))
|
9156
9163
|
PipelineExecutionStep.struct_class = Types::PipelineExecutionStep
|
9157
9164
|
|
@@ -9223,7 +9230,7 @@ module Aws::SageMaker
|
|
9223
9230
|
ProcessingFeatureStoreOutput.struct_class = Types::ProcessingFeatureStoreOutput
|
9224
9231
|
|
9225
9232
|
ProcessingInput.add_member(:input_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "InputName"))
|
9226
|
-
ProcessingInput.add_member(:app_managed, Shapes::ShapeRef.new(shape: AppManaged, location_name: "AppManaged"))
|
9233
|
+
ProcessingInput.add_member(:app_managed, Shapes::ShapeRef.new(shape: AppManaged, location_name: "AppManaged", metadata: {"box" => true}))
|
9227
9234
|
ProcessingInput.add_member(:s3_input, Shapes::ShapeRef.new(shape: ProcessingS3Input, location_name: "S3Input"))
|
9228
9235
|
ProcessingInput.add_member(:dataset_definition, Shapes::ShapeRef.new(shape: DatasetDefinition, location_name: "DatasetDefinition"))
|
9229
9236
|
ProcessingInput.struct_class = Types::ProcessingInput
|
@@ -9272,7 +9279,7 @@ module Aws::SageMaker
|
|
9272
9279
|
ProcessingOutput.add_member(:output_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OutputName"))
|
9273
9280
|
ProcessingOutput.add_member(:s3_output, Shapes::ShapeRef.new(shape: ProcessingS3Output, location_name: "S3Output"))
|
9274
9281
|
ProcessingOutput.add_member(:feature_store_output, Shapes::ShapeRef.new(shape: ProcessingFeatureStoreOutput, location_name: "FeatureStoreOutput"))
|
9275
|
-
ProcessingOutput.add_member(:app_managed, Shapes::ShapeRef.new(shape: AppManaged, location_name: "AppManaged"))
|
9282
|
+
ProcessingOutput.add_member(:app_managed, Shapes::ShapeRef.new(shape: AppManaged, location_name: "AppManaged", metadata: {"box" => true}))
|
9276
9283
|
ProcessingOutput.struct_class = Types::ProcessingOutput
|
9277
9284
|
|
9278
9285
|
ProcessingOutputConfig.add_member(:outputs, Shapes::ShapeRef.new(shape: ProcessingOutputs, required: true, location_name: "Outputs"))
|
@@ -9297,7 +9304,7 @@ module Aws::SageMaker
|
|
9297
9304
|
ProcessingS3Output.add_member(:s3_upload_mode, Shapes::ShapeRef.new(shape: ProcessingS3UploadMode, required: true, location_name: "S3UploadMode"))
|
9298
9305
|
ProcessingS3Output.struct_class = Types::ProcessingS3Output
|
9299
9306
|
|
9300
|
-
ProcessingStoppingCondition.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: ProcessingMaxRuntimeInSeconds, required: true, location_name: "MaxRuntimeInSeconds"))
|
9307
|
+
ProcessingStoppingCondition.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: ProcessingMaxRuntimeInSeconds, required: true, location_name: "MaxRuntimeInSeconds", metadata: {"box" => true}))
|
9301
9308
|
ProcessingStoppingCondition.struct_class = Types::ProcessingStoppingCondition
|
9302
9309
|
|
9303
9310
|
ProductListings.member = Shapes::ShapeRef.new(shape: String)
|
@@ -9367,13 +9374,13 @@ module Aws::SageMaker
|
|
9367
9374
|
ProfilerConfig.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3OutputPath"))
|
9368
9375
|
ProfilerConfig.add_member(:profiling_interval_in_milliseconds, Shapes::ShapeRef.new(shape: ProfilingIntervalInMilliseconds, location_name: "ProfilingIntervalInMilliseconds"))
|
9369
9376
|
ProfilerConfig.add_member(:profiling_parameters, Shapes::ShapeRef.new(shape: ProfilingParameters, location_name: "ProfilingParameters"))
|
9370
|
-
ProfilerConfig.add_member(:disable_profiler, Shapes::ShapeRef.new(shape: DisableProfiler, location_name: "DisableProfiler"))
|
9377
|
+
ProfilerConfig.add_member(:disable_profiler, Shapes::ShapeRef.new(shape: DisableProfiler, location_name: "DisableProfiler", metadata: {"box" => true}))
|
9371
9378
|
ProfilerConfig.struct_class = Types::ProfilerConfig
|
9372
9379
|
|
9373
9380
|
ProfilerConfigForUpdate.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3OutputPath"))
|
9374
9381
|
ProfilerConfigForUpdate.add_member(:profiling_interval_in_milliseconds, Shapes::ShapeRef.new(shape: ProfilingIntervalInMilliseconds, location_name: "ProfilingIntervalInMilliseconds"))
|
9375
9382
|
ProfilerConfigForUpdate.add_member(:profiling_parameters, Shapes::ShapeRef.new(shape: ProfilingParameters, location_name: "ProfilingParameters"))
|
9376
|
-
ProfilerConfigForUpdate.add_member(:disable_profiler, Shapes::ShapeRef.new(shape: DisableProfiler, location_name: "DisableProfiler"))
|
9383
|
+
ProfilerConfigForUpdate.add_member(:disable_profiler, Shapes::ShapeRef.new(shape: DisableProfiler, location_name: "DisableProfiler", metadata: {"box" => true}))
|
9377
9384
|
ProfilerConfigForUpdate.struct_class = Types::ProfilerConfigForUpdate
|
9378
9385
|
|
9379
9386
|
ProfilerRuleConfiguration.add_member(:rule_configuration_name, Shapes::ShapeRef.new(shape: RuleConfigurationName, required: true, location_name: "RuleConfigurationName"))
|
@@ -9381,7 +9388,7 @@ module Aws::SageMaker
|
|
9381
9388
|
ProfilerRuleConfiguration.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3OutputPath"))
|
9382
9389
|
ProfilerRuleConfiguration.add_member(:rule_evaluator_image, Shapes::ShapeRef.new(shape: AlgorithmImage, required: true, location_name: "RuleEvaluatorImage"))
|
9383
9390
|
ProfilerRuleConfiguration.add_member(:instance_type, Shapes::ShapeRef.new(shape: ProcessingInstanceType, location_name: "InstanceType"))
|
9384
|
-
ProfilerRuleConfiguration.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: OptionalVolumeSizeInGB, location_name: "VolumeSizeInGB"))
|
9391
|
+
ProfilerRuleConfiguration.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: OptionalVolumeSizeInGB, location_name: "VolumeSizeInGB", metadata: {"box" => true}))
|
9385
9392
|
ProfilerRuleConfiguration.add_member(:rule_parameters, Shapes::ShapeRef.new(shape: RuleParameters, location_name: "RuleParameters"))
|
9386
9393
|
ProfilerRuleConfiguration.struct_class = Types::ProfilerRuleConfiguration
|
9387
9394
|
|
@@ -9455,8 +9462,8 @@ module Aws::SageMaker
|
|
9455
9462
|
QualityCheckStepMetadata.add_member(:model_package_group_name, Shapes::ShapeRef.new(shape: String256, location_name: "ModelPackageGroupName"))
|
9456
9463
|
QualityCheckStepMetadata.add_member(:violation_report, Shapes::ShapeRef.new(shape: String1024, location_name: "ViolationReport"))
|
9457
9464
|
QualityCheckStepMetadata.add_member(:check_job_arn, Shapes::ShapeRef.new(shape: String256, location_name: "CheckJobArn"))
|
9458
|
-
QualityCheckStepMetadata.add_member(:skip_check, Shapes::ShapeRef.new(shape: Boolean, location_name: "SkipCheck"))
|
9459
|
-
QualityCheckStepMetadata.add_member(:register_new_baseline, Shapes::ShapeRef.new(shape: Boolean, location_name: "RegisterNewBaseline"))
|
9465
|
+
QualityCheckStepMetadata.add_member(:skip_check, Shapes::ShapeRef.new(shape: Boolean, location_name: "SkipCheck", metadata: {"box" => true}))
|
9466
|
+
QualityCheckStepMetadata.add_member(:register_new_baseline, Shapes::ShapeRef.new(shape: Boolean, location_name: "RegisterNewBaseline", metadata: {"box" => true}))
|
9460
9467
|
QualityCheckStepMetadata.struct_class = Types::QualityCheckStepMetadata
|
9461
9468
|
|
9462
9469
|
QueryFilters.add_member(:types, Shapes::ShapeRef.new(shape: QueryTypes, location_name: "Types"))
|
@@ -9470,7 +9477,7 @@ module Aws::SageMaker
|
|
9470
9477
|
|
9471
9478
|
QueryLineageRequest.add_member(:start_arns, Shapes::ShapeRef.new(shape: QueryLineageStartArns, location_name: "StartArns"))
|
9472
9479
|
QueryLineageRequest.add_member(:direction, Shapes::ShapeRef.new(shape: Direction, location_name: "Direction"))
|
9473
|
-
QueryLineageRequest.add_member(:include_edges, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeEdges"))
|
9480
|
+
QueryLineageRequest.add_member(:include_edges, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeEdges", metadata: {"box" => true}))
|
9474
9481
|
QueryLineageRequest.add_member(:filters, Shapes::ShapeRef.new(shape: QueryFilters, location_name: "Filters"))
|
9475
9482
|
QueryLineageRequest.add_member(:max_depth, Shapes::ShapeRef.new(shape: QueryLineageMaxDepth, location_name: "MaxDepth"))
|
9476
9483
|
QueryLineageRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: QueryLineageMaxResults, location_name: "MaxResults"))
|
@@ -9572,7 +9579,7 @@ module Aws::SageMaker
|
|
9572
9579
|
RecommendationJobResourceLimit.add_member(:max_parallel_of_tests, Shapes::ShapeRef.new(shape: MaxParallelOfTests, location_name: "MaxParallelOfTests"))
|
9573
9580
|
RecommendationJobResourceLimit.struct_class = Types::RecommendationJobResourceLimit
|
9574
9581
|
|
9575
|
-
RecommendationJobStoppingConditions.add_member(:max_invocations, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxInvocations"))
|
9582
|
+
RecommendationJobStoppingConditions.add_member(:max_invocations, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxInvocations", metadata: {"box" => true}))
|
9576
9583
|
RecommendationJobStoppingConditions.add_member(:model_latency_thresholds, Shapes::ShapeRef.new(shape: ModelLatencyThresholds, location_name: "ModelLatencyThresholds"))
|
9577
9584
|
RecommendationJobStoppingConditions.add_member(:flat_invocations, Shapes::ShapeRef.new(shape: FlatInvocations, location_name: "FlatInvocations"))
|
9578
9585
|
RecommendationJobStoppingConditions.struct_class = Types::RecommendationJobStoppingConditions
|
@@ -9591,10 +9598,10 @@ module Aws::SageMaker
|
|
9591
9598
|
|
9592
9599
|
RecommendationJobVpcSubnets.member = Shapes::ShapeRef.new(shape: RecommendationJobVpcSubnetId)
|
9593
9600
|
|
9594
|
-
RecommendationMetrics.add_member(:cost_per_hour, Shapes::ShapeRef.new(shape: Float, location_name: "CostPerHour"))
|
9595
|
-
RecommendationMetrics.add_member(:cost_per_inference, Shapes::ShapeRef.new(shape: Float, location_name: "CostPerInference"))
|
9596
|
-
RecommendationMetrics.add_member(:max_invocations, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxInvocations"))
|
9597
|
-
RecommendationMetrics.add_member(:model_latency, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelLatency"))
|
9601
|
+
RecommendationMetrics.add_member(:cost_per_hour, Shapes::ShapeRef.new(shape: Float, location_name: "CostPerHour", metadata: {"box" => true}))
|
9602
|
+
RecommendationMetrics.add_member(:cost_per_inference, Shapes::ShapeRef.new(shape: Float, location_name: "CostPerInference", metadata: {"box" => true}))
|
9603
|
+
RecommendationMetrics.add_member(:max_invocations, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxInvocations", metadata: {"box" => true}))
|
9604
|
+
RecommendationMetrics.add_member(:model_latency, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelLatency", metadata: {"box" => true}))
|
9598
9605
|
RecommendationMetrics.add_member(:cpu_utilization, Shapes::ShapeRef.new(shape: UtilizationMetric, location_name: "CpuUtilization"))
|
9599
9606
|
RecommendationMetrics.add_member(:memory_utilization, Shapes::ShapeRef.new(shape: UtilizationMetric, location_name: "MemoryUtilization"))
|
9600
9607
|
RecommendationMetrics.add_member(:model_setup_time, Shapes::ShapeRef.new(shape: ModelSetupTime, location_name: "ModelSetupTime"))
|
@@ -9648,7 +9655,7 @@ module Aws::SageMaker
|
|
9648
9655
|
RepositoryAuthConfig.struct_class = Types::RepositoryAuthConfig
|
9649
9656
|
|
9650
9657
|
ReservedCapacityOffering.add_member(:instance_type, Shapes::ShapeRef.new(shape: ReservedCapacityInstanceType, required: true, location_name: "InstanceType"))
|
9651
|
-
ReservedCapacityOffering.add_member(:instance_count, Shapes::ShapeRef.new(shape: ReservedCapacityInstanceCount, required: true, location_name: "InstanceCount"))
|
9658
|
+
ReservedCapacityOffering.add_member(:instance_count, Shapes::ShapeRef.new(shape: ReservedCapacityInstanceCount, required: true, location_name: "InstanceCount", metadata: {"box" => true}))
|
9652
9659
|
ReservedCapacityOffering.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "AvailabilityZone"))
|
9653
9660
|
ReservedCapacityOffering.add_member(:duration_hours, Shapes::ShapeRef.new(shape: ReservedCapacityDurationHours, location_name: "DurationHours"))
|
9654
9661
|
ReservedCapacityOffering.add_member(:duration_minutes, Shapes::ShapeRef.new(shape: ReservedCapacityDurationMinutes, location_name: "DurationMinutes"))
|
@@ -9685,8 +9692,8 @@ module Aws::SageMaker
|
|
9685
9692
|
ResourceCatalogList.member = Shapes::ShapeRef.new(shape: ResourceCatalog)
|
9686
9693
|
|
9687
9694
|
ResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, location_name: "InstanceType"))
|
9688
|
-
ResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, location_name: "InstanceCount"))
|
9689
|
-
ResourceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: VolumeSizeInGB, required: true, location_name: "VolumeSizeInGB"))
|
9695
|
+
ResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, location_name: "InstanceCount", metadata: {"box" => true}))
|
9696
|
+
ResourceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: VolumeSizeInGB, required: true, location_name: "VolumeSizeInGB", metadata: {"box" => true}))
|
9690
9697
|
ResourceConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
9691
9698
|
ResourceConfig.add_member(:keep_alive_period_in_seconds, Shapes::ShapeRef.new(shape: KeepAlivePeriodInSeconds, location_name: "KeepAlivePeriodInSeconds"))
|
9692
9699
|
ResourceConfig.add_member(:instance_groups, Shapes::ShapeRef.new(shape: InstanceGroups, location_name: "InstanceGroups"))
|
@@ -9703,7 +9710,7 @@ module Aws::SageMaker
|
|
9703
9710
|
ResourceLimitExceeded.struct_class = Types::ResourceLimitExceeded
|
9704
9711
|
|
9705
9712
|
ResourceLimits.add_member(:max_number_of_training_jobs, Shapes::ShapeRef.new(shape: MaxNumberOfTrainingJobs, location_name: "MaxNumberOfTrainingJobs"))
|
9706
|
-
ResourceLimits.add_member(:max_parallel_training_jobs, Shapes::ShapeRef.new(shape: MaxParallelTrainingJobs, required: true, location_name: "MaxParallelTrainingJobs"))
|
9713
|
+
ResourceLimits.add_member(:max_parallel_training_jobs, Shapes::ShapeRef.new(shape: MaxParallelTrainingJobs, required: true, location_name: "MaxParallelTrainingJobs", metadata: {"box" => true}))
|
9707
9714
|
ResourceLimits.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: HyperParameterTuningMaxRuntimeInSeconds, location_name: "MaxRuntimeInSeconds"))
|
9708
9715
|
ResourceLimits.struct_class = Types::ResourceLimits
|
9709
9716
|
|
@@ -9734,7 +9741,7 @@ module Aws::SageMaker
|
|
9734
9741
|
RetryPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
9735
9742
|
RetryPipelineExecutionResponse.struct_class = Types::RetryPipelineExecutionResponse
|
9736
9743
|
|
9737
|
-
RetryStrategy.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttempts, required: true, location_name: "MaximumRetryAttempts"))
|
9744
|
+
RetryStrategy.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttempts, required: true, location_name: "MaximumRetryAttempts", metadata: {"box" => true}))
|
9738
9745
|
RetryStrategy.struct_class = Types::RetryStrategy
|
9739
9746
|
|
9740
9747
|
RollingDeploymentPolicy.add_member(:maximum_batch_size, Shapes::ShapeRef.new(shape: CapacitySizeConfig, required: true, location_name: "MaximumBatchSize"))
|
@@ -9789,12 +9796,12 @@ module Aws::SageMaker
|
|
9789
9796
|
ScalingPolicy.add_member_subclass(:unknown, Types::ScalingPolicy::Unknown)
|
9790
9797
|
ScalingPolicy.struct_class = Types::ScalingPolicy
|
9791
9798
|
|
9792
|
-
ScalingPolicyMetric.add_member(:invocations_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "InvocationsPerInstance"))
|
9793
|
-
ScalingPolicyMetric.add_member(:model_latency, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelLatency"))
|
9799
|
+
ScalingPolicyMetric.add_member(:invocations_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "InvocationsPerInstance", metadata: {"box" => true}))
|
9800
|
+
ScalingPolicyMetric.add_member(:model_latency, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelLatency", metadata: {"box" => true}))
|
9794
9801
|
ScalingPolicyMetric.struct_class = Types::ScalingPolicyMetric
|
9795
9802
|
|
9796
|
-
ScalingPolicyObjective.add_member(:min_invocations_per_minute, Shapes::ShapeRef.new(shape: Integer, location_name: "MinInvocationsPerMinute"))
|
9797
|
-
ScalingPolicyObjective.add_member(:max_invocations_per_minute, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxInvocationsPerMinute"))
|
9803
|
+
ScalingPolicyObjective.add_member(:min_invocations_per_minute, Shapes::ShapeRef.new(shape: Integer, location_name: "MinInvocationsPerMinute", metadata: {"box" => true}))
|
9804
|
+
ScalingPolicyObjective.add_member(:max_invocations_per_minute, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxInvocationsPerMinute", metadata: {"box" => true}))
|
9798
9805
|
ScalingPolicyObjective.struct_class = Types::ScalingPolicyObjective
|
9799
9806
|
|
9800
9807
|
ScheduleConfig.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, required: true, location_name: "ScheduleExpression"))
|
@@ -9840,7 +9847,7 @@ module Aws::SageMaker
|
|
9840
9847
|
SearchRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: ResourcePropertyName, location_name: "SortBy"))
|
9841
9848
|
SearchRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SearchSortOrder, location_name: "SortOrder"))
|
9842
9849
|
SearchRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
9843
|
-
SearchRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"
|
9850
|
+
SearchRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
9844
9851
|
SearchRequest.add_member(:cross_account_filter_option, Shapes::ShapeRef.new(shape: CrossAccountFilterOption, location_name: "CrossAccountFilterOption"))
|
9845
9852
|
SearchRequest.add_member(:visibility_conditions, Shapes::ShapeRef.new(shape: VisibilityConditionsList, location_name: "VisibilityConditions"))
|
9846
9853
|
SearchRequest.struct_class = Types::SearchRequest
|
@@ -9852,8 +9859,8 @@ module Aws::SageMaker
|
|
9852
9859
|
|
9853
9860
|
SearchResultsList.member = Shapes::ShapeRef.new(shape: SearchRecord)
|
9854
9861
|
|
9855
|
-
SearchTrainingPlanOfferingsRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: ReservedCapacityInstanceType,
|
9856
|
-
SearchTrainingPlanOfferingsRequest.add_member(:instance_count, Shapes::ShapeRef.new(shape: ReservedCapacityInstanceCount,
|
9862
|
+
SearchTrainingPlanOfferingsRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: ReservedCapacityInstanceType, location_name: "InstanceType"))
|
9863
|
+
SearchTrainingPlanOfferingsRequest.add_member(:instance_count, Shapes::ShapeRef.new(shape: ReservedCapacityInstanceCount, location_name: "InstanceCount", metadata: {"box" => true}))
|
9857
9864
|
SearchTrainingPlanOfferingsRequest.add_member(:start_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTimeAfter"))
|
9858
9865
|
SearchTrainingPlanOfferingsRequest.add_member(:end_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTimeBefore"))
|
9859
9866
|
SearchTrainingPlanOfferingsRequest.add_member(:duration_hours, Shapes::ShapeRef.new(shape: TrainingPlanDurationHoursInput, required: true, location_name: "DurationHours"))
|
@@ -9923,7 +9930,7 @@ module Aws::SageMaker
|
|
9923
9930
|
ShadowModeConfig.struct_class = Types::ShadowModeConfig
|
9924
9931
|
|
9925
9932
|
ShadowModelVariantConfig.add_member(:shadow_model_variant_name, Shapes::ShapeRef.new(shape: ModelVariantName, required: true, location_name: "ShadowModelVariantName"))
|
9926
|
-
ShadowModelVariantConfig.add_member(:sampling_percentage, Shapes::ShapeRef.new(shape: Percentage, required: true, location_name: "SamplingPercentage"))
|
9933
|
+
ShadowModelVariantConfig.add_member(:sampling_percentage, Shapes::ShapeRef.new(shape: Percentage, required: true, location_name: "SamplingPercentage", metadata: {"box" => true}))
|
9927
9934
|
ShadowModelVariantConfig.struct_class = Types::ShadowModelVariantConfig
|
9928
9935
|
|
9929
9936
|
ShadowModelVariantConfigList.member = Shapes::ShapeRef.new(shape: ShadowModelVariantConfig)
|
@@ -9933,7 +9940,7 @@ module Aws::SageMaker
|
|
9933
9940
|
SharingSettings.add_member(:s3_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "S3KmsKeyId"))
|
9934
9941
|
SharingSettings.struct_class = Types::SharingSettings
|
9935
9942
|
|
9936
|
-
ShuffleConfig.add_member(:seed, Shapes::ShapeRef.new(shape: Seed, required: true, location_name: "Seed"))
|
9943
|
+
ShuffleConfig.add_member(:seed, Shapes::ShapeRef.new(shape: Seed, required: true, location_name: "Seed", metadata: {"box" => true}))
|
9937
9944
|
ShuffleConfig.struct_class = Types::ShuffleConfig
|
9938
9945
|
|
9939
9946
|
SourceAlgorithm.add_member(:model_data_url, Shapes::ShapeRef.new(shape: Url, location_name: "ModelDataUrl"))
|
@@ -9984,6 +9991,7 @@ module Aws::SageMaker
|
|
9984
9991
|
SpaceSettings.add_member(:jupyter_lab_app_settings, Shapes::ShapeRef.new(shape: SpaceJupyterLabAppSettings, location_name: "JupyterLabAppSettings"))
|
9985
9992
|
SpaceSettings.add_member(:app_type, Shapes::ShapeRef.new(shape: AppType, location_name: "AppType"))
|
9986
9993
|
SpaceSettings.add_member(:space_storage_settings, Shapes::ShapeRef.new(shape: SpaceStorageSettings, location_name: "SpaceStorageSettings"))
|
9994
|
+
SpaceSettings.add_member(:space_managed_resources, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "SpaceManagedResources"))
|
9987
9995
|
SpaceSettings.add_member(:custom_file_systems, Shapes::ShapeRef.new(shape: CustomFileSystems, location_name: "CustomFileSystems"))
|
9988
9996
|
SpaceSettings.struct_class = Types::SpaceSettings
|
9989
9997
|
|
@@ -10102,7 +10110,7 @@ module Aws::SageMaker
|
|
10102
10110
|
StopTransformJobRequest.add_member(:transform_job_name, Shapes::ShapeRef.new(shape: TransformJobName, required: true, location_name: "TransformJobName"))
|
10103
10111
|
StopTransformJobRequest.struct_class = Types::StopTransformJobRequest
|
10104
10112
|
|
10105
|
-
StoppingCondition.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: MaxRuntimeInSeconds, location_name: "MaxRuntimeInSeconds"))
|
10113
|
+
StoppingCondition.add_member(:max_runtime_in_seconds, Shapes::ShapeRef.new(shape: MaxRuntimeInSeconds, location_name: "MaxRuntimeInSeconds", metadata: {"box" => true}))
|
10106
10114
|
StoppingCondition.add_member(:max_wait_time_in_seconds, Shapes::ShapeRef.new(shape: MaxWaitTimeInSeconds, location_name: "MaxWaitTimeInSeconds"))
|
10107
10115
|
StoppingCondition.add_member(:max_pending_time_in_seconds, Shapes::ShapeRef.new(shape: MaxPendingTimeInSeconds, location_name: "MaxPendingTimeInSeconds"))
|
10108
10116
|
StoppingCondition.struct_class = Types::StoppingCondition
|
@@ -10140,7 +10148,7 @@ module Aws::SageMaker
|
|
10140
10148
|
TabularJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
10141
10149
|
TabularJobConfig.add_member(:feature_specification_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "FeatureSpecificationS3Uri"))
|
10142
10150
|
TabularJobConfig.add_member(:mode, Shapes::ShapeRef.new(shape: AutoMLMode, location_name: "Mode"))
|
10143
|
-
TabularJobConfig.add_member(:generate_candidate_definitions_only, Shapes::ShapeRef.new(shape: GenerateCandidateDefinitionsOnly, location_name: "GenerateCandidateDefinitionsOnly"))
|
10151
|
+
TabularJobConfig.add_member(:generate_candidate_definitions_only, Shapes::ShapeRef.new(shape: GenerateCandidateDefinitionsOnly, location_name: "GenerateCandidateDefinitionsOnly", metadata: {"box" => true}))
|
10144
10152
|
TabularJobConfig.add_member(:problem_type, Shapes::ShapeRef.new(shape: ProblemType, location_name: "ProblemType"))
|
10145
10153
|
TabularJobConfig.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
|
10146
10154
|
TabularJobConfig.add_member(:sample_weight_attribute_name, Shapes::ShapeRef.new(shape: SampleWeightAttributeName, location_name: "SampleWeightAttributeName"))
|
@@ -10163,7 +10171,7 @@ module Aws::SageMaker
|
|
10163
10171
|
TargetPlatform.struct_class = Types::TargetPlatform
|
10164
10172
|
|
10165
10173
|
TargetTrackingScalingPolicyConfiguration.add_member(:metric_specification, Shapes::ShapeRef.new(shape: MetricSpecification, location_name: "MetricSpecification"))
|
10166
|
-
TargetTrackingScalingPolicyConfiguration.add_member(:target_value, Shapes::ShapeRef.new(shape: Double, location_name: "TargetValue"))
|
10174
|
+
TargetTrackingScalingPolicyConfiguration.add_member(:target_value, Shapes::ShapeRef.new(shape: Double, location_name: "TargetValue", metadata: {"box" => true}))
|
10167
10175
|
TargetTrackingScalingPolicyConfiguration.struct_class = Types::TargetTrackingScalingPolicyConfiguration
|
10168
10176
|
|
10169
10177
|
TaskKeywords.member = Shapes::ShapeRef.new(shape: TaskKeyword)
|
@@ -10232,7 +10240,7 @@ module Aws::SageMaker
|
|
10232
10240
|
TimeSeriesTransformations.add_member(:aggregation, Shapes::ShapeRef.new(shape: AggregationTransformations, location_name: "Aggregation"))
|
10233
10241
|
TimeSeriesTransformations.struct_class = Types::TimeSeriesTransformations
|
10234
10242
|
|
10235
|
-
TotalHits.add_member(:value, Shapes::ShapeRef.new(shape: Long, location_name: "Value"))
|
10243
|
+
TotalHits.add_member(:value, Shapes::ShapeRef.new(shape: Long, location_name: "Value", metadata: {"box" => true}))
|
10236
10244
|
TotalHits.add_member(:relation, Shapes::ShapeRef.new(shape: Relation, location_name: "Relation"))
|
10237
10245
|
TotalHits.struct_class = Types::TotalHits
|
10238
10246
|
|
@@ -10294,9 +10302,9 @@ module Aws::SageMaker
|
|
10294
10302
|
TrainingJob.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
10295
10303
|
TrainingJob.add_member(:secondary_status_transitions, Shapes::ShapeRef.new(shape: SecondaryStatusTransitions, location_name: "SecondaryStatusTransitions"))
|
10296
10304
|
TrainingJob.add_member(:final_metric_data_list, Shapes::ShapeRef.new(shape: FinalMetricDataList, location_name: "FinalMetricDataList"))
|
10297
|
-
TrainingJob.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation"))
|
10298
|
-
TrainingJob.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption"))
|
10299
|
-
TrainingJob.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining"))
|
10305
|
+
TrainingJob.add_member(:enable_network_isolation, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNetworkIsolation", metadata: {"box" => true}))
|
10306
|
+
TrainingJob.add_member(:enable_inter_container_traffic_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableInterContainerTrafficEncryption", metadata: {"box" => true}))
|
10307
|
+
TrainingJob.add_member(:enable_managed_spot_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableManagedSpotTraining", metadata: {"box" => true}))
|
10300
10308
|
TrainingJob.add_member(:checkpoint_config, Shapes::ShapeRef.new(shape: CheckpointConfig, location_name: "CheckpointConfig"))
|
10301
10309
|
TrainingJob.add_member(:training_time_in_seconds, Shapes::ShapeRef.new(shape: TrainingTimeInSeconds, location_name: "TrainingTimeInSeconds"))
|
10302
10310
|
TrainingJob.add_member(:billable_time_in_seconds, Shapes::ShapeRef.new(shape: BillableTimeInSeconds, location_name: "BillableTimeInSeconds"))
|
@@ -10319,11 +10327,11 @@ module Aws::SageMaker
|
|
10319
10327
|
TrainingJobDefinition.add_member(:stopping_condition, Shapes::ShapeRef.new(shape: StoppingCondition, required: true, location_name: "StoppingCondition"))
|
10320
10328
|
TrainingJobDefinition.struct_class = Types::TrainingJobDefinition
|
10321
10329
|
|
10322
|
-
TrainingJobStatusCounters.add_member(:completed, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "Completed"))
|
10323
|
-
TrainingJobStatusCounters.add_member(:in_progress, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "InProgress"))
|
10324
|
-
TrainingJobStatusCounters.add_member(:retryable_error, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "RetryableError"))
|
10325
|
-
TrainingJobStatusCounters.add_member(:non_retryable_error, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "NonRetryableError"))
|
10326
|
-
TrainingJobStatusCounters.add_member(:stopped, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "Stopped"))
|
10330
|
+
TrainingJobStatusCounters.add_member(:completed, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "Completed", metadata: {"box" => true}))
|
10331
|
+
TrainingJobStatusCounters.add_member(:in_progress, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "InProgress", metadata: {"box" => true}))
|
10332
|
+
TrainingJobStatusCounters.add_member(:retryable_error, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "RetryableError", metadata: {"box" => true}))
|
10333
|
+
TrainingJobStatusCounters.add_member(:non_retryable_error, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "NonRetryableError", metadata: {"box" => true}))
|
10334
|
+
TrainingJobStatusCounters.add_member(:stopped, Shapes::ShapeRef.new(shape: TrainingJobStatusCounter, location_name: "Stopped", metadata: {"box" => true}))
|
10327
10335
|
TrainingJobStatusCounters.struct_class = Types::TrainingJobStatusCounters
|
10328
10336
|
|
10329
10337
|
TrainingJobStepMetadata.add_member(:arn, Shapes::ShapeRef.new(shape: TrainingJobArn, location_name: "Arn"))
|
@@ -10389,7 +10397,7 @@ module Aws::SageMaker
|
|
10389
10397
|
TrainingSpecification.add_member(:training_image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "TrainingImageDigest"))
|
10390
10398
|
TrainingSpecification.add_member(:supported_hyper_parameters, Shapes::ShapeRef.new(shape: HyperParameterSpecifications, location_name: "SupportedHyperParameters"))
|
10391
10399
|
TrainingSpecification.add_member(:supported_training_instance_types, Shapes::ShapeRef.new(shape: TrainingInstanceTypes, required: true, location_name: "SupportedTrainingInstanceTypes"))
|
10392
|
-
TrainingSpecification.add_member(:supports_distributed_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDistributedTraining"))
|
10400
|
+
TrainingSpecification.add_member(:supports_distributed_training, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDistributedTraining", metadata: {"box" => true}))
|
10393
10401
|
TrainingSpecification.add_member(:metric_definitions, Shapes::ShapeRef.new(shape: MetricDefinitionList, location_name: "MetricDefinitions"))
|
10394
10402
|
TrainingSpecification.add_member(:training_channels, Shapes::ShapeRef.new(shape: ChannelSpecifications, required: true, location_name: "TrainingChannels"))
|
10395
10403
|
TrainingSpecification.add_member(:supported_tuning_job_objective_metrics, Shapes::ShapeRef.new(shape: HyperParameterTuningJobObjectives, location_name: "SupportedTuningJobObjectiveMetrics"))
|
@@ -10603,9 +10611,9 @@ module Aws::SageMaker
|
|
10603
10611
|
TuningJobStepMetaData.add_member(:arn, Shapes::ShapeRef.new(shape: HyperParameterTuningJobArn, location_name: "Arn"))
|
10604
10612
|
TuningJobStepMetaData.struct_class = Types::TuningJobStepMetaData
|
10605
10613
|
|
10606
|
-
USD.add_member(:dollars, Shapes::ShapeRef.new(shape: Dollars, location_name: "Dollars"))
|
10607
|
-
USD.add_member(:cents, Shapes::ShapeRef.new(shape: Cents, location_name: "Cents"))
|
10608
|
-
USD.add_member(:tenth_fractions_of_a_cent, Shapes::ShapeRef.new(shape: TenthFractionsOfACent, location_name: "TenthFractionsOfACent"))
|
10614
|
+
USD.add_member(:dollars, Shapes::ShapeRef.new(shape: Dollars, location_name: "Dollars", metadata: {"box" => true}))
|
10615
|
+
USD.add_member(:cents, Shapes::ShapeRef.new(shape: Cents, location_name: "Cents", metadata: {"box" => true}))
|
10616
|
+
USD.add_member(:tenth_fractions_of_a_cent, Shapes::ShapeRef.new(shape: TenthFractionsOfACent, location_name: "TenthFractionsOfACent", metadata: {"box" => true}))
|
10609
10617
|
USD.struct_class = Types::USD
|
10610
10618
|
|
10611
10619
|
UiConfig.add_member(:ui_template_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "UiTemplateS3Uri"))
|
@@ -10619,6 +10627,15 @@ module Aws::SageMaker
|
|
10619
10627
|
UiTemplateInfo.add_member(:content_sha_256, Shapes::ShapeRef.new(shape: TemplateContentSha256, location_name: "ContentSha256"))
|
10620
10628
|
UiTemplateInfo.struct_class = Types::UiTemplateInfo
|
10621
10629
|
|
10630
|
+
UnifiedStudioSettings.add_member(:studio_web_portal_access, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "StudioWebPortalAccess"))
|
10631
|
+
UnifiedStudioSettings.add_member(:domain_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "DomainAccountId"))
|
10632
|
+
UnifiedStudioSettings.add_member(:domain_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "DomainRegion"))
|
10633
|
+
UnifiedStudioSettings.add_member(:domain_id, Shapes::ShapeRef.new(shape: UnifiedStudioDomainId, location_name: "DomainId"))
|
10634
|
+
UnifiedStudioSettings.add_member(:project_id, Shapes::ShapeRef.new(shape: UnifiedStudioProjectId, location_name: "ProjectId"))
|
10635
|
+
UnifiedStudioSettings.add_member(:environment_id, Shapes::ShapeRef.new(shape: UnifiedStudioEnvironmentId, location_name: "EnvironmentId"))
|
10636
|
+
UnifiedStudioSettings.add_member(:project_s3_path, Shapes::ShapeRef.new(shape: S3Uri, location_name: "ProjectS3Path"))
|
10637
|
+
UnifiedStudioSettings.struct_class = Types::UnifiedStudioSettings
|
10638
|
+
|
10622
10639
|
UpdateActionRequest.add_member(:action_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, required: true, location_name: "ActionName"))
|
10623
10640
|
UpdateActionRequest.add_member(:description, Shapes::ShapeRef.new(shape: ExperimentDescription, location_name: "Description"))
|
10624
10641
|
UpdateActionRequest.add_member(:status, Shapes::ShapeRef.new(shape: ActionStatus, location_name: "Status"))
|
@@ -10657,13 +10674,13 @@ module Aws::SageMaker
|
|
10657
10674
|
UpdateClusterResponse.struct_class = Types::UpdateClusterResponse
|
10658
10675
|
|
10659
10676
|
UpdateClusterSchedulerConfigRequest.add_member(:cluster_scheduler_config_id, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigId, required: true, location_name: "ClusterSchedulerConfigId"))
|
10660
|
-
UpdateClusterSchedulerConfigRequest.add_member(:target_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TargetVersion"))
|
10677
|
+
UpdateClusterSchedulerConfigRequest.add_member(:target_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TargetVersion", metadata: {"box" => true}))
|
10661
10678
|
UpdateClusterSchedulerConfigRequest.add_member(:scheduler_config, Shapes::ShapeRef.new(shape: SchedulerConfig, location_name: "SchedulerConfig"))
|
10662
10679
|
UpdateClusterSchedulerConfigRequest.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "Description"))
|
10663
10680
|
UpdateClusterSchedulerConfigRequest.struct_class = Types::UpdateClusterSchedulerConfigRequest
|
10664
10681
|
|
10665
10682
|
UpdateClusterSchedulerConfigResponse.add_member(:cluster_scheduler_config_arn, Shapes::ShapeRef.new(shape: ClusterSchedulerConfigArn, required: true, location_name: "ClusterSchedulerConfigArn"))
|
10666
|
-
UpdateClusterSchedulerConfigResponse.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ClusterSchedulerConfigVersion"))
|
10683
|
+
UpdateClusterSchedulerConfigResponse.add_member(:cluster_scheduler_config_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ClusterSchedulerConfigVersion", metadata: {"box" => true}))
|
10667
10684
|
UpdateClusterSchedulerConfigResponse.struct_class = Types::UpdateClusterSchedulerConfigResponse
|
10668
10685
|
|
10669
10686
|
UpdateClusterSoftwareInstanceGroupSpecification.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, required: true, location_name: "InstanceGroupName"))
|
@@ -10687,7 +10704,7 @@ module Aws::SageMaker
|
|
10687
10704
|
UpdateCodeRepositoryOutput.struct_class = Types::UpdateCodeRepositoryOutput
|
10688
10705
|
|
10689
10706
|
UpdateComputeQuotaRequest.add_member(:compute_quota_id, Shapes::ShapeRef.new(shape: ComputeQuotaId, required: true, location_name: "ComputeQuotaId"))
|
10690
|
-
UpdateComputeQuotaRequest.add_member(:target_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TargetVersion"))
|
10707
|
+
UpdateComputeQuotaRequest.add_member(:target_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TargetVersion", metadata: {"box" => true}))
|
10691
10708
|
UpdateComputeQuotaRequest.add_member(:compute_quota_config, Shapes::ShapeRef.new(shape: ComputeQuotaConfig, location_name: "ComputeQuotaConfig"))
|
10692
10709
|
UpdateComputeQuotaRequest.add_member(:compute_quota_target, Shapes::ShapeRef.new(shape: ComputeQuotaTarget, location_name: "ComputeQuotaTarget"))
|
10693
10710
|
UpdateComputeQuotaRequest.add_member(:activation_state, Shapes::ShapeRef.new(shape: ActivationState, location_name: "ActivationState"))
|
@@ -10695,7 +10712,7 @@ module Aws::SageMaker
|
|
10695
10712
|
UpdateComputeQuotaRequest.struct_class = Types::UpdateComputeQuotaRequest
|
10696
10713
|
|
10697
10714
|
UpdateComputeQuotaResponse.add_member(:compute_quota_arn, Shapes::ShapeRef.new(shape: ComputeQuotaArn, required: true, location_name: "ComputeQuotaArn"))
|
10698
|
-
UpdateComputeQuotaResponse.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ComputeQuotaVersion"))
|
10715
|
+
UpdateComputeQuotaResponse.add_member(:compute_quota_version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "ComputeQuotaVersion", metadata: {"box" => true}))
|
10699
10716
|
UpdateComputeQuotaResponse.struct_class = Types::UpdateComputeQuotaResponse
|
10700
10717
|
|
10701
10718
|
UpdateContextRequest.add_member(:context_name, Shapes::ShapeRef.new(shape: ContextName, required: true, location_name: "ContextName"))
|
@@ -10733,10 +10750,10 @@ module Aws::SageMaker
|
|
10733
10750
|
|
10734
10751
|
UpdateEndpointInput.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location_name: "EndpointName"))
|
10735
10752
|
UpdateEndpointInput.add_member(:endpoint_config_name, Shapes::ShapeRef.new(shape: EndpointConfigName, required: true, location_name: "EndpointConfigName"))
|
10736
|
-
UpdateEndpointInput.add_member(:retain_all_variant_properties, Shapes::ShapeRef.new(shape: Boolean, location_name: "RetainAllVariantProperties"))
|
10753
|
+
UpdateEndpointInput.add_member(:retain_all_variant_properties, Shapes::ShapeRef.new(shape: Boolean, location_name: "RetainAllVariantProperties", metadata: {"box" => true}))
|
10737
10754
|
UpdateEndpointInput.add_member(:exclude_retained_variant_properties, Shapes::ShapeRef.new(shape: VariantPropertyList, location_name: "ExcludeRetainedVariantProperties"))
|
10738
10755
|
UpdateEndpointInput.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "DeploymentConfig"))
|
10739
|
-
UpdateEndpointInput.add_member(:retain_deployment_config, Shapes::ShapeRef.new(shape: Boolean, location_name: "RetainDeploymentConfig"))
|
10756
|
+
UpdateEndpointInput.add_member(:retain_deployment_config, Shapes::ShapeRef.new(shape: Boolean, location_name: "RetainDeploymentConfig", metadata: {"box" => true}))
|
10740
10757
|
UpdateEndpointInput.struct_class = Types::UpdateEndpointInput
|
10741
10758
|
|
10742
10759
|
UpdateEndpointOutput.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: EndpointArn, required: true, location_name: "EndpointArn"))
|
@@ -10827,7 +10844,7 @@ module Aws::SageMaker
|
|
10827
10844
|
UpdateImageVersionRequest.add_member(:ml_framework, Shapes::ShapeRef.new(shape: MLFramework, location_name: "MLFramework"))
|
10828
10845
|
UpdateImageVersionRequest.add_member(:programming_lang, Shapes::ShapeRef.new(shape: ProgrammingLang, location_name: "ProgrammingLang"))
|
10829
10846
|
UpdateImageVersionRequest.add_member(:processor, Shapes::ShapeRef.new(shape: Processor, location_name: "Processor"))
|
10830
|
-
UpdateImageVersionRequest.add_member(:horovod, Shapes::ShapeRef.new(shape: Horovod, location_name: "Horovod"))
|
10847
|
+
UpdateImageVersionRequest.add_member(:horovod, Shapes::ShapeRef.new(shape: Horovod, location_name: "Horovod", metadata: {"box" => true}))
|
10831
10848
|
UpdateImageVersionRequest.add_member(:release_notes, Shapes::ShapeRef.new(shape: ReleaseNotes, location_name: "ReleaseNotes"))
|
10832
10849
|
UpdateImageVersionRequest.struct_class = Types::UpdateImageVersionRequest
|
10833
10850
|
|
@@ -10864,7 +10881,7 @@ module Aws::SageMaker
|
|
10864
10881
|
UpdateMlflowTrackingServerRequest.add_member(:tracking_server_name, Shapes::ShapeRef.new(shape: TrackingServerName, required: true, location_name: "TrackingServerName"))
|
10865
10882
|
UpdateMlflowTrackingServerRequest.add_member(:artifact_store_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "ArtifactStoreUri"))
|
10866
10883
|
UpdateMlflowTrackingServerRequest.add_member(:tracking_server_size, Shapes::ShapeRef.new(shape: TrackingServerSize, location_name: "TrackingServerSize"))
|
10867
|
-
UpdateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration"))
|
10884
|
+
UpdateMlflowTrackingServerRequest.add_member(:automatic_model_registration, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutomaticModelRegistration", metadata: {"box" => true}))
|
10868
10885
|
UpdateMlflowTrackingServerRequest.add_member(:weekly_maintenance_window_start, Shapes::ShapeRef.new(shape: WeeklyMaintenanceWindowStart, location_name: "WeeklyMaintenanceWindowStart"))
|
10869
10886
|
UpdateMlflowTrackingServerRequest.struct_class = Types::UpdateMlflowTrackingServerRequest
|
10870
10887
|
|
@@ -10916,14 +10933,14 @@ module Aws::SageMaker
|
|
10916
10933
|
UpdateNotebookInstanceInput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
|
10917
10934
|
UpdateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
10918
10935
|
UpdateNotebookInstanceInput.add_member(:lifecycle_config_name, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigName, location_name: "LifecycleConfigName"))
|
10919
|
-
UpdateNotebookInstanceInput.add_member(:disassociate_lifecycle_config, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceLifecycleConfig, location_name: "DisassociateLifecycleConfig"))
|
10936
|
+
UpdateNotebookInstanceInput.add_member(:disassociate_lifecycle_config, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceLifecycleConfig, location_name: "DisassociateLifecycleConfig", metadata: {"box" => true}))
|
10920
10937
|
UpdateNotebookInstanceInput.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: NotebookInstanceVolumeSizeInGB, location_name: "VolumeSizeInGB"))
|
10921
10938
|
UpdateNotebookInstanceInput.add_member(:default_code_repository, Shapes::ShapeRef.new(shape: CodeRepositoryNameOrUrl, location_name: "DefaultCodeRepository"))
|
10922
10939
|
UpdateNotebookInstanceInput.add_member(:additional_code_repositories, Shapes::ShapeRef.new(shape: AdditionalCodeRepositoryNamesOrUrls, location_name: "AdditionalCodeRepositories"))
|
10923
10940
|
UpdateNotebookInstanceInput.add_member(:accelerator_types, Shapes::ShapeRef.new(shape: NotebookInstanceAcceleratorTypes, location_name: "AcceleratorTypes"))
|
10924
|
-
UpdateNotebookInstanceInput.add_member(:disassociate_accelerator_types, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceAcceleratorTypes, location_name: "DisassociateAcceleratorTypes"))
|
10925
|
-
UpdateNotebookInstanceInput.add_member(:disassociate_default_code_repository, Shapes::ShapeRef.new(shape: DisassociateDefaultCodeRepository, location_name: "DisassociateDefaultCodeRepository"))
|
10926
|
-
UpdateNotebookInstanceInput.add_member(:disassociate_additional_code_repositories, Shapes::ShapeRef.new(shape: DisassociateAdditionalCodeRepositories, location_name: "DisassociateAdditionalCodeRepositories"))
|
10941
|
+
UpdateNotebookInstanceInput.add_member(:disassociate_accelerator_types, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceAcceleratorTypes, location_name: "DisassociateAcceleratorTypes", metadata: {"box" => true}))
|
10942
|
+
UpdateNotebookInstanceInput.add_member(:disassociate_default_code_repository, Shapes::ShapeRef.new(shape: DisassociateDefaultCodeRepository, location_name: "DisassociateDefaultCodeRepository", metadata: {"box" => true}))
|
10943
|
+
UpdateNotebookInstanceInput.add_member(:disassociate_additional_code_repositories, Shapes::ShapeRef.new(shape: DisassociateAdditionalCodeRepositories, location_name: "DisassociateAdditionalCodeRepositories", metadata: {"box" => true}))
|
10927
10944
|
UpdateNotebookInstanceInput.add_member(:root_access, Shapes::ShapeRef.new(shape: RootAccess, location_name: "RootAccess"))
|
10928
10945
|
UpdateNotebookInstanceInput.add_member(:instance_metadata_service_configuration, Shapes::ShapeRef.new(shape: InstanceMetadataServiceConfiguration, location_name: "InstanceMetadataServiceConfiguration"))
|
10929
10946
|
UpdateNotebookInstanceInput.struct_class = Types::UpdateNotebookInstanceInput
|
@@ -11261,8 +11278,8 @@ module Aws::SageMaker
|
|
11261
11278
|
o.http_request_uri = "/"
|
11262
11279
|
o.input = Shapes::ShapeRef.new(shape: CreateAppRequest)
|
11263
11280
|
o.output = Shapes::ShapeRef.new(shape: CreateAppResponse)
|
11264
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11265
11281
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11282
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11266
11283
|
end)
|
11267
11284
|
|
11268
11285
|
api.add_operation(:create_app_image_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11309,8 +11326,8 @@ module Aws::SageMaker
|
|
11309
11326
|
o.http_request_uri = "/"
|
11310
11327
|
o.input = Shapes::ShapeRef.new(shape: CreateClusterRequest)
|
11311
11328
|
o.output = Shapes::ShapeRef.new(shape: CreateClusterResponse)
|
11312
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11313
11329
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11330
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11314
11331
|
end)
|
11315
11332
|
|
11316
11333
|
api.add_operation(:create_cluster_scheduler_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11319,8 +11336,8 @@ module Aws::SageMaker
|
|
11319
11336
|
o.http_request_uri = "/"
|
11320
11337
|
o.input = Shapes::ShapeRef.new(shape: CreateClusterSchedulerConfigRequest)
|
11321
11338
|
o.output = Shapes::ShapeRef.new(shape: CreateClusterSchedulerConfigResponse)
|
11322
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11323
11339
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11340
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11324
11341
|
end)
|
11325
11342
|
|
11326
11343
|
api.add_operation(:create_code_repository, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11347,8 +11364,8 @@ module Aws::SageMaker
|
|
11347
11364
|
o.http_request_uri = "/"
|
11348
11365
|
o.input = Shapes::ShapeRef.new(shape: CreateComputeQuotaRequest)
|
11349
11366
|
o.output = Shapes::ShapeRef.new(shape: CreateComputeQuotaResponse)
|
11350
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11351
11367
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11368
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11352
11369
|
end)
|
11353
11370
|
|
11354
11371
|
api.add_operation(:create_context, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11366,8 +11383,8 @@ module Aws::SageMaker
|
|
11366
11383
|
o.http_request_uri = "/"
|
11367
11384
|
o.input = Shapes::ShapeRef.new(shape: CreateDataQualityJobDefinitionRequest)
|
11368
11385
|
o.output = Shapes::ShapeRef.new(shape: CreateDataQualityJobDefinitionResponse)
|
11369
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11370
11386
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11387
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11371
11388
|
end)
|
11372
11389
|
|
11373
11390
|
api.add_operation(:create_device_fleet, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11386,8 +11403,8 @@ module Aws::SageMaker
|
|
11386
11403
|
o.http_request_uri = "/"
|
11387
11404
|
o.input = Shapes::ShapeRef.new(shape: CreateDomainRequest)
|
11388
11405
|
o.output = Shapes::ShapeRef.new(shape: CreateDomainResponse)
|
11389
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11390
11406
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11407
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11391
11408
|
end)
|
11392
11409
|
|
11393
11410
|
api.add_operation(:create_edge_deployment_plan, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11460,8 +11477,8 @@ module Aws::SageMaker
|
|
11460
11477
|
o.http_request_uri = "/"
|
11461
11478
|
o.input = Shapes::ShapeRef.new(shape: CreateFlowDefinitionRequest)
|
11462
11479
|
o.output = Shapes::ShapeRef.new(shape: CreateFlowDefinitionResponse)
|
11463
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11464
11480
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11481
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11465
11482
|
end)
|
11466
11483
|
|
11467
11484
|
api.add_operation(:create_hub, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11491,8 +11508,8 @@ module Aws::SageMaker
|
|
11491
11508
|
o.http_request_uri = "/"
|
11492
11509
|
o.input = Shapes::ShapeRef.new(shape: CreateHumanTaskUiRequest)
|
11493
11510
|
o.output = Shapes::ShapeRef.new(shape: CreateHumanTaskUiResponse)
|
11494
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11495
11511
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11512
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11496
11513
|
end)
|
11497
11514
|
|
11498
11515
|
api.add_operation(:create_hyper_parameter_tuning_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11521,9 +11538,9 @@ module Aws::SageMaker
|
|
11521
11538
|
o.http_request_uri = "/"
|
11522
11539
|
o.input = Shapes::ShapeRef.new(shape: CreateImageVersionRequest)
|
11523
11540
|
o.output = Shapes::ShapeRef.new(shape: CreateImageVersionResponse)
|
11541
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11524
11542
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11525
11543
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11526
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11527
11544
|
end)
|
11528
11545
|
|
11529
11546
|
api.add_operation(:create_inference_component, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11589,8 +11606,8 @@ module Aws::SageMaker
|
|
11589
11606
|
o.http_request_uri = "/"
|
11590
11607
|
o.input = Shapes::ShapeRef.new(shape: CreateModelBiasJobDefinitionRequest)
|
11591
11608
|
o.output = Shapes::ShapeRef.new(shape: CreateModelBiasJobDefinitionResponse)
|
11592
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11593
11609
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11610
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11594
11611
|
end)
|
11595
11612
|
|
11596
11613
|
api.add_operation(:create_model_card, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11599,8 +11616,8 @@ module Aws::SageMaker
|
|
11599
11616
|
o.http_request_uri = "/"
|
11600
11617
|
o.input = Shapes::ShapeRef.new(shape: CreateModelCardRequest)
|
11601
11618
|
o.output = Shapes::ShapeRef.new(shape: CreateModelCardResponse)
|
11602
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11603
11619
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11620
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11604
11621
|
end)
|
11605
11622
|
|
11606
11623
|
api.add_operation(:create_model_card_export_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11609,9 +11626,9 @@ module Aws::SageMaker
|
|
11609
11626
|
o.http_request_uri = "/"
|
11610
11627
|
o.input = Shapes::ShapeRef.new(shape: CreateModelCardExportJobRequest)
|
11611
11628
|
o.output = Shapes::ShapeRef.new(shape: CreateModelCardExportJobResponse)
|
11629
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11612
11630
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11613
11631
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11614
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11615
11632
|
end)
|
11616
11633
|
|
11617
11634
|
api.add_operation(:create_model_explainability_job_definition, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11620,8 +11637,8 @@ module Aws::SageMaker
|
|
11620
11637
|
o.http_request_uri = "/"
|
11621
11638
|
o.input = Shapes::ShapeRef.new(shape: CreateModelExplainabilityJobDefinitionRequest)
|
11622
11639
|
o.output = Shapes::ShapeRef.new(shape: CreateModelExplainabilityJobDefinitionResponse)
|
11623
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11624
11640
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11641
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11625
11642
|
end)
|
11626
11643
|
|
11627
11644
|
api.add_operation(:create_model_package, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11649,8 +11666,8 @@ module Aws::SageMaker
|
|
11649
11666
|
o.http_request_uri = "/"
|
11650
11667
|
o.input = Shapes::ShapeRef.new(shape: CreateModelQualityJobDefinitionRequest)
|
11651
11668
|
o.output = Shapes::ShapeRef.new(shape: CreateModelQualityJobDefinitionResponse)
|
11652
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11653
11669
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11670
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11654
11671
|
end)
|
11655
11672
|
|
11656
11673
|
api.add_operation(:create_monitoring_schedule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11659,8 +11676,8 @@ module Aws::SageMaker
|
|
11659
11676
|
o.http_request_uri = "/"
|
11660
11677
|
o.input = Shapes::ShapeRef.new(shape: CreateMonitoringScheduleRequest)
|
11661
11678
|
o.output = Shapes::ShapeRef.new(shape: CreateMonitoringScheduleResponse)
|
11662
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11663
11679
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11680
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11664
11681
|
end)
|
11665
11682
|
|
11666
11683
|
api.add_operation(:create_notebook_instance, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11697,8 +11714,8 @@ module Aws::SageMaker
|
|
11697
11714
|
o.http_request_uri = "/"
|
11698
11715
|
o.input = Shapes::ShapeRef.new(shape: CreatePartnerAppRequest)
|
11699
11716
|
o.output = Shapes::ShapeRef.new(shape: CreatePartnerAppResponse)
|
11700
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11701
11717
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11718
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11702
11719
|
end)
|
11703
11720
|
|
11704
11721
|
api.add_operation(:create_partner_app_presigned_url, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11716,9 +11733,9 @@ module Aws::SageMaker
|
|
11716
11733
|
o.http_request_uri = "/"
|
11717
11734
|
o.input = Shapes::ShapeRef.new(shape: CreatePipelineRequest)
|
11718
11735
|
o.output = Shapes::ShapeRef.new(shape: CreatePipelineResponse)
|
11736
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11719
11737
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11720
11738
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11721
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11722
11739
|
end)
|
11723
11740
|
|
11724
11741
|
api.add_operation(:create_presigned_domain_url, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11753,9 +11770,9 @@ module Aws::SageMaker
|
|
11753
11770
|
o.http_request_uri = "/"
|
11754
11771
|
o.input = Shapes::ShapeRef.new(shape: CreateProcessingJobRequest)
|
11755
11772
|
o.output = Shapes::ShapeRef.new(shape: CreateProcessingJobResponse)
|
11773
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11756
11774
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11757
11775
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11758
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11759
11776
|
end)
|
11760
11777
|
|
11761
11778
|
api.add_operation(:create_project, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11773,8 +11790,8 @@ module Aws::SageMaker
|
|
11773
11790
|
o.http_request_uri = "/"
|
11774
11791
|
o.input = Shapes::ShapeRef.new(shape: CreateSpaceRequest)
|
11775
11792
|
o.output = Shapes::ShapeRef.new(shape: CreateSpaceResponse)
|
11776
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11777
11793
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11794
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11778
11795
|
end)
|
11779
11796
|
|
11780
11797
|
api.add_operation(:create_studio_lifecycle_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11792,9 +11809,9 @@ module Aws::SageMaker
|
|
11792
11809
|
o.http_request_uri = "/"
|
11793
11810
|
o.input = Shapes::ShapeRef.new(shape: CreateTrainingJobRequest)
|
11794
11811
|
o.output = Shapes::ShapeRef.new(shape: CreateTrainingJobResponse)
|
11812
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11795
11813
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11796
11814
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11797
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11798
11815
|
end)
|
11799
11816
|
|
11800
11817
|
api.add_operation(:create_training_plan, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11803,9 +11820,9 @@ module Aws::SageMaker
|
|
11803
11820
|
o.http_request_uri = "/"
|
11804
11821
|
o.input = Shapes::ShapeRef.new(shape: CreateTrainingPlanRequest)
|
11805
11822
|
o.output = Shapes::ShapeRef.new(shape: CreateTrainingPlanResponse)
|
11806
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11807
11823
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11808
11824
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11825
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11809
11826
|
end)
|
11810
11827
|
|
11811
11828
|
api.add_operation(:create_transform_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11814,9 +11831,9 @@ module Aws::SageMaker
|
|
11814
11831
|
o.http_request_uri = "/"
|
11815
11832
|
o.input = Shapes::ShapeRef.new(shape: CreateTransformJobRequest)
|
11816
11833
|
o.output = Shapes::ShapeRef.new(shape: CreateTransformJobResponse)
|
11834
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11817
11835
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11818
11836
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11819
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11820
11837
|
end)
|
11821
11838
|
|
11822
11839
|
api.add_operation(:create_trial, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11844,8 +11861,8 @@ module Aws::SageMaker
|
|
11844
11861
|
o.http_request_uri = "/"
|
11845
11862
|
o.input = Shapes::ShapeRef.new(shape: CreateUserProfileRequest)
|
11846
11863
|
o.output = Shapes::ShapeRef.new(shape: CreateUserProfileResponse)
|
11847
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11848
11864
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11865
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11849
11866
|
end)
|
11850
11867
|
|
11851
11868
|
api.add_operation(:create_workforce, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11890,8 +11907,8 @@ module Aws::SageMaker
|
|
11890
11907
|
o.http_request_uri = "/"
|
11891
11908
|
o.input = Shapes::ShapeRef.new(shape: DeleteAppRequest)
|
11892
11909
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
11893
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11894
11910
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11911
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
11895
11912
|
end)
|
11896
11913
|
|
11897
11914
|
api.add_operation(:delete_app_image_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11927,8 +11944,8 @@ module Aws::SageMaker
|
|
11927
11944
|
o.http_request_uri = "/"
|
11928
11945
|
o.input = Shapes::ShapeRef.new(shape: DeleteClusterRequest)
|
11929
11946
|
o.output = Shapes::ShapeRef.new(shape: DeleteClusterResponse)
|
11930
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11931
11947
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
11948
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
11932
11949
|
end)
|
11933
11950
|
|
11934
11951
|
api.add_operation(:delete_cluster_scheduler_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -11999,8 +12016,8 @@ module Aws::SageMaker
|
|
11999
12016
|
o.http_request_uri = "/"
|
12000
12017
|
o.input = Shapes::ShapeRef.new(shape: DeleteDomainRequest)
|
12001
12018
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
12002
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12003
12019
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12020
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12004
12021
|
end)
|
12005
12022
|
|
12006
12023
|
api.add_operation(:delete_edge_deployment_plan, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12061,8 +12078,8 @@ module Aws::SageMaker
|
|
12061
12078
|
o.http_request_uri = "/"
|
12062
12079
|
o.input = Shapes::ShapeRef.new(shape: DeleteFlowDefinitionRequest)
|
12063
12080
|
o.output = Shapes::ShapeRef.new(shape: DeleteFlowDefinitionResponse)
|
12064
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12065
12081
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12082
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12066
12083
|
end)
|
12067
12084
|
|
12068
12085
|
api.add_operation(:delete_hub, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12071,8 +12088,8 @@ module Aws::SageMaker
|
|
12071
12088
|
o.http_request_uri = "/"
|
12072
12089
|
o.input = Shapes::ShapeRef.new(shape: DeleteHubRequest)
|
12073
12090
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
12074
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12075
12091
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12092
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12076
12093
|
end)
|
12077
12094
|
|
12078
12095
|
api.add_operation(:delete_hub_content, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12081,8 +12098,8 @@ module Aws::SageMaker
|
|
12081
12098
|
o.http_request_uri = "/"
|
12082
12099
|
o.input = Shapes::ShapeRef.new(shape: DeleteHubContentRequest)
|
12083
12100
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
12084
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12085
12101
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12102
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12086
12103
|
end)
|
12087
12104
|
|
12088
12105
|
api.add_operation(:delete_hub_content_reference, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12117,8 +12134,8 @@ module Aws::SageMaker
|
|
12117
12134
|
o.http_request_uri = "/"
|
12118
12135
|
o.input = Shapes::ShapeRef.new(shape: DeleteImageRequest)
|
12119
12136
|
o.output = Shapes::ShapeRef.new(shape: DeleteImageResponse)
|
12120
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12121
12137
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12138
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12122
12139
|
end)
|
12123
12140
|
|
12124
12141
|
api.add_operation(:delete_image_version, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12127,8 +12144,8 @@ module Aws::SageMaker
|
|
12127
12144
|
o.http_request_uri = "/"
|
12128
12145
|
o.input = Shapes::ShapeRef.new(shape: DeleteImageVersionRequest)
|
12129
12146
|
o.output = Shapes::ShapeRef.new(shape: DeleteImageVersionResponse)
|
12130
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12131
12147
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12148
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12132
12149
|
end)
|
12133
12150
|
|
12134
12151
|
api.add_operation(:delete_inference_component, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12181,8 +12198,8 @@ module Aws::SageMaker
|
|
12181
12198
|
o.http_request_uri = "/"
|
12182
12199
|
o.input = Shapes::ShapeRef.new(shape: DeleteModelCardRequest)
|
12183
12200
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
12184
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12185
12201
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
12202
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12186
12203
|
end)
|
12187
12204
|
|
12188
12205
|
api.add_operation(:delete_model_explainability_job_definition, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12269,8 +12286,8 @@ module Aws::SageMaker
|
|
12269
12286
|
o.http_request_uri = "/"
|
12270
12287
|
o.input = Shapes::ShapeRef.new(shape: DeletePartnerAppRequest)
|
12271
12288
|
o.output = Shapes::ShapeRef.new(shape: DeletePartnerAppResponse)
|
12272
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12273
12289
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
12290
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12274
12291
|
end)
|
12275
12292
|
|
12276
12293
|
api.add_operation(:delete_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12279,8 +12296,8 @@ module Aws::SageMaker
|
|
12279
12296
|
o.http_request_uri = "/"
|
12280
12297
|
o.input = Shapes::ShapeRef.new(shape: DeletePipelineRequest)
|
12281
12298
|
o.output = Shapes::ShapeRef.new(shape: DeletePipelineResponse)
|
12282
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12283
12299
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
12300
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12284
12301
|
end)
|
12285
12302
|
|
12286
12303
|
api.add_operation(:delete_project, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12298,8 +12315,8 @@ module Aws::SageMaker
|
|
12298
12315
|
o.http_request_uri = "/"
|
12299
12316
|
o.input = Shapes::ShapeRef.new(shape: DeleteSpaceRequest)
|
12300
12317
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
12301
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12302
12318
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12319
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12303
12320
|
end)
|
12304
12321
|
|
12305
12322
|
api.add_operation(:delete_studio_lifecycle_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -12344,8 +12361,8 @@ module Aws::SageMaker
|
|
12344
12361
|
o.http_request_uri = "/"
|
12345
12362
|
o.input = Shapes::ShapeRef.new(shape: DeleteUserProfileRequest)
|
12346
12363
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
12347
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12348
12364
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
12365
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
12349
12366
|
end)
|
12350
12367
|
|
12351
12368
|
api.add_operation(:delete_workforce, Seahorse::Model::Operation.new.tap do |o|
|
@@ -13044,9 +13061,9 @@ module Aws::SageMaker
|
|
13044
13061
|
o.http_request_uri = "/"
|
13045
13062
|
o.input = Shapes::ShapeRef.new(shape: ImportHubContentRequest)
|
13046
13063
|
o.output = Shapes::ShapeRef.new(shape: ImportHubContentResponse)
|
13064
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
13047
13065
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
13048
13066
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
13049
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
13050
13067
|
end)
|
13051
13068
|
|
13052
13069
|
api.add_operation(:list_actions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14235,9 +14252,9 @@ module Aws::SageMaker
|
|
14235
14252
|
o.http_request_uri = "/"
|
14236
14253
|
o.input = Shapes::ShapeRef.new(shape: RetryPipelineExecutionRequest)
|
14237
14254
|
o.output = Shapes::ShapeRef.new(shape: RetryPipelineExecutionResponse)
|
14255
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14238
14256
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14239
14257
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14240
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14241
14258
|
end)
|
14242
14259
|
|
14243
14260
|
api.add_operation(:search, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14269,9 +14286,9 @@ module Aws::SageMaker
|
|
14269
14286
|
o.http_request_uri = "/"
|
14270
14287
|
o.input = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepFailureRequest)
|
14271
14288
|
o.output = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepFailureResponse)
|
14289
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14272
14290
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14273
14291
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14274
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14275
14292
|
end)
|
14276
14293
|
|
14277
14294
|
api.add_operation(:send_pipeline_execution_step_success, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14280,9 +14297,9 @@ module Aws::SageMaker
|
|
14280
14297
|
o.http_request_uri = "/"
|
14281
14298
|
o.input = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepSuccessRequest)
|
14282
14299
|
o.output = Shapes::ShapeRef.new(shape: SendPipelineExecutionStepSuccessResponse)
|
14300
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14283
14301
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14284
14302
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14285
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14286
14303
|
end)
|
14287
14304
|
|
14288
14305
|
api.add_operation(:start_edge_deployment_stage, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14309,8 +14326,8 @@ module Aws::SageMaker
|
|
14309
14326
|
o.http_request_uri = "/"
|
14310
14327
|
o.input = Shapes::ShapeRef.new(shape: StartMlflowTrackingServerRequest)
|
14311
14328
|
o.output = Shapes::ShapeRef.new(shape: StartMlflowTrackingServerResponse)
|
14312
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14313
14329
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14330
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14314
14331
|
end)
|
14315
14332
|
|
14316
14333
|
api.add_operation(:start_monitoring_schedule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14337,9 +14354,9 @@ module Aws::SageMaker
|
|
14337
14354
|
o.http_request_uri = "/"
|
14338
14355
|
o.input = Shapes::ShapeRef.new(shape: StartPipelineExecutionRequest)
|
14339
14356
|
o.output = Shapes::ShapeRef.new(shape: StartPipelineExecutionResponse)
|
14357
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14340
14358
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14341
14359
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14342
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14343
14360
|
end)
|
14344
14361
|
|
14345
14362
|
api.add_operation(:stop_auto_ml_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14419,8 +14436,8 @@ module Aws::SageMaker
|
|
14419
14436
|
o.http_request_uri = "/"
|
14420
14437
|
o.input = Shapes::ShapeRef.new(shape: StopMlflowTrackingServerRequest)
|
14421
14438
|
o.output = Shapes::ShapeRef.new(shape: StopMlflowTrackingServerResponse)
|
14422
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14423
14439
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14440
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14424
14441
|
end)
|
14425
14442
|
|
14426
14443
|
api.add_operation(:stop_monitoring_schedule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14455,8 +14472,8 @@ module Aws::SageMaker
|
|
14455
14472
|
o.http_request_uri = "/"
|
14456
14473
|
o.input = Shapes::ShapeRef.new(shape: StopPipelineExecutionRequest)
|
14457
14474
|
o.output = Shapes::ShapeRef.new(shape: StopPipelineExecutionResponse)
|
14458
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14459
14475
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14476
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14460
14477
|
end)
|
14461
14478
|
|
14462
14479
|
api.add_operation(:stop_processing_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14521,9 +14538,9 @@ module Aws::SageMaker
|
|
14521
14538
|
o.http_request_uri = "/"
|
14522
14539
|
o.input = Shapes::ShapeRef.new(shape: UpdateClusterRequest)
|
14523
14540
|
o.output = Shapes::ShapeRef.new(shape: UpdateClusterResponse)
|
14524
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14525
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14526
14541
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14542
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14543
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14527
14544
|
end)
|
14528
14545
|
|
14529
14546
|
api.add_operation(:update_cluster_scheduler_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14532,9 +14549,9 @@ module Aws::SageMaker
|
|
14532
14549
|
o.http_request_uri = "/"
|
14533
14550
|
o.input = Shapes::ShapeRef.new(shape: UpdateClusterSchedulerConfigRequest)
|
14534
14551
|
o.output = Shapes::ShapeRef.new(shape: UpdateClusterSchedulerConfigResponse)
|
14552
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14535
14553
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14536
14554
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14537
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14538
14555
|
end)
|
14539
14556
|
|
14540
14557
|
api.add_operation(:update_cluster_software, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14543,8 +14560,8 @@ module Aws::SageMaker
|
|
14543
14560
|
o.http_request_uri = "/"
|
14544
14561
|
o.input = Shapes::ShapeRef.new(shape: UpdateClusterSoftwareRequest)
|
14545
14562
|
o.output = Shapes::ShapeRef.new(shape: UpdateClusterSoftwareResponse)
|
14546
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14547
14563
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14564
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14548
14565
|
end)
|
14549
14566
|
|
14550
14567
|
api.add_operation(:update_code_repository, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14562,9 +14579,9 @@ module Aws::SageMaker
|
|
14562
14579
|
o.http_request_uri = "/"
|
14563
14580
|
o.input = Shapes::ShapeRef.new(shape: UpdateComputeQuotaRequest)
|
14564
14581
|
o.output = Shapes::ShapeRef.new(shape: UpdateComputeQuotaResponse)
|
14582
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14565
14583
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14566
14584
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14567
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14568
14585
|
end)
|
14569
14586
|
|
14570
14587
|
api.add_operation(:update_context, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14600,9 +14617,9 @@ module Aws::SageMaker
|
|
14600
14617
|
o.http_request_uri = "/"
|
14601
14618
|
o.input = Shapes::ShapeRef.new(shape: UpdateDomainRequest)
|
14602
14619
|
o.output = Shapes::ShapeRef.new(shape: UpdateDomainResponse)
|
14603
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14604
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14605
14620
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14621
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14622
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14606
14623
|
end)
|
14607
14624
|
|
14608
14625
|
api.add_operation(:update_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14687,8 +14704,8 @@ module Aws::SageMaker
|
|
14687
14704
|
o.http_request_uri = "/"
|
14688
14705
|
o.input = Shapes::ShapeRef.new(shape: UpdateImageRequest)
|
14689
14706
|
o.output = Shapes::ShapeRef.new(shape: UpdateImageResponse)
|
14690
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14691
14707
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14708
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14692
14709
|
end)
|
14693
14710
|
|
14694
14711
|
api.add_operation(:update_image_version, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14697,8 +14714,8 @@ module Aws::SageMaker
|
|
14697
14714
|
o.http_request_uri = "/"
|
14698
14715
|
o.input = Shapes::ShapeRef.new(shape: UpdateImageVersionRequest)
|
14699
14716
|
o.output = Shapes::ShapeRef.new(shape: UpdateImageVersionResponse)
|
14700
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14701
14717
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14718
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14702
14719
|
end)
|
14703
14720
|
|
14704
14721
|
api.add_operation(:update_inference_component, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14735,9 +14752,9 @@ module Aws::SageMaker
|
|
14735
14752
|
o.http_request_uri = "/"
|
14736
14753
|
o.input = Shapes::ShapeRef.new(shape: UpdateMlflowTrackingServerRequest)
|
14737
14754
|
o.output = Shapes::ShapeRef.new(shape: UpdateMlflowTrackingServerResponse)
|
14755
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14738
14756
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14739
14757
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14740
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14741
14758
|
end)
|
14742
14759
|
|
14743
14760
|
api.add_operation(:update_model_card, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14746,9 +14763,9 @@ module Aws::SageMaker
|
|
14746
14763
|
o.http_request_uri = "/"
|
14747
14764
|
o.input = Shapes::ShapeRef.new(shape: UpdateModelCardRequest)
|
14748
14765
|
o.output = Shapes::ShapeRef.new(shape: UpdateModelCardResponse)
|
14766
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14749
14767
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14750
14768
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14751
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14752
14769
|
end)
|
14753
14770
|
|
14754
14771
|
api.add_operation(:update_model_package, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14766,8 +14783,8 @@ module Aws::SageMaker
|
|
14766
14783
|
o.http_request_uri = "/"
|
14767
14784
|
o.input = Shapes::ShapeRef.new(shape: UpdateMonitoringAlertRequest)
|
14768
14785
|
o.output = Shapes::ShapeRef.new(shape: UpdateMonitoringAlertResponse)
|
14769
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14770
14786
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14787
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14771
14788
|
end)
|
14772
14789
|
|
14773
14790
|
api.add_operation(:update_monitoring_schedule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14776,8 +14793,8 @@ module Aws::SageMaker
|
|
14776
14793
|
o.http_request_uri = "/"
|
14777
14794
|
o.input = Shapes::ShapeRef.new(shape: UpdateMonitoringScheduleRequest)
|
14778
14795
|
o.output = Shapes::ShapeRef.new(shape: UpdateMonitoringScheduleResponse)
|
14779
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14780
14796
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14797
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14781
14798
|
end)
|
14782
14799
|
|
14783
14800
|
api.add_operation(:update_notebook_instance, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14804,8 +14821,8 @@ module Aws::SageMaker
|
|
14804
14821
|
o.http_request_uri = "/"
|
14805
14822
|
o.input = Shapes::ShapeRef.new(shape: UpdatePartnerAppRequest)
|
14806
14823
|
o.output = Shapes::ShapeRef.new(shape: UpdatePartnerAppResponse)
|
14807
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14808
14824
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14825
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14809
14826
|
end)
|
14810
14827
|
|
14811
14828
|
api.add_operation(:update_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14814,8 +14831,8 @@ module Aws::SageMaker
|
|
14814
14831
|
o.http_request_uri = "/"
|
14815
14832
|
o.input = Shapes::ShapeRef.new(shape: UpdatePipelineRequest)
|
14816
14833
|
o.output = Shapes::ShapeRef.new(shape: UpdatePipelineResponse)
|
14817
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14818
14834
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14835
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14819
14836
|
end)
|
14820
14837
|
|
14821
14838
|
api.add_operation(:update_pipeline_execution, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14824,8 +14841,8 @@ module Aws::SageMaker
|
|
14824
14841
|
o.http_request_uri = "/"
|
14825
14842
|
o.input = Shapes::ShapeRef.new(shape: UpdatePipelineExecutionRequest)
|
14826
14843
|
o.output = Shapes::ShapeRef.new(shape: UpdatePipelineExecutionResponse)
|
14827
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14828
14844
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
14845
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14829
14846
|
end)
|
14830
14847
|
|
14831
14848
|
api.add_operation(:update_project, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14843,9 +14860,9 @@ module Aws::SageMaker
|
|
14843
14860
|
o.http_request_uri = "/"
|
14844
14861
|
o.input = Shapes::ShapeRef.new(shape: UpdateSpaceRequest)
|
14845
14862
|
o.output = Shapes::ShapeRef.new(shape: UpdateSpaceResponse)
|
14846
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14847
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14848
14863
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14864
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14865
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14849
14866
|
end)
|
14850
14867
|
|
14851
14868
|
api.add_operation(:update_training_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -14884,9 +14901,9 @@ module Aws::SageMaker
|
|
14884
14901
|
o.http_request_uri = "/"
|
14885
14902
|
o.input = Shapes::ShapeRef.new(shape: UpdateUserProfileRequest)
|
14886
14903
|
o.output = Shapes::ShapeRef.new(shape: UpdateUserProfileResponse)
|
14887
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14888
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14889
14904
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14905
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
14906
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14890
14907
|
end)
|
14891
14908
|
|
14892
14909
|
api.add_operation(:update_workforce, Seahorse::Model::Operation.new.tap do |o|
|