diff --git a/.changes/2.1217.0.json b/.changes/2.1217.0.json new file mode 100644 index 0000000000..c433e33815 --- /dev/null +++ b/.changes/2.1217.0.json @@ -0,0 +1,17 @@ +[ + { + "type": "feature", + "category": "DynamoDB", + "description": "Increased DynamoDB transaction limit from 25 to 100." + }, + { + "type": "feature", + "category": "EC2", + "description": "This feature allows customers to create tags for vpc-endpoint-connections and vpc-endpoint-service-permissions." + }, + { + "type": "feature", + "category": "SageMaker", + "description": "Amazon SageMaker Automatic Model Tuning now supports specifying Hyperband strategy for tuning jobs, which uses a multi-fidelity based tuning strategy to stop underperforming hyperparameter configurations early." + } +] \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index b84c5730bb..7d6dd66383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # Changelog for AWS SDK for JavaScript - + +## 2.1217.0 +* feature: DynamoDB: Increased DynamoDB transaction limit from 25 to 100. +* feature: EC2: This feature allows customers to create tags for vpc-endpoint-connections and vpc-endpoint-service-permissions. +* feature: SageMaker: Amazon SageMaker Automatic Model Tuning now supports specifying Hyperband strategy for tuning jobs, which uses a multi-fidelity based tuning strategy to stop underperforming hyperparameter configurations early. + ## 2.1216.0 * feature: AmplifyUIBuilder: Amplify Studio UIBuilder is introducing forms functionality. Forms can be configured from Data Store models, JSON, or from scratch. These forms can then be generated in your project and used like any other React components. * feature: EC2: This update introduces API operations to manage and create local gateway route tables, CoIP pools, and VIF group associations. diff --git a/README.md b/README.md index 9b26e13630..3811079e5d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma To use the SDK in the browser, simply add the following script tag to your HTML pages: - + You can also build a custom browser SDK with your specified set of AWS services. This can allow you to reduce the SDK's size, specify different API versions of diff --git a/apis/dynamodb-2012-08-10.normal.json b/apis/dynamodb-2012-08-10.normal.json index 772ef1f601..7dbec56ede 100644 --- a/apis/dynamodb-2012-08-10.normal.json +++ b/apis/dynamodb-2012-08-10.normal.json @@ -1159,7 +1159,7 @@ "shape": "InternalServerError" } ], - "documentation": "
TransactGetItems
is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems
call can contain up to 25 TransactGetItem
objects, each of which contains a Get
structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems
cannot retrieve items from tables in more than one Amazon Web Services account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB.
DynamoDB rejects the entire TransactGetItems
request if any of the following is true:
A conflicting operation is in the process of updating an item to be read.
There is insufficient provisioned capacity for the transaction to be completed.
There is a user error, such as an invalid data format.
The aggregate size of the items in the transaction cannot exceed 4 MB.
TransactGetItems
is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems
call can contain up to 100 TransactGetItem
objects, each of which contains a Get
structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems
cannot retrieve items from tables in more than one Amazon Web Services account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB.
DynamoDB rejects the entire TransactGetItems
request if any of the following is true:
A conflicting operation is in the process of updating an item to be read.
There is insufficient provisioned capacity for the transaction to be completed.
There is a user error, such as an invalid data format.
The aggregate size of the items in the transaction cannot exceed 4 MB.
TransactWriteItems
is a synchronous write operation that groups up to 25 action requests. These actions can target items in different tables, but not in different Amazon Web Services accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck
and Update
the same item. The aggregate size of the items in the transaction cannot exceed 4 MB.
The actions are completed atomically so that either all of them succeed, or all of them fail. They are defined by the following objects:
Put
— Initiates a PutItem
operation to write a new item. This structure specifies the primary key of the item to be written, the name of the table to write it in, an optional condition expression that must be satisfied for the write to succeed, a list of the item's attributes, and a field indicating whether to retrieve the item's attributes if the condition is not met.
Update
— Initiates an UpdateItem
operation to update an existing item. This structure specifies the primary key of the item to be updated, the name of the table where it resides, an optional condition expression that must be satisfied for the update to succeed, an expression that defines one or more attributes to be updated, and a field indicating whether to retrieve the item's attributes if the condition is not met.
Delete
— Initiates a DeleteItem
operation to delete an existing item. This structure specifies the primary key of the item to be deleted, the name of the table where it resides, an optional condition expression that must be satisfied for the deletion to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met.
ConditionCheck
— Applies a condition to an item that is not being modified by the transaction. This structure specifies the primary key of the item to be checked, the name of the table where it resides, a condition expression that must be satisfied for the transaction to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met.
DynamoDB rejects the entire TransactWriteItems
request if any of the following is true:
A condition in one of the condition expressions is not met.
An ongoing operation is in the process of updating the same item.
There is insufficient provisioned capacity for the transaction to be completed.
An item size becomes too large (bigger than 400 KB), a local secondary index (LSI) becomes too large, or a similar validation error occurs because of changes made by the transaction.
The aggregate size of the items in the transaction exceeds 4 MB.
There is a user error, such as an invalid data format.
TransactWriteItems
is a synchronous write operation that groups up to 100 action requests. These actions can target items in different tables, but not in different Amazon Web Services accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck
and Update
the same item. The aggregate size of the items in the transaction cannot exceed 4 MB.
The actions are completed atomically so that either all of them succeed, or all of them fail. They are defined by the following objects:
Put
— Initiates a PutItem
operation to write a new item. This structure specifies the primary key of the item to be written, the name of the table to write it in, an optional condition expression that must be satisfied for the write to succeed, a list of the item's attributes, and a field indicating whether to retrieve the item's attributes if the condition is not met.
Update
— Initiates an UpdateItem
operation to update an existing item. This structure specifies the primary key of the item to be updated, the name of the table where it resides, an optional condition expression that must be satisfied for the update to succeed, an expression that defines one or more attributes to be updated, and a field indicating whether to retrieve the item's attributes if the condition is not met.
Delete
— Initiates a DeleteItem
operation to delete an existing item. This structure specifies the primary key of the item to be deleted, the name of the table where it resides, an optional condition expression that must be satisfied for the deletion to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met.
ConditionCheck
— Applies a condition to an item that is not being modified by the transaction. This structure specifies the primary key of the item to be checked, the name of the table where it resides, a condition expression that must be satisfied for the transaction to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met.
DynamoDB rejects the entire TransactWriteItems
request if any of the following is true:
A condition in one of the condition expressions is not met.
An ongoing operation is in the process of updating the same item.
There is insufficient provisioned capacity for the transaction to be completed.
An item size becomes too large (bigger than 400 KB), a local secondary index (LSI) becomes too large, or a similar validation error occurs because of changes made by the transaction.
The aggregate size of the items in the transaction exceeds 4 MB.
There is a user error, such as an invalid data format.
An ordered array of up to 25 TransactGetItem
objects, each of which contains a Get
structure.
An ordered array of up to 100 TransactGetItem
objects, each of which contains a Get
structure.
An ordered array of up to 25 ItemResponse
objects, each of which corresponds to the TransactGetItem
object in the same position in the TransactItems array. Each ItemResponse
object contains a Map of the name-value pairs that are the projected attributes of the requested item.
If a requested item could not be retrieved, the corresponding ItemResponse
object is Null, or if the requested item has no projected attributes, the corresponding ItemResponse
object is an empty Map.
An ordered array of up to 100 ItemResponse
objects, each of which corresponds to the TransactGetItem
object in the same position in the TransactItems array. Each ItemResponse
object contains a Map of the name-value pairs that are the projected attributes of the requested item.
If a requested item could not be retrieved, the corresponding ItemResponse
object is Null, or if the requested item has no projected attributes, the corresponding ItemResponse
object is an empty Map.
An ordered array of up to 25 TransactWriteItem
objects, each of which contains a ConditionCheck
, Put
, Update
, or Delete
object. These can operate on items in different tables, but the tables must reside in the same Amazon Web Services account and Region, and no two of them can operate on the same item.
An ordered array of up to 100 TransactWriteItem
objects, each of which contains a ConditionCheck
, Put
, Update
, or Delete
object. These can operate on items in different tables, but the tables must reside in the same Amazon Web Services account and Region, and no two of them can operate on the same item.
An entry for a prefix list.
" }, + "AddedPrincipal": { + "type": "structure", + "members": { + "PrincipalType": { + "shape": "PrincipalType", + "documentation": "The type of principal.
", + "locationName": "principalType" + }, + "Principal": { + "shape": "String", + "documentation": "The Amazon Resource Name (ARN) of the principal.
", + "locationName": "principal" + }, + "ServicePermissionId": { + "shape": "String", + "documentation": "The ID of the service permission.
", + "locationName": "servicePermissionId" + }, + "ServiceId": { + "shape": "String", + "documentation": "The ID of the service.
", + "locationName": "serviceId" + } + }, + "documentation": "Describes a principal.
" + }, + "AddedPrincipalSet": { + "type": "list", + "member": { + "shape": "AddedPrincipal", + "locationName": "item" + } + }, "AdditionalDetail": { "type": "structure", "members": { @@ -8379,6 +8412,21 @@ "shape": "String", "documentation": "The Amazon Resource Name (ARN) of the principal.
", "locationName": "principal" + }, + "ServicePermissionId": { + "shape": "String", + "documentation": "The ID of the service permission.
", + "locationName": "servicePermissionId" + }, + "Tags": { + "shape": "TagList", + "documentation": "The tags.
", + "locationName": "tagSet" + }, + "ServiceId": { + "shape": "String", + "documentation": "The ID of the service.
", + "locationName": "serviceId" } }, "documentation": "Describes a principal.
" @@ -40625,6 +40673,11 @@ "ModifyVpcEndpointServicePermissionsResult": { "type": "structure", "members": { + "AddedPrincipals": { + "shape": "AddedPrincipalSet", + "documentation": "Information about the added principals.
", + "locationName": "addedPrincipalSet" + }, "ReturnValue": { "shape": "Boolean", "documentation": "Returns true
if the request succeeds; otherwise, it returns an error.
The private DNS names assigned to the VPC endpoint service.
", + "documentation": "The private DNS names assigned to the VPC endpoint service.
", "locationName": "privateDnsNameSet" }, "VpcEndpointPolicySupported": { @@ -54998,6 +55053,16 @@ "shape": "IpAddressType", "documentation": "The IP address type for the endpoint.
", "locationName": "ipAddressType" + }, + "VpcEndpointConnectionId": { + "shape": "String", + "documentation": "The ID of the VPC endpoint connection.
", + "locationName": "vpcEndpointConnectionId" + }, + "Tags": { + "shape": "TagList", + "documentation": "The tags.
", + "locationName": "tagSet" } }, "documentation": "Describes a VPC endpoint connection to a service.
" diff --git a/apis/sagemaker-2017-07-24.min.json b/apis/sagemaker-2017-07-24.min.json index f72f1c9892..e18ba46650 100644 --- a/apis/sagemaker-2017-07-24.min.json +++ b/apis/sagemaker-2017-07-24.min.json @@ -831,13 +831,13 @@ "shape": "Sc7" }, "TrainingJobDefinition": { - "shape": "Sco" + "shape": "Scs" }, "TrainingJobDefinitions": { - "shape": "Sd1" + "shape": "Sd5" }, "WarmStartConfig": { - "shape": "Sd2" + "shape": "Sd6" }, "Tags": { "shape": "S7" @@ -915,11 +915,11 @@ "JobType": {}, "RoleArn": {}, "InputConfig": { - "shape": "Sdj" + "shape": "Sdn" }, "JobDescription": {}, "StoppingConditions": { - "shape": "Se9" + "shape": "Sed" }, "OutputConfig": { "type": "structure", @@ -963,21 +963,21 @@ "LabelingJobName": {}, "LabelAttributeName": {}, "InputConfig": { - "shape": "Sek" + "shape": "Seo" }, "OutputConfig": { - "shape": "Ser" + "shape": "Sev" }, "RoleArn": {}, "LabelCategoryConfigS3Uri": {}, "StoppingConditions": { - "shape": "Ses" + "shape": "Sew" }, "LabelingJobAlgorithmsConfig": { - "shape": "Sev" + "shape": "Sez" }, "HumanTaskConfig": { - "shape": "Sez" + "shape": "Sf3" }, "Tags": { "shape": "S7" @@ -1004,13 +1004,13 @@ "members": { "ModelName": {}, "PrimaryContainer": { - "shape": "Sfe" + "shape": "Sfi" }, "Containers": { - "shape": "Sfn" + "shape": "Sfr" }, "InferenceExecutionConfig": { - "shape": "Sfo" + "shape": "Sfs" }, "ExecutionRoleArn": {}, "Tags": { @@ -1048,13 +1048,13 @@ "members": { "JobDefinitionName": {}, "ModelBiasBaselineConfig": { - "shape": "Sfs" + "shape": "Sfw" }, "ModelBiasAppSpecification": { - "shape": "Sft" + "shape": "Sfx" }, "ModelBiasJobInput": { - "shape": "Sfu" + "shape": "Sfy" }, "ModelBiasJobOutputConfig": { "shape": "S7f" @@ -1098,13 +1098,13 @@ "members": { "JobDefinitionName": {}, "ModelExplainabilityBaselineConfig": { - "shape": "Sfy" + "shape": "Sg2" }, "ModelExplainabilityAppSpecification": { - "shape": "Sfz" + "shape": "Sg3" }, "ModelExplainabilityJobInput": { - "shape": "Sg0" + "shape": "Sg4" }, "ModelExplainabilityJobOutputConfig": { "shape": "S7f" @@ -1145,10 +1145,10 @@ "shape": "Sr" }, "ValidationSpecification": { - "shape": "Sg3" + "shape": "Sg7" }, "SourceAlgorithmSpecification": { - "shape": "Sg6" + "shape": "Sga" }, "CertifyForMarketplace": { "type": "boolean" @@ -1161,22 +1161,22 @@ "shape": "S1q" }, "ModelMetrics": { - "shape": "Sg9" + "shape": "Sgd" }, "ClientToken": { "idempotencyToken": true }, "CustomerMetadataProperties": { - "shape": "Sgg" + "shape": "Sgk" }, "DriftCheckBaselines": { - "shape": "Sgj" + "shape": "Sgn" }, "Domain": {}, "Task": {}, "SamplePayloadUrl": {}, "AdditionalInferenceSpecifications": { - "shape": "Sgp" + "shape": "Sgt" } } }, @@ -1228,13 +1228,13 @@ "members": { "JobDefinitionName": {}, "ModelQualityBaselineConfig": { - "shape": "Sgw" + "shape": "Sh0" }, "ModelQualityAppSpecification": { - "shape": "Sgx" + "shape": "Sh1" }, "ModelQualityJobInput": { - "shape": "Sgz" + "shape": "Sh3" }, "ModelQualityJobOutputConfig": { "shape": "S7f" @@ -1274,7 +1274,7 @@ "members": { "MonitoringScheduleName": {}, "MonitoringScheduleConfig": { - "shape": "Sh3" + "shape": "Sh7" }, "Tags": { "shape": "S7" @@ -1317,16 +1317,16 @@ "type": "integer" }, "AcceleratorTypes": { - "shape": "Shl" + "shape": "Shp" }, "DefaultCodeRepository": {}, "AdditionalCodeRepositories": { - "shape": "Sho" + "shape": "Shs" }, "RootAccess": {}, "PlatformIdentifier": {}, "InstanceMetadataServiceConfiguration": { - "shape": "Shr" + "shape": "Shv" } } }, @@ -1346,10 +1346,10 @@ "members": { "NotebookInstanceLifecycleConfigName": {}, "OnCreate": { - "shape": "Shw" + "shape": "Si0" }, "OnStart": { - "shape": "Shw" + "shape": "Si0" } } }, @@ -1373,7 +1373,7 @@ "PipelineDisplayName": {}, "PipelineDefinition": {}, "PipelineDefinitionS3Location": { - "shape": "Si4" + "shape": "Si8" }, "PipelineDescription": {}, "ClientRequestToken": { @@ -1384,7 +1384,7 @@ "shape": "S7" }, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" } } }, @@ -1451,33 +1451,33 @@ ], "members": { "ProcessingInputs": { - "shape": "Sin" + "shape": "Sir" }, "ProcessingOutputConfig": { - "shape": "Sja" + "shape": "Sje" }, "ProcessingJobName": {}, "ProcessingResources": { - "shape": "Sjf" + "shape": "Sjj" }, "StoppingCondition": { - "shape": "Sjh" + "shape": "Sjl" }, "AppSpecification": { - "shape": "Sjj" + "shape": "Sjn" }, "Environment": { - "shape": "Sjl" + "shape": "Sjp" }, "NetworkConfig": { - "shape": "Shb" + "shape": "Shf" }, "RoleArn": {}, "Tags": { "shape": "S7" }, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" } } }, @@ -1502,7 +1502,7 @@ "ProjectName": {}, "ProjectDescription": {}, "ServiceCatalogProvisioningDetails": { - "shape": "Sjr" + "shape": "Sjv" }, "Tags": { "shape": "S7" @@ -1562,7 +1562,7 @@ "shape": "S2t" }, "AlgorithmSpecification": { - "shape": "Sk7" + "shape": "Skb" }, "RoleArn": {}, "InputDataConfig": { @@ -1593,31 +1593,31 @@ "type": "boolean" }, "CheckpointConfig": { - "shape": "Sct" + "shape": "Scx" }, "DebugHookConfig": { - "shape": "Sk8" + "shape": "Skc" }, "DebugRuleConfigurations": { - "shape": "Skg" + "shape": "Skk" }, "TensorBoardOutputConfig": { - "shape": "Skk" + "shape": "Sko" }, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" }, "ProfilerConfig": { - "shape": "Skl" + "shape": "Skp" }, "ProfilerRuleConfigurations": { - "shape": "Sko" + "shape": "Sks" }, "Environment": { - "shape": "Skq" + "shape": "Sku" }, "RetryStrategy": { - "shape": "Scu" + "shape": "Scy" } } }, @@ -1648,7 +1648,7 @@ "type": "integer" }, "ModelClientConfig": { - "shape": "Skx" + "shape": "Sl1" }, "MaxPayloadInMB": { "type": "integer" @@ -1667,13 +1667,13 @@ "shape": "S42" }, "DataProcessing": { - "shape": "Sl0" + "shape": "Sl4" }, "Tags": { "shape": "S7" }, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" } } }, @@ -1723,7 +1723,7 @@ "TrialComponentName": {}, "DisplayName": {}, "Status": { - "shape": "Sl8" + "shape": "Slc" }, "StartTime": { "type": "timestamp" @@ -1732,13 +1732,13 @@ "type": "timestamp" }, "Parameters": { - "shape": "Slc" + "shape": "Slg" }, "InputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "OutputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "MetadataProperties": { "shape": "S1q" @@ -1790,20 +1790,20 @@ ], "members": { "CognitoConfig": { - "shape": "Slr" + "shape": "Slv" }, "OidcConfig": { - "shape": "Slu" + "shape": "Sly" }, "SourceIpConfig": { - "shape": "Slx" + "shape": "Sm1" }, "WorkforceName": {}, "Tags": { "shape": "S7" }, "WorkforceVpcConfig": { - "shape": "Sm1" + "shape": "Sm5" } } }, @@ -1829,11 +1829,11 @@ "WorkteamName": {}, "WorkforceName": {}, "MemberDefinitions": { - "shape": "Smb" + "shape": "Smf" }, "Description": {}, "NotificationConfiguration": { - "shape": "Smj" + "shape": "Smn" }, "Tags": { "shape": "S7" @@ -2445,13 +2445,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "MetadataProperties": { "shape": "S1q" @@ -2501,10 +2501,10 @@ "type": "structure", "members": { "ValidationStatuses": { - "shape": "Soj" + "shape": "Son" }, "ImageScanStatuses": { - "shape": "Soj" + "shape": "Son" } } }, @@ -2609,13 +2609,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "MetadataProperties": { "shape": "S1q" @@ -2675,10 +2675,10 @@ }, "FailureReason": {}, "PartialFailureReasons": { - "shape": "Sox" + "shape": "Sp1" }, "BestCandidate": { - "shape": "Soz" + "shape": "Sp3" }, "AutoMLJobStatus": {}, "AutoMLJobSecondaryStatus": {}, @@ -2797,7 +2797,7 @@ }, "FailureReason": {}, "ModelArtifacts": { - "shape": "Sq0" + "shape": "Sq4" }, "ModelDigests": { "type": "structure", @@ -2845,13 +2845,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "LineageGroupArn": {} } @@ -3229,10 +3229,10 @@ "EndpointArn": {}, "EndpointConfigName": {}, "ProductionVariants": { - "shape": "Sr3" + "shape": "Sr7" }, "DataCaptureConfig": { - "shape": "Src" + "shape": "Srg" }, "EndpointStatus": {}, "FailureReason": {}, @@ -3265,7 +3265,7 @@ "members": { "VariantName": {}, "DeployedImages": { - "shape": "Sr5" + "shape": "Sr9" }, "CurrentWeight": { "type": "float" @@ -3282,7 +3282,7 @@ "InstanceType": {}, "AcceleratorType": {}, "VariantStatus": { - "shape": "Sr8" + "shape": "Src" }, "CurrentServerlessConfig": { "shape": "Sa2" @@ -3355,20 +3355,20 @@ "ExperimentArn": {}, "DisplayName": {}, "Source": { - "shape": "Srm" + "shape": "Srq" }, "Description": {}, "CreationTime": { "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" } } } @@ -3418,10 +3418,10 @@ "RoleArn": {}, "FeatureGroupStatus": {}, "OfflineStoreStatus": { - "shape": "Srs" + "shape": "Srw" }, "LastUpdateStatus": { - "shape": "Srv" + "shape": "Srz" }, "FailureReason": {}, "Description": {}, @@ -3467,7 +3467,7 @@ }, "Description": {}, "Parameters": { - "shape": "Ss1" + "shape": "Ss5" } } } @@ -3580,10 +3580,10 @@ "shape": "Sc7" }, "TrainingJobDefinition": { - "shape": "Sco" + "shape": "Scs" }, "TrainingJobDefinitions": { - "shape": "Sd1" + "shape": "Sd5" }, "HyperParameterTuningJobStatus": {}, "CreationTime": { @@ -3596,19 +3596,19 @@ "type": "timestamp" }, "TrainingJobStatusCounters": { - "shape": "Ssh" + "shape": "Ssl" }, "ObjectiveStatusCounters": { - "shape": "Ssj" + "shape": "Ssn" }, "BestTrainingJob": { - "shape": "Ssl" + "shape": "Ssp" }, "OverallBestTrainingJob": { - "shape": "Ssl" + "shape": "Ssp" }, "WarmStartConfig": { - "shape": "Sd2" + "shape": "Sd6" }, "FailureReason": {} } @@ -3717,10 +3717,10 @@ }, "FailureReason": {}, "InputConfig": { - "shape": "Sdj" + "shape": "Sdn" }, "StoppingConditions": { - "shape": "Se9" + "shape": "Sed" }, "InferenceRecommendations": { "type": "list", @@ -3828,7 +3828,7 @@ "members": { "LabelingJobStatus": {}, "LabelCounters": { - "shape": "St8" + "shape": "Stc" }, "FailureReason": {}, "CreationTime": { @@ -3842,27 +3842,27 @@ "LabelingJobArn": {}, "LabelAttributeName": {}, "InputConfig": { - "shape": "Sek" + "shape": "Seo" }, "OutputConfig": { - "shape": "Ser" + "shape": "Sev" }, "RoleArn": {}, "LabelCategoryConfigS3Uri": {}, "StoppingConditions": { - "shape": "Ses" + "shape": "Sew" }, "LabelingJobAlgorithmsConfig": { - "shape": "Sev" + "shape": "Sez" }, "HumanTaskConfig": { - "shape": "Sez" + "shape": "Sf3" }, "Tags": { "shape": "S7" }, "LabelingJobOutput": { - "shape": "Stb" + "shape": "Stf" } } } @@ -3888,13 +3888,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" } } } @@ -3920,13 +3920,13 @@ "members": { "ModelName": {}, "PrimaryContainer": { - "shape": "Sfe" + "shape": "Sfi" }, "Containers": { - "shape": "Sfn" + "shape": "Sfr" }, "InferenceExecutionConfig": { - "shape": "Sfo" + "shape": "Sfs" }, "ExecutionRoleArn": {}, "VpcConfig": { @@ -3971,13 +3971,13 @@ "type": "timestamp" }, "ModelBiasBaselineConfig": { - "shape": "Sfs" + "shape": "Sfw" }, "ModelBiasAppSpecification": { - "shape": "Sft" + "shape": "Sfx" }, "ModelBiasJobInput": { - "shape": "Sfu" + "shape": "Sfy" }, "ModelBiasJobOutputConfig": { "shape": "S7f" @@ -4024,13 +4024,13 @@ "type": "timestamp" }, "ModelExplainabilityBaselineConfig": { - "shape": "Sfy" + "shape": "Sg2" }, "ModelExplainabilityAppSpecification": { - "shape": "Sfz" + "shape": "Sg3" }, "ModelExplainabilityJobInput": { - "shape": "Sg0" + "shape": "Sg4" }, "ModelExplainabilityJobOutputConfig": { "shape": "S7f" @@ -4082,46 +4082,46 @@ "shape": "Sr" }, "SourceAlgorithmSpecification": { - "shape": "Sg6" + "shape": "Sga" }, "ValidationSpecification": { - "shape": "Sg3" + "shape": "Sg7" }, "ModelPackageStatus": {}, "ModelPackageStatusDetails": { - "shape": "Stm" + "shape": "Stq" }, "CertifyForMarketplace": { "type": "boolean" }, "ModelApprovalStatus": {}, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "MetadataProperties": { "shape": "S1q" }, "ModelMetrics": { - "shape": "Sg9" + "shape": "Sgd" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "ApprovalDescription": {}, "CustomerMetadataProperties": { - "shape": "Sgg" + "shape": "Sgk" }, "DriftCheckBaselines": { - "shape": "Sgj" + "shape": "Sgn" }, "Domain": {}, "Task": {}, "SamplePayloadUrl": {}, "AdditionalInferenceSpecifications": { - "shape": "Sgp" + "shape": "Sgt" } } } @@ -4153,7 +4153,7 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "ModelPackageGroupStatus": {} } @@ -4188,13 +4188,13 @@ "type": "timestamp" }, "ModelQualityBaselineConfig": { - "shape": "Sgw" + "shape": "Sh0" }, "ModelQualityAppSpecification": { - "shape": "Sgx" + "shape": "Sh1" }, "ModelQualityJobInput": { - "shape": "Sgz" + "shape": "Sh3" }, "ModelQualityJobOutputConfig": { "shape": "S7f" @@ -4245,11 +4245,11 @@ "type": "timestamp" }, "MonitoringScheduleConfig": { - "shape": "Sh3" + "shape": "Sh7" }, "EndpointName": {}, "LastMonitoringExecutionSummary": { - "shape": "Stz" + "shape": "Su3" } } } @@ -4292,16 +4292,16 @@ "type": "integer" }, "AcceleratorTypes": { - "shape": "Shl" + "shape": "Shp" }, "DefaultCodeRepository": {}, "AdditionalCodeRepositories": { - "shape": "Sho" + "shape": "Shs" }, "RootAccess": {}, "PlatformIdentifier": {}, "InstanceMetadataServiceConfiguration": { - "shape": "Shr" + "shape": "Shv" } } } @@ -4322,10 +4322,10 @@ "NotebookInstanceLifecycleConfigArn": {}, "NotebookInstanceLifecycleConfigName": {}, "OnCreate": { - "shape": "Shw" + "shape": "Si0" }, "OnStart": { - "shape": "Shw" + "shape": "Si0" }, "LastModifiedTime": { "type": "timestamp" @@ -4366,13 +4366,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" } } } @@ -4416,7 +4416,7 @@ "PipelineExecutionStatus": {}, "PipelineExecutionDescription": {}, "PipelineExperimentConfig": { - "shape": "Sui" + "shape": "Sum" }, "FailureReason": {}, "CreationTime": { @@ -4426,13 +4426,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" } } } @@ -4459,30 +4459,30 @@ ], "members": { "ProcessingInputs": { - "shape": "Sin" + "shape": "Sir" }, "ProcessingOutputConfig": { - "shape": "Sja" + "shape": "Sje" }, "ProcessingJobName": {}, "ProcessingResources": { - "shape": "Sjf" + "shape": "Sjj" }, "StoppingCondition": { - "shape": "Sjh" + "shape": "Sjl" }, "AppSpecification": { - "shape": "Sjj" + "shape": "Sjn" }, "Environment": { - "shape": "Sjl" + "shape": "Sjp" }, "NetworkConfig": { - "shape": "Shb" + "shape": "Shf" }, "RoleArn": {}, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" }, "ProcessingJobArn": {}, "ProcessingJobStatus": {}, @@ -4532,14 +4532,14 @@ "ProjectId": {}, "ProjectDescription": {}, "ServiceCatalogProvisioningDetails": { - "shape": "Sjr" + "shape": "Sjv" }, "ServiceCatalogProvisionedProductDetails": { - "shape": "Suq" + "shape": "Suu" }, "ProjectStatus": {}, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "CreationTime": { "type": "timestamp" @@ -4548,7 +4548,7 @@ "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" } } } @@ -4596,7 +4596,7 @@ ], "members": { "SubscribedWorkteam": { - "shape": "Sux" + "shape": "Sv1" } } } @@ -4631,7 +4631,7 @@ "LabelingJobArn": {}, "AutoMLJobArn": {}, "ModelArtifacts": { - "shape": "Sq0" + "shape": "Sq4" }, "TrainingJobStatus": {}, "SecondaryStatus": {}, @@ -4640,7 +4640,7 @@ "shape": "S2t" }, "AlgorithmSpecification": { - "shape": "Sk7" + "shape": "Skb" }, "RoleArn": {}, "InputDataConfig": { @@ -4671,10 +4671,10 @@ "type": "timestamp" }, "SecondaryStatusTransitions": { - "shape": "Sv1" + "shape": "Sv5" }, "FinalMetricDataList": { - "shape": "Sv4" + "shape": "Sv8" }, "EnableNetworkIsolation": { "type": "boolean" @@ -4686,7 +4686,7 @@ "type": "boolean" }, "CheckpointConfig": { - "shape": "Sct" + "shape": "Scx" }, "TrainingTimeInSeconds": { "type": "integer" @@ -4695,25 +4695,25 @@ "type": "integer" }, "DebugHookConfig": { - "shape": "Sk8" + "shape": "Skc" }, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" }, "DebugRuleConfigurations": { - "shape": "Skg" + "shape": "Skk" }, "TensorBoardOutputConfig": { - "shape": "Skk" + "shape": "Sko" }, "DebugRuleEvaluationStatuses": { - "shape": "Sv8" + "shape": "Svc" }, "ProfilerConfig": { - "shape": "Skl" + "shape": "Skp" }, "ProfilerRuleConfigurations": { - "shape": "Sko" + "shape": "Sks" }, "ProfilerRuleEvaluationStatuses": { "type": "list", @@ -4732,10 +4732,10 @@ }, "ProfilingStatus": {}, "RetryStrategy": { - "shape": "Scu" + "shape": "Scy" }, "Environment": { - "shape": "Skq" + "shape": "Sku" } } } @@ -4771,7 +4771,7 @@ "type": "integer" }, "ModelClientConfig": { - "shape": "Skx" + "shape": "Sl1" }, "MaxPayloadInMB": { "type": "integer" @@ -4801,10 +4801,10 @@ "LabelingJobArn": {}, "AutoMLJobArn": {}, "DataProcessing": { - "shape": "Sl0" + "shape": "Sl4" }, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" } } } @@ -4827,19 +4827,19 @@ "DisplayName": {}, "ExperimentName": {}, "Source": { - "shape": "Svk" + "shape": "Svo" }, "CreationTime": { "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "MetadataProperties": { "shape": "S1q" @@ -4864,10 +4864,10 @@ "TrialComponentArn": {}, "DisplayName": {}, "Source": { - "shape": "Svo" + "shape": "Svs" }, "Status": { - "shape": "Sl8" + "shape": "Slc" }, "StartTime": { "type": "timestamp" @@ -4879,28 +4879,28 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "Parameters": { - "shape": "Slc" + "shape": "Slg" }, "InputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "OutputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "MetadataProperties": { "shape": "S1q" }, "Metrics": { - "shape": "Svq" + "shape": "Svu" }, "LineageGroupArn": {} } @@ -4958,7 +4958,7 @@ ], "members": { "Workforce": { - "shape": "Sw0" + "shape": "Sw4" } } } @@ -4980,7 +4980,7 @@ ], "members": { "Workteam": { - "shape": "Sw8" + "shape": "Swc" } } } @@ -5479,7 +5479,7 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" } } } @@ -5548,7 +5548,7 @@ }, "FailureReason": {}, "PartialFailureReasons": { - "shape": "Sox" + "shape": "Sp1" } } } @@ -5584,7 +5584,7 @@ "Candidates": { "type": "list", "member": { - "shape": "Soz" + "shape": "Sp3" } }, "NextToken": {} @@ -5794,7 +5794,7 @@ ], "members": { "JobDefinitionSummaries": { - "shape": "Sz1" + "shape": "Sz5" }, "NextToken": {} } @@ -6223,7 +6223,7 @@ "ExperimentName": {}, "DisplayName": {}, "ExperimentSource": { - "shape": "Srm" + "shape": "Srq" }, "CreationTime": { "type": "timestamp" @@ -6283,7 +6283,7 @@ }, "FeatureGroupStatus": {}, "OfflineStoreStatus": { - "shape": "Srs" + "shape": "Srw" } } } @@ -6445,13 +6445,13 @@ "type": "timestamp" }, "TrainingJobStatusCounters": { - "shape": "Ssh" + "shape": "Ssl" }, "ObjectiveStatusCounters": { - "shape": "Ssj" + "shape": "Ssn" }, "ResourceLimits": { - "shape": "Sc9" + "shape": "Scd" } } } @@ -6707,17 +6707,17 @@ }, "LabelingJobStatus": {}, "LabelCounters": { - "shape": "St8" + "shape": "Stc" }, "WorkteamArn": {}, "PreHumanTaskLambdaArn": {}, "AnnotationConsolidationLambdaArn": {}, "FailureReason": {}, "LabelingJobOutput": { - "shape": "Stb" + "shape": "Stf" }, "InputConfig": { - "shape": "Sek" + "shape": "Seo" } } } @@ -6864,7 +6864,7 @@ ], "members": { "JobDefinitionSummaries": { - "shape": "Sz1" + "shape": "Sz5" }, "NextToken": {} } @@ -6897,7 +6897,7 @@ ], "members": { "JobDefinitionSummaries": { - "shape": "Sz1" + "shape": "Sz5" }, "NextToken": {} } @@ -7097,7 +7097,7 @@ ], "members": { "JobDefinitionSummaries": { - "shape": "Sz1" + "shape": "Sz5" }, "NextToken": {} } @@ -7194,7 +7194,7 @@ "MonitoringExecutionSummaries": { "type": "list", "member": { - "shape": "Stz" + "shape": "Su3" } }, "NextToken": {} @@ -7375,7 +7375,7 @@ "NotebookInstanceLifecycleConfigName": {}, "DefaultCodeRepository": {}, "AdditionalCodeRepositories": { - "shape": "Sho" + "shape": "Shs" } } } @@ -7474,7 +7474,7 @@ "CallbackToken": {}, "SqsQueueUrl": {}, "OutputParameters": { - "shape": "S141" + "shape": "S145" } } }, @@ -7483,7 +7483,7 @@ "members": { "Arn": {}, "OutputParameters": { - "shape": "S141" + "shape": "S145" } } }, @@ -7610,7 +7610,7 @@ "type": "structure", "members": { "PipelineParameters": { - "shape": "S14g" + "shape": "S14k" }, "NextToken": {} } @@ -7907,7 +7907,7 @@ "SubscribedWorkteams": { "type": "list", "member": { - "shape": "Sux" + "shape": "Sv1" } }, "NextToken": {} @@ -8026,7 +8026,7 @@ "TrainingJobSummaries": { "type": "list", "member": { - "shape": "Ssl" + "shape": "Ssp" } }, "NextToken": {} @@ -8129,10 +8129,10 @@ "TrialComponentArn": {}, "DisplayName": {}, "TrialComponentSource": { - "shape": "Svo" + "shape": "Svs" }, "Status": { - "shape": "Sl8" + "shape": "Slc" }, "StartTime": { "type": "timestamp" @@ -8144,13 +8144,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" } } } @@ -8191,7 +8191,7 @@ "TrialName": {}, "DisplayName": {}, "TrialSource": { - "shape": "Svk" + "shape": "Svo" }, "CreationTime": { "type": "timestamp" @@ -8266,7 +8266,7 @@ "Workforces": { "type": "list", "member": { - "shape": "Sw0" + "shape": "Sw4" } }, "NextToken": {} @@ -8295,7 +8295,7 @@ "Workteams": { "type": "list", "member": { - "shape": "Sw8" + "shape": "Swc" } }, "NextToken": {} @@ -8414,7 +8414,7 @@ "members": { "DeviceFleetName": {}, "Devices": { - "shape": "S16x" + "shape": "S171" }, "Tags": { "shape": "S7" @@ -8484,7 +8484,7 @@ "idempotencyToken": true }, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" } } }, @@ -8504,7 +8504,7 @@ "members": { "Resource": {}, "SearchExpression": { - "shape": "S178" + "shape": "S17c" }, "SortBy": {}, "SortOrder": {}, @@ -8523,7 +8523,7 @@ "type": "structure", "members": { "TrainingJob": { - "shape": "S17l" + "shape": "S17p" }, "Experiment": { "type": "structure", @@ -8532,20 +8532,20 @@ "ExperimentArn": {}, "DisplayName": {}, "Source": { - "shape": "Srm" + "shape": "Srq" }, "Description": {}, "CreationTime": { "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "Tags": { "shape": "S7" @@ -8560,19 +8560,19 @@ "DisplayName": {}, "ExperimentName": {}, "Source": { - "shape": "Svk" + "shape": "Svo" }, "CreationTime": { "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "MetadataProperties": { "shape": "S1q" @@ -8588,13 +8588,13 @@ "TrialComponentName": {}, "TrialComponentArn": {}, "TrialComponentSource": { - "shape": "Svo" + "shape": "Svs" }, "CreationTime": { "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" } } } @@ -8608,10 +8608,10 @@ "DisplayName": {}, "TrialComponentArn": {}, "Source": { - "shape": "Svo" + "shape": "Svs" }, "Status": { - "shape": "Sl8" + "shape": "Slc" }, "StartTime": { "type": "timestamp" @@ -8623,25 +8623,25 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "Parameters": { - "shape": "Slc" + "shape": "Slg" }, "InputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "OutputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "Metrics": { - "shape": "Svq" + "shape": "Svu" }, "MetadataProperties": { "shape": "S1q" @@ -8651,36 +8651,36 @@ "members": { "SourceArn": {}, "TrainingJob": { - "shape": "S17l" + "shape": "S17p" }, "ProcessingJob": { "type": "structure", "members": { "ProcessingInputs": { - "shape": "Sin" + "shape": "Sir" }, "ProcessingOutputConfig": { - "shape": "Sja" + "shape": "Sje" }, "ProcessingJobName": {}, "ProcessingResources": { - "shape": "Sjf" + "shape": "Sjj" }, "StoppingCondition": { - "shape": "Sjh" + "shape": "Sjl" }, "AppSpecification": { - "shape": "Sjj" + "shape": "Sjn" }, "Environment": { - "shape": "Sjl" + "shape": "Sjp" }, "NetworkConfig": { - "shape": "Shb" + "shape": "Shf" }, "RoleArn": {}, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" }, "ProcessingJobArn": {}, "ProcessingJobStatus": {}, @@ -8718,7 +8718,7 @@ "type": "integer" }, "ModelClientConfig": { - "shape": "Skx" + "shape": "Sl1" }, "MaxPayloadInMB": { "type": "integer" @@ -8748,10 +8748,10 @@ "LabelingJobArn": {}, "AutoMLJobArn": {}, "DataProcessing": { - "shape": "Sl0" + "shape": "Sl4" }, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" }, "Tags": { "shape": "S7" @@ -8791,10 +8791,10 @@ "EndpointArn": {}, "EndpointConfigName": {}, "ProductionVariants": { - "shape": "Sr3" + "shape": "Sr7" }, "DataCaptureConfig": { - "shape": "Src" + "shape": "Srg" }, "EndpointStatus": {}, "FailureReason": {}, @@ -8821,11 +8821,11 @@ "type": "timestamp" }, "MonitoringScheduleConfig": { - "shape": "Sh3" + "shape": "Sh7" }, "EndpointName": {}, "LastMonitoringExecutionSummary": { - "shape": "Stz" + "shape": "Su3" }, "Tags": { "shape": "S7" @@ -8855,49 +8855,49 @@ "shape": "Sr" }, "SourceAlgorithmSpecification": { - "shape": "Sg6" + "shape": "Sga" }, "ValidationSpecification": { - "shape": "Sg3" + "shape": "Sg7" }, "ModelPackageStatus": {}, "ModelPackageStatusDetails": { - "shape": "Stm" + "shape": "Stq" }, "CertifyForMarketplace": { "type": "boolean" }, "ModelApprovalStatus": {}, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "MetadataProperties": { "shape": "S1q" }, "ModelMetrics": { - "shape": "Sg9" + "shape": "Sgd" }, "LastModifiedTime": { "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "ApprovalDescription": {}, "Domain": {}, "Task": {}, "SamplePayloadUrl": {}, "AdditionalInferenceSpecifications": { - "shape": "Sgp" + "shape": "Sgt" }, "Tags": { "shape": "S7" }, "CustomerMetadataProperties": { - "shape": "Sgg" + "shape": "Sgk" }, "DriftCheckBaselines": { - "shape": "Sgj" + "shape": "Sgn" } } }, @@ -8911,7 +8911,7 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "ModelPackageGroupStatus": {}, "Tags": { @@ -8938,13 +8938,13 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" }, "Tags": { "shape": "S7" @@ -8960,7 +8960,7 @@ "PipelineExecutionStatus": {}, "PipelineExecutionDescription": {}, "PipelineExperimentConfig": { - "shape": "Sui" + "shape": "Sum" }, "FailureReason": {}, "CreationTime": { @@ -8970,16 +8970,16 @@ "type": "timestamp" }, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" }, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" }, "PipelineParameters": { - "shape": "S14g" + "shape": "S14k" } } }, @@ -9008,10 +9008,10 @@ "RoleArn": {}, "FeatureGroupStatus": {}, "OfflineStoreStatus": { - "shape": "Srs" + "shape": "Srw" }, "LastUpdateStatus": { - "shape": "Srv" + "shape": "Srz" }, "FailureReason": {}, "Description": {}, @@ -9028,14 +9028,14 @@ "ProjectId": {}, "ProjectDescription": {}, "ServiceCatalogProvisioningDetails": { - "shape": "Sjr" + "shape": "Sjv" }, "ServiceCatalogProvisionedProductDetails": { - "shape": "Suq" + "shape": "Suu" }, "ProjectStatus": {}, "CreatedBy": { - "shape": "Sod" + "shape": "Soh" }, "CreationTime": { "type": "timestamp" @@ -9047,7 +9047,7 @@ "type": "timestamp" }, "LastModifiedBy": { - "shape": "Sod" + "shape": "Soh" } } }, @@ -9066,7 +9066,7 @@ }, "Description": {}, "Parameters": { - "shape": "Ss1" + "shape": "Ss5" } } }, @@ -9079,10 +9079,10 @@ "shape": "Sc7" }, "TrainingJobDefinition": { - "shape": "Sco" + "shape": "Scs" }, "TrainingJobDefinitions": { - "shape": "Sd1" + "shape": "Sd5" }, "HyperParameterTuningJobStatus": {}, "CreationTime": { @@ -9095,19 +9095,19 @@ "type": "timestamp" }, "TrainingJobStatusCounters": { - "shape": "Ssh" + "shape": "Ssl" }, "ObjectiveStatusCounters": { - "shape": "Ssj" + "shape": "Ssn" }, "BestTrainingJob": { - "shape": "Ssl" + "shape": "Ssp" }, "OverallBestTrainingJob": { - "shape": "Ssl" + "shape": "Ssp" }, "WarmStartConfig": { - "shape": "Sd2" + "shape": "Sd6" }, "FailureReason": {}, "Tags": { @@ -9152,7 +9152,7 @@ "members": { "CallbackToken": {}, "OutputParameters": { - "shape": "S141" + "shape": "S145" }, "ClientRequestToken": { "idempotencyToken": true @@ -9212,14 +9212,14 @@ "PipelineName": {}, "PipelineExecutionDisplayName": {}, "PipelineParameters": { - "shape": "S14g" + "shape": "S14k" }, "PipelineExecutionDescription": {}, "ClientRequestToken": { "idempotencyToken": true }, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" } } }, @@ -9399,7 +9399,7 @@ "shape": "S1o" }, "PropertiesToRemove": { - "shape": "S18v" + "shape": "S18z" } } }, @@ -9443,7 +9443,7 @@ "shape": "S1o" }, "PropertiesToRemove": { - "shape": "S18v" + "shape": "S18z" } } }, @@ -9493,7 +9493,7 @@ "shape": "S1o" }, "PropertiesToRemove": { - "shape": "S18v" + "shape": "S18z" } } }, @@ -9534,7 +9534,7 @@ "members": { "DeviceFleetName": {}, "Devices": { - "shape": "S16x" + "shape": "S171" } } } @@ -9718,7 +9718,7 @@ "ParameterAdditions": { "type": "list", "member": { - "shape": "Ss2" + "shape": "Ss6" } }, "ParameterRemovals": { @@ -9763,14 +9763,14 @@ "ModelApprovalStatus": {}, "ApprovalDescription": {}, "CustomerMetadataProperties": { - "shape": "Sgg" + "shape": "Sgk" }, "CustomerMetadataPropertiesToRemove": { "type": "list", "member": {} }, "AdditionalInferenceSpecificationsToAdd": { - "shape": "Sgp" + "shape": "Sgt" } } }, @@ -9794,7 +9794,7 @@ "members": { "MonitoringScheduleName": {}, "MonitoringScheduleConfig": { - "shape": "Sh3" + "shape": "Sh7" } } }, @@ -9827,10 +9827,10 @@ }, "DefaultCodeRepository": {}, "AdditionalCodeRepositories": { - "shape": "Sho" + "shape": "Shs" }, "AcceleratorTypes": { - "shape": "Shl" + "shape": "Shp" }, "DisassociateAcceleratorTypes": { "type": "boolean" @@ -9843,7 +9843,7 @@ }, "RootAccess": {}, "InstanceMetadataServiceConfiguration": { - "shape": "Shr" + "shape": "Shv" } } }, @@ -9861,10 +9861,10 @@ "members": { "NotebookInstanceLifecycleConfigName": {}, "OnCreate": { - "shape": "Shw" + "shape": "Si0" }, "OnStart": { - "shape": "Shw" + "shape": "Si0" } } }, @@ -9884,12 +9884,12 @@ "PipelineDisplayName": {}, "PipelineDefinition": {}, "PipelineDefinitionS3Location": { - "shape": "Si4" + "shape": "Si8" }, "PipelineDescription": {}, "RoleArn": {}, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" } } }, @@ -9911,7 +9911,7 @@ "PipelineExecutionDescription": {}, "PipelineExecutionDisplayName": {}, "ParallelismConfiguration": { - "shape": "Sia" + "shape": "Sie" } } }, @@ -9936,7 +9936,7 @@ "members": { "ProvisioningArtifactId": {}, "ProvisioningParameters": { - "shape": "Sjt" + "shape": "Sjx" } } }, @@ -9971,7 +9971,7 @@ "type": "long" }, "ProfilingParameters": { - "shape": "Skn" + "shape": "Skr" }, "DisableProfiler": { "type": "boolean" @@ -9979,7 +9979,7 @@ } }, "ProfilerRuleConfigurations": { - "shape": "Sko" + "shape": "Sks" } } }, @@ -10021,7 +10021,7 @@ "TrialComponentName": {}, "DisplayName": {}, "Status": { - "shape": "Sl8" + "shape": "Slc" }, "StartTime": { "type": "timestamp" @@ -10030,22 +10030,22 @@ "type": "timestamp" }, "Parameters": { - "shape": "Slc" + "shape": "Slg" }, "ParametersToRemove": { - "shape": "S1ao" + "shape": "S1as" }, "InputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "InputArtifactsToRemove": { - "shape": "S1ao" + "shape": "S1as" }, "OutputArtifacts": { - "shape": "Slg" + "shape": "Slk" }, "OutputArtifactsToRemove": { - "shape": "S1ao" + "shape": "S1as" } } }, @@ -10087,13 +10087,13 @@ "members": { "WorkforceName": {}, "SourceIpConfig": { - "shape": "Slx" + "shape": "Sm1" }, "OidcConfig": { - "shape": "Slu" + "shape": "Sly" }, "WorkforceVpcConfig": { - "shape": "Sm1" + "shape": "Sm5" } } }, @@ -10104,7 +10104,7 @@ ], "members": { "Workforce": { - "shape": "Sw0" + "shape": "Sw4" } } } @@ -10118,11 +10118,11 @@ "members": { "WorkteamName": {}, "MemberDefinitions": { - "shape": "Smb" + "shape": "Smf" }, "Description": {}, "NotificationConfiguration": { - "shape": "Smj" + "shape": "Smn" } } }, @@ -10133,7 +10133,7 @@ ], "members": { "Workteam": { - "shape": "Sw8" + "shape": "Swc" } } } @@ -11682,14 +11682,30 @@ ], "members": { "Strategy": {}, + "StrategyConfig": { + "type": "structure", + "members": { + "HyperbandStrategyConfig": { + "type": "structure", + "members": { + "MinResource": { + "type": "integer" + }, + "MaxResource": { + "type": "integer" + } + } + } + } + }, "HyperParameterTuningJobObjective": { "shape": "S2m" }, "ResourceLimits": { - "shape": "Sc9" + "shape": "Scd" }, "ParameterRanges": { - "shape": "Scc" + "shape": "Scg" }, "TrainingJobEarlyStoppingType": {}, "TuningJobCompletionCriteria": { @@ -11705,7 +11721,7 @@ } } }, - "Sc9": { + "Scd": { "type": "structure", "required": [ "MaxNumberOfTrainingJobs", @@ -11720,7 +11736,7 @@ } } }, - "Scc": { + "Scg": { "type": "structure", "members": { "IntegerParameterRanges": { @@ -11775,7 +11791,7 @@ } } }, - "Sco": { + "Scs": { "type": "structure", "required": [ "AlgorithmSpecification", @@ -11789,7 +11805,7 @@ "shape": "S2m" }, "HyperParameterRanges": { - "shape": "Scc" + "shape": "Scg" }, "StaticHyperParameters": { "shape": "S2t" @@ -11834,10 +11850,10 @@ "type": "boolean" }, "CheckpointConfig": { - "shape": "Sct" + "shape": "Scx" }, "RetryStrategy": { - "shape": "Scu" + "shape": "Scy" }, "HyperParameterTuningResourceConfig": { "type": "structure", @@ -11875,7 +11891,7 @@ } } }, - "Sct": { + "Scx": { "type": "structure", "required": [ "S3Uri" @@ -11885,7 +11901,7 @@ "LocalPath": {} } }, - "Scu": { + "Scy": { "type": "structure", "required": [ "MaximumRetryAttempts" @@ -11896,13 +11912,13 @@ } } }, - "Sd1": { + "Sd5": { "type": "list", "member": { - "shape": "Sco" + "shape": "Scs" } }, - "Sd2": { + "Sd6": { "type": "structure", "required": [ "ParentHyperParameterTuningJobs", @@ -11921,7 +11937,7 @@ "WarmStartType": {} } }, - "Sdj": { + "Sdn": { "type": "structure", "required": [ "ModelPackageVersionArn" @@ -12027,7 +12043,7 @@ } } }, - "Se9": { + "Sed": { "type": "structure", "members": { "MaxInvocations": { @@ -12047,7 +12063,7 @@ } } }, - "Sek": { + "Seo": { "type": "structure", "required": [ "DataSource" @@ -12087,7 +12103,7 @@ } } }, - "Ser": { + "Sev": { "type": "structure", "required": [ "S3OutputPath" @@ -12098,7 +12114,7 @@ "SnsTopicArn": {} } }, - "Ses": { + "Sew": { "type": "structure", "members": { "MaxHumanLabeledObjectCount": { @@ -12109,7 +12125,7 @@ } } }, - "Sev": { + "Sez": { "type": "structure", "required": [ "LabelingJobAlgorithmSpecificationArn" @@ -12128,7 +12144,7 @@ } } }, - "Sez": { + "Sf3": { "type": "structure", "required": [ "WorkteamArn", @@ -12182,7 +12198,7 @@ } } }, - "Sfe": { + "Sfi": { "type": "structure", "members": { "ContainerHostname": {}, @@ -12220,13 +12236,13 @@ } } }, - "Sfn": { + "Sfr": { "type": "list", "member": { - "shape": "Sfe" + "shape": "Sfi" } }, - "Sfo": { + "Sfs": { "type": "structure", "required": [ "Mode" @@ -12235,7 +12251,7 @@ "Mode": {} } }, - "Sfs": { + "Sfw": { "type": "structure", "members": { "BaseliningJobName": {}, @@ -12244,7 +12260,7 @@ } } }, - "Sft": { + "Sfx": { "type": "structure", "required": [ "ImageUri", @@ -12258,7 +12274,7 @@ } } }, - "Sfu": { + "Sfy": { "type": "structure", "required": [ "EndpointInput", @@ -12269,17 +12285,17 @@ "shape": "S79" }, "GroundTruthS3Input": { - "shape": "Sfv" + "shape": "Sfz" } } }, - "Sfv": { + "Sfz": { "type": "structure", "members": { "S3Uri": {} } }, - "Sfy": { + "Sg2": { "type": "structure", "members": { "BaseliningJobName": {}, @@ -12288,7 +12304,7 @@ } } }, - "Sfz": { + "Sg3": { "type": "structure", "required": [ "ImageUri", @@ -12302,7 +12318,7 @@ } } }, - "Sg0": { + "Sg4": { "type": "structure", "required": [ "EndpointInput" @@ -12313,7 +12329,7 @@ } } }, - "Sg3": { + "Sg7": { "type": "structure", "required": [ "ValidationRole", @@ -12339,7 +12355,7 @@ } } }, - "Sg6": { + "Sga": { "type": "structure", "required": [ "SourceAlgorithms" @@ -12360,17 +12376,17 @@ } } }, - "Sg9": { + "Sgd": { "type": "structure", "members": { "ModelQuality": { "type": "structure", "members": { "Statistics": { - "shape": "Sgb" + "shape": "Sgf" }, "Constraints": { - "shape": "Sgb" + "shape": "Sgf" } } }, @@ -12378,10 +12394,10 @@ "type": "structure", "members": { "Statistics": { - "shape": "Sgb" + "shape": "Sgf" }, "Constraints": { - "shape": "Sgb" + "shape": "Sgf" } } }, @@ -12389,13 +12405,13 @@ "type": "structure", "members": { "Report": { - "shape": "Sgb" + "shape": "Sgf" }, "PreTrainingReport": { - "shape": "Sgb" + "shape": "Sgf" }, "PostTrainingReport": { - "shape": "Sgb" + "shape": "Sgf" } } }, @@ -12403,13 +12419,13 @@ "type": "structure", "members": { "Report": { - "shape": "Sgb" + "shape": "Sgf" } } } } }, - "Sgb": { + "Sgf": { "type": "structure", "required": [ "ContentType", @@ -12421,25 +12437,25 @@ "S3Uri": {} } }, - "Sgg": { + "Sgk": { "type": "map", "key": {}, "value": {} }, - "Sgj": { + "Sgn": { "type": "structure", "members": { "Bias": { "type": "structure", "members": { "ConfigFile": { - "shape": "Sgl" + "shape": "Sgp" }, "PreTrainingConstraints": { - "shape": "Sgb" + "shape": "Sgf" }, "PostTrainingConstraints": { - "shape": "Sgb" + "shape": "Sgf" } } }, @@ -12447,10 +12463,10 @@ "type": "structure", "members": { "Constraints": { - "shape": "Sgb" + "shape": "Sgf" }, "ConfigFile": { - "shape": "Sgl" + "shape": "Sgp" } } }, @@ -12458,10 +12474,10 @@ "type": "structure", "members": { "Statistics": { - "shape": "Sgb" + "shape": "Sgf" }, "Constraints": { - "shape": "Sgb" + "shape": "Sgf" } } }, @@ -12469,16 +12485,16 @@ "type": "structure", "members": { "Statistics": { - "shape": "Sgb" + "shape": "Sgf" }, "Constraints": { - "shape": "Sgb" + "shape": "Sgf" } } } } }, - "Sgl": { + "Sgp": { "type": "structure", "required": [ "S3Uri" @@ -12489,7 +12505,7 @@ "S3Uri": {} } }, - "Sgp": { + "Sgt": { "type": "list", "member": { "type": "structure", @@ -12518,7 +12534,7 @@ } } }, - "Sgw": { + "Sh0": { "type": "structure", "members": { "BaseliningJobName": {}, @@ -12527,7 +12543,7 @@ } } }, - "Sgx": { + "Sh1": { "type": "structure", "required": [ "ImageUri" @@ -12548,7 +12564,7 @@ } } }, - "Sgz": { + "Sh3": { "type": "structure", "required": [ "EndpointInput", @@ -12559,11 +12575,11 @@ "shape": "S79" }, "GroundTruthS3Input": { - "shape": "Sfv" + "shape": "Sfz" } } }, - "Sh3": { + "Sh7": { "type": "structure", "members": { "ScheduleConfig": { @@ -12641,7 +12657,7 @@ "shape": "S75" }, "NetworkConfig": { - "shape": "Shb" + "shape": "Shf" }, "RoleArn": {} } @@ -12650,7 +12666,7 @@ "MonitoringType": {} } }, - "Shb": { + "Shf": { "type": "structure", "members": { "EnableInterContainerTrafficEncryption": { @@ -12664,15 +12680,15 @@ } } }, - "Shl": { + "Shp": { "type": "list", "member": {} }, - "Sho": { + "Shs": { "type": "list", "member": {} }, - "Shr": { + "Shv": { "type": "structure", "required": [ "MinimumInstanceMetadataServiceVersion" @@ -12681,7 +12697,7 @@ "MinimumInstanceMetadataServiceVersion": {} } }, - "Shw": { + "Si0": { "type": "list", "member": { "type": "structure", @@ -12690,7 +12706,7 @@ } } }, - "Si4": { + "Si8": { "type": "structure", "required": [ "Bucket", @@ -12702,7 +12718,7 @@ "VersionId": {} } }, - "Sia": { + "Sie": { "type": "structure", "required": [ "MaxParallelExecutionSteps" @@ -12713,7 +12729,7 @@ } } }, - "Sin": { + "Sir": { "type": "list", "member": { "type": "structure", @@ -12794,7 +12810,7 @@ } } }, - "Sja": { + "Sje": { "type": "structure", "required": [ "Outputs" @@ -12840,7 +12856,7 @@ "KmsKeyId": {} } }, - "Sjf": { + "Sjj": { "type": "structure", "required": [ "ClusterConfig" @@ -12866,7 +12882,7 @@ } } }, - "Sjh": { + "Sjl": { "type": "structure", "required": [ "MaxRuntimeInSeconds" @@ -12877,7 +12893,7 @@ } } }, - "Sjj": { + "Sjn": { "type": "structure", "required": [ "ImageUri" @@ -12893,12 +12909,12 @@ } } }, - "Sjl": { + "Sjp": { "type": "map", "key": {}, "value": {} }, - "Sjm": { + "Sjq": { "type": "structure", "members": { "ExperimentName": {}, @@ -12906,7 +12922,7 @@ "TrialComponentDisplayName": {} } }, - "Sjr": { + "Sjv": { "type": "structure", "required": [ "ProductId" @@ -12916,11 +12932,11 @@ "ProvisioningArtifactId": {}, "PathId": {}, "ProvisioningParameters": { - "shape": "Sjt" + "shape": "Sjx" } } }, - "Sjt": { + "Sjx": { "type": "list", "member": { "type": "structure", @@ -12930,7 +12946,7 @@ } } }, - "Sk7": { + "Skb": { "type": "structure", "required": [ "TrainingInputMode" @@ -12947,7 +12963,7 @@ } } }, - "Sk8": { + "Skc": { "type": "structure", "required": [ "S3OutputPath" @@ -12976,7 +12992,7 @@ } } }, - "Skg": { + "Skk": { "type": "list", "member": { "type": "structure", @@ -12994,17 +13010,17 @@ "type": "integer" }, "RuleParameters": { - "shape": "Skj" + "shape": "Skn" } } } }, - "Skj": { + "Skn": { "type": "map", "key": {}, "value": {} }, - "Skk": { + "Sko": { "type": "structure", "required": [ "S3OutputPath" @@ -13014,7 +13030,7 @@ "S3OutputPath": {} } }, - "Skl": { + "Skp": { "type": "structure", "required": [ "S3OutputPath" @@ -13025,16 +13041,16 @@ "type": "long" }, "ProfilingParameters": { - "shape": "Skn" + "shape": "Skr" } } }, - "Skn": { + "Skr": { "type": "map", "key": {}, "value": {} }, - "Sko": { + "Sks": { "type": "list", "member": { "type": "structure", @@ -13052,17 +13068,17 @@ "type": "integer" }, "RuleParameters": { - "shape": "Skj" + "shape": "Skn" } } } }, - "Skq": { + "Sku": { "type": "map", "key": {}, "value": {} }, - "Skx": { + "Sl1": { "type": "structure", "members": { "InvocationsTimeoutInSeconds": { @@ -13073,7 +13089,7 @@ } } }, - "Sl0": { + "Sl4": { "type": "structure", "members": { "InputFilter": {}, @@ -13081,14 +13097,14 @@ "JoinSource": {} } }, - "Sl8": { + "Slc": { "type": "structure", "members": { "PrimaryStatus": {}, "Message": {} } }, - "Slc": { + "Slg": { "type": "map", "key": {}, "value": { @@ -13101,7 +13117,7 @@ } } }, - "Slg": { + "Slk": { "type": "map", "key": {}, "value": { @@ -13115,7 +13131,7 @@ } } }, - "Slr": { + "Slv": { "type": "structure", "required": [ "UserPool", @@ -13126,7 +13142,7 @@ "ClientId": {} } }, - "Slu": { + "Sly": { "type": "structure", "required": [ "ClientId", @@ -13152,7 +13168,7 @@ "JwksUri": {} } }, - "Slx": { + "Sm1": { "type": "structure", "required": [ "Cidrs" @@ -13164,27 +13180,27 @@ } } }, - "Sm1": { + "Sm5": { "type": "structure", "members": { "VpcId": {}, "SecurityGroupIds": { - "shape": "Sm3" + "shape": "Sm7" }, "Subnets": { - "shape": "Sm5" + "shape": "Sm9" } } }, - "Sm3": { + "Sm7": { "type": "list", "member": {} }, - "Sm5": { + "Sm9": { "type": "list", "member": {} }, - "Smb": { + "Smf": { "type": "list", "member": { "type": "structure", @@ -13217,13 +13233,13 @@ } } }, - "Smj": { + "Smn": { "type": "structure", "members": { "NotificationTopicArn": {} } }, - "Sod": { + "Soh": { "type": "structure", "members": { "UserProfileArn": {}, @@ -13231,7 +13247,7 @@ "DomainId": {} } }, - "Soj": { + "Son": { "type": "list", "member": { "type": "structure", @@ -13246,7 +13262,7 @@ } } }, - "Sox": { + "Sp1": { "type": "list", "member": { "type": "structure", @@ -13255,7 +13271,7 @@ } } }, - "Soz": { + "Sp3": { "type": "structure", "required": [ "CandidateName", @@ -13357,7 +13373,7 @@ } } }, - "Sq0": { + "Sq4": { "type": "structure", "required": [ "S3ModelArtifacts" @@ -13366,7 +13382,7 @@ "S3ModelArtifacts": {} } }, - "Sr3": { + "Sr7": { "type": "list", "member": { "type": "structure", @@ -13376,7 +13392,7 @@ "members": { "VariantName": {}, "DeployedImages": { - "shape": "Sr5" + "shape": "Sr9" }, "CurrentWeight": { "type": "float" @@ -13391,7 +13407,7 @@ "type": "integer" }, "VariantStatus": { - "shape": "Sr8" + "shape": "Src" }, "CurrentServerlessConfig": { "shape": "Sa2" @@ -13402,7 +13418,7 @@ } } }, - "Sr5": { + "Sr9": { "type": "list", "member": { "type": "structure", @@ -13415,7 +13431,7 @@ } } }, - "Sr8": { + "Src": { "type": "list", "member": { "type": "structure", @@ -13431,7 +13447,7 @@ } } }, - "Src": { + "Srg": { "type": "structure", "required": [ "EnableCapture", @@ -13452,7 +13468,7 @@ "KmsKeyId": {} } }, - "Srm": { + "Srq": { "type": "structure", "required": [ "SourceArn" @@ -13462,7 +13478,7 @@ "SourceType": {} } }, - "Srs": { + "Srw": { "type": "structure", "required": [ "Status" @@ -13472,7 +13488,7 @@ "BlockedReason": {} } }, - "Srv": { + "Srz": { "type": "structure", "required": [ "Status" @@ -13482,20 +13498,20 @@ "FailureReason": {} } }, - "Ss1": { + "Ss5": { "type": "list", "member": { - "shape": "Ss2" + "shape": "Ss6" } }, - "Ss2": { + "Ss6": { "type": "structure", "members": { "Key": {}, "Value": {} } }, - "Ssh": { + "Ssl": { "type": "structure", "members": { "Completed": { @@ -13515,7 +13531,7 @@ } } }, - "Ssj": { + "Ssn": { "type": "structure", "members": { "Succeeded": { @@ -13529,7 +13545,7 @@ } } }, - "Ssl": { + "Ssp": { "type": "structure", "required": [ "TrainingJobName", @@ -13574,7 +13590,7 @@ "ObjectiveStatus": {} } }, - "St8": { + "Stc": { "type": "structure", "members": { "TotalLabeled": { @@ -13594,7 +13610,7 @@ } } }, - "Stb": { + "Stf": { "type": "structure", "required": [ "OutputDatasetS3Uri" @@ -13604,21 +13620,21 @@ "FinalActiveLearningModelArn": {} } }, - "Stm": { + "Stq": { "type": "structure", "required": [ "ValidationStatuses" ], "members": { "ValidationStatuses": { - "shape": "Stn" + "shape": "Str" }, "ImageScanStatuses": { - "shape": "Stn" + "shape": "Str" } } }, - "Stn": { + "Str": { "type": "list", "member": { "type": "structure", @@ -13633,7 +13649,7 @@ } } }, - "Stz": { + "Su3": { "type": "structure", "required": [ "MonitoringScheduleName", @@ -13661,21 +13677,21 @@ "MonitoringType": {} } }, - "Sui": { + "Sum": { "type": "structure", "members": { "ExperimentName": {}, "TrialName": {} } }, - "Suq": { + "Suu": { "type": "structure", "members": { "ProvisionedProductId": {}, "ProvisionedProductStatusMessage": {} } }, - "Sux": { + "Sv1": { "type": "structure", "required": [ "WorkteamArn" @@ -13688,7 +13704,7 @@ "ListingId": {} } }, - "Sv1": { + "Sv5": { "type": "list", "member": { "type": "structure", @@ -13708,7 +13724,7 @@ } } }, - "Sv4": { + "Sv8": { "type": "list", "member": { "type": "structure", @@ -13723,7 +13739,7 @@ } } }, - "Sv8": { + "Svc": { "type": "list", "member": { "type": "structure", @@ -13738,7 +13754,7 @@ } } }, - "Svk": { + "Svo": { "type": "structure", "required": [ "SourceArn" @@ -13748,7 +13764,7 @@ "SourceType": {} } }, - "Svo": { + "Svs": { "type": "structure", "required": [ "SourceArn" @@ -13758,7 +13774,7 @@ "SourceType": {} } }, - "Svq": { + "Svu": { "type": "list", "member": { "type": "structure", @@ -13789,7 +13805,7 @@ } } }, - "Sw0": { + "Sw4": { "type": "structure", "required": [ "WorkforceName", @@ -13802,11 +13818,11 @@ "type": "timestamp" }, "SourceIpConfig": { - "shape": "Slx" + "shape": "Sm1" }, "SubDomain": {}, "CognitoConfig": { - "shape": "Slr" + "shape": "Slv" }, "OidcConfig": { "type": "structure", @@ -13833,10 +13849,10 @@ "members": { "VpcId": {}, "SecurityGroupIds": { - "shape": "Sm3" + "shape": "Sm7" }, "Subnets": { - "shape": "Sm5" + "shape": "Sm9" }, "VpcEndpointId": {} } @@ -13845,7 +13861,7 @@ "FailureReason": {} } }, - "Sw8": { + "Swc": { "type": "structure", "required": [ "WorkteamName", @@ -13856,7 +13872,7 @@ "members": { "WorkteamName": {}, "MemberDefinitions": { - "shape": "Smb" + "shape": "Smf" }, "WorkteamArn": {}, "WorkforceArn": {}, @@ -13873,11 +13889,11 @@ "type": "timestamp" }, "NotificationConfiguration": { - "shape": "Smj" + "shape": "Smn" } } }, - "Sz1": { + "Sz5": { "type": "list", "member": { "type": "structure", @@ -13897,7 +13913,7 @@ } } }, - "S141": { + "S145": { "type": "list", "member": { "type": "structure", @@ -13911,7 +13927,7 @@ } } }, - "S14g": { + "S14k": { "type": "list", "member": { "type": "structure", @@ -13925,7 +13941,7 @@ } } }, - "S16x": { + "S171": { "type": "list", "member": { "type": "structure", @@ -13939,11 +13955,11 @@ } } }, - "S178": { + "S17c": { "type": "structure", "members": { "Filters": { - "shape": "S179" + "shape": "S17d" }, "NestedFilters": { "type": "list", @@ -13956,7 +13972,7 @@ "members": { "NestedPropertyName": {}, "Filters": { - "shape": "S179" + "shape": "S17d" } } } @@ -13964,13 +13980,13 @@ "SubExpressions": { "type": "list", "member": { - "shape": "S178" + "shape": "S17c" } }, "Operator": {} } }, - "S179": { + "S17d": { "type": "list", "member": { "type": "structure", @@ -13984,7 +14000,7 @@ } } }, - "S17l": { + "S17p": { "type": "structure", "members": { "TrainingJobName": {}, @@ -13993,7 +14009,7 @@ "LabelingJobArn": {}, "AutoMLJobArn": {}, "ModelArtifacts": { - "shape": "Sq0" + "shape": "Sq4" }, "TrainingJobStatus": {}, "SecondaryStatus": {}, @@ -14002,7 +14018,7 @@ "shape": "S2t" }, "AlgorithmSpecification": { - "shape": "Sk7" + "shape": "Skb" }, "RoleArn": {}, "InputDataConfig": { @@ -14033,10 +14049,10 @@ "type": "timestamp" }, "SecondaryStatusTransitions": { - "shape": "Sv1" + "shape": "Sv5" }, "FinalMetricDataList": { - "shape": "Sv4" + "shape": "Sv8" }, "EnableNetworkIsolation": { "type": "boolean" @@ -14048,7 +14064,7 @@ "type": "boolean" }, "CheckpointConfig": { - "shape": "Sct" + "shape": "Scx" }, "TrainingTimeInSeconds": { "type": "integer" @@ -14057,36 +14073,36 @@ "type": "integer" }, "DebugHookConfig": { - "shape": "Sk8" + "shape": "Skc" }, "ExperimentConfig": { - "shape": "Sjm" + "shape": "Sjq" }, "DebugRuleConfigurations": { - "shape": "Skg" + "shape": "Skk" }, "TensorBoardOutputConfig": { - "shape": "Skk" + "shape": "Sko" }, "DebugRuleEvaluationStatuses": { - "shape": "Sv8" + "shape": "Svc" }, "Environment": { - "shape": "Skq" + "shape": "Sku" }, "RetryStrategy": { - "shape": "Scu" + "shape": "Scy" }, "Tags": { "shape": "S7" } } }, - "S18v": { + "S18z": { "type": "list", "member": {} }, - "S1ao": { + "S1as": { "type": "list", "member": {} } diff --git a/apis/sagemaker-2017-07-24.normal.json b/apis/sagemaker-2017-07-24.normal.json index 03f6045f0c..ee89c92d27 100644 --- a/apis/sagemaker-2017-07-24.normal.json +++ b/apis/sagemaker-2017-07-24.normal.json @@ -139,7 +139,7 @@ "shape": "ResourceInUse" } ], - "documentation": "Creates a running app for the specified UserProfile. Supported apps are JupyterServer
and KernelGateway
. This operation is automatically invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel configurations are selected by the user. A user may have multiple Apps active simultaneously.
Creates a running app for the specified UserProfile. This operation is automatically invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel configurations are selected by the user. A user may have multiple Apps active simultaneously.
" }, "CreateAppImageConfig": { "name": "CreateAppImageConfig", @@ -7459,7 +7459,7 @@ }, "AppType": { "shape": "AppType", - "documentation": "The type of app. Supported apps are JupyterServer
and KernelGateway
. TensorBoard
is not supported.
The type of app.
" }, "AppName": { "shape": "AppName", @@ -14832,7 +14832,7 @@ }, "ExecutionRoleIdentityConfig": { "shape": "ExecutionRoleIdentityConfig", - "documentation": "The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity
key.
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
" } }, "documentation": "A collection of settings that apply to the SageMaker Domain
. These settings are specified through the CreateDomain
API call.
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity
key. This configuration can only be modified if there are no apps in the InService
or Pending
state.
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key. This configuration can only be modified if there are no apps in the InService
or Pending
state.
A collection of Domain
configuration settings to update.
Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects.
" + "documentation": "Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects. To increase the maximum value to 5000 objects, contact Amazon Web Services Support.
" }, "AnnotationConsolidationConfig": { "shape": "AnnotationConsolidationConfig", @@ -17253,7 +17253,11 @@ "members": { "Strategy": { "shape": "HyperParameterTuningJobStrategyType", - "documentation": "Specifies how hyperparameter tuning chooses the combinations of hyperparameter values to use for the training job it launches. To use the Bayesian search strategy, set this to Bayesian
. To randomly search, set it to Random
. For information about search strategies, see How Hyperparameter Tuning Works.
Specifies how hyperparameter tuning chooses the combinations of hyperparameter values to use for the training job it launches. For information about search strategies, see How Hyperparameter Tuning Works.
" + }, + "StrategyConfig": { + "shape": "HyperParameterTuningJobStrategyConfig", + "documentation": "The configuration for the Hyperband
optimization strategy. This parameter should be provided only if Hyperband
is selected as the strategy for HyperParameterTuningJobConfig
.
Specifies whether to use early stopping for training jobs launched by the hyperparameter tuning job. This can be one of the following values (the default value is OFF
):
Training jobs launched by the hyperparameter tuning job do not use early stopping.
SageMaker stops training jobs launched by the hyperparameter tuning job when they are unlikely to perform better than previously completed training jobs. For more information, see Stop Training Jobs Early.
Specifies whether to use early stopping for training jobs launched by the hyperparameter tuning job. Because the Hyperband
strategy has its own advanced internal early stopping mechanism, TrainingJobEarlyStoppingType
must be OFF
to use Hyperband
. This parameter can take on one of the following values (the default value is OFF
):
Training jobs launched by the hyperparameter tuning job do not use early stopping.
SageMaker stops training jobs launched by the hyperparameter tuning job when they are unlikely to perform better than previously completed training jobs. For more information, see Stop Training Jobs Early.
The configuration for the object that specifies the Hyperband
strategy. This parameter is only supported for the Hyperband
selection for Strategy
within the HyperParameterTuningJobConfig
API.
The configuration for a training job launched by a hyperparameter tuning job. Choose Bayesian
for Bayesian optimization, and Random
for random search optimization. For more advanced use cases, use Hyperband
, which evaluates objective metrics for training jobs after every epoch. For more information about strategies, see How Hyperparameter Tuning Works.
The strategy hyperparameter tuning uses to find the best combination of hyperparameters for your model. Currently, the only supported value is Bayesian
.
Specifies the search strategy hyperparameter tuning uses to choose which hyperparameters to use for each iteration. Currently, the only valid value is Bayesian.
" + "documentation": "Specifies the search strategy hyperparameter tuning uses to choose which hyperparameters to evaluate at each iteration.
" }, "CreationTime": { "shape": "Timestamp", @@ -17536,6 +17551,28 @@ "max": 100, "min": 0 }, + "HyperbandStrategyConfig": { + "type": "structure", + "members": { + "MinResource": { + "shape": "HyperbandStrategyMinResource", + "documentation": "The minimum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job. If the value for MinResource
has not been reached, the training job will not be stopped by Hyperband
.
The maximum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job. Once a job reaches the MaxResource
value, it is stopped. If a value for MaxResource
is not provided, and Hyperband
is selected as the hyperparameter tuning strategy, HyperbandTrainingJ
attempts to infer MaxResource
from the following keys (if present) in StaticsHyperParameters:
epochs
numepochs
n-epochs
n_epochs
num_epochs
If HyperbandStrategyConfig
is unable to infer a value for MaxResource
, it generates a validation error. The maximum value is 20,000 epochs. All metrics that correspond to an objective metric are used to derive early stopping decisions. For distributive training jobs, ensure that duplicate metrics are not printed in the logs across the individual nodes in a training job. If multiple nodes are publishing duplicate or incorrect metrics, training jobs may make an incorrect stopping decision and stop the job prematurely.
The configuration for Hyperband
, a multi-fidelity based hyperparameter tuning strategy. Hyperband
uses the final and intermediate results of a training job to dynamically allocate resources to utilized hyperparameter configurations while automatically stopping under-performing configurations. This parameter should be provided only if Hyperband
is selected as the StrategyConfig
under the HyperParameterTuningJobConfig
API.
>1,l=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,d=a?0:s-1,y=a?1:-1,b=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(n=isNaN(t)?1:0,o=m):(o=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-o))<1&&(o--,u*=2),t+=o+c>=1?l/u:l*Math.pow(2,1-c),t*u>=2&&(o++,u/=2),o+c>=m?(n=0,o=m):o+c>=1?(n=(t*u-1)*Math.pow(2,i),o+=c):(n=t*Math.pow(2,c-1)*Math.pow(2,i),o=0));i>=8;e[r+d]=255&n,d+=y,n/=256,i-=8);for(o=o<0;e[r+d]=255&o,d+=y,o/=256,p-=8);e[r+d-y]|=128*b}},{}],434:[function(e,t,r){var a={}.toString;t.exports=Array.isArray||function(e){return"[object Array]"==a.call(e)}},{}],435:[function(e,t,r){!function(e){"use strict";function t(e){return null!==e&&"[object Array]"===Object.prototype.toString.call(e)}function r(e){return null!==e&&"[object Object]"===Object.prototype.toString.call(e)}function a(e,i){if(e===i)return!0;if(Object.prototype.toString.call(e)!==Object.prototype.toString.call(i))return!1;if(!0===t(e)){if(e.length!==i.length)return!1;for(var s=0;s =0?this.expression(e):"Lbracket"===t?(this._match("Lbracket"),this._parseMultiselectList()):"Lbrace"===t?(this._match("Lbrace"),this._parseMultiselectHash()):void 0},_parseProjectionRHS:function(e){var t;if(P[this._lookahead(0)]<10)t={type:"Identity"};else if("Lbracket"===this._lookahead(0))t=this.expression(e);else if("Filter"===this._lookahead(0))t=this.expression(e);else{if("Dot"!==this._lookahead(0)){var r=this._lookaheadToken(0),a=new Error("Sytanx error, unexpected token: "+r.value+"("+r.type+")");throw a.name="ParserError",a}this._match("Dot"),t=this._parseDotRHS(e)}return t},_parseMultiselectList:function(){for(var e=[];"Rbracket"!==this._lookahead(0);){var t=this.expression(0);if(e.push(t),"Comma"===this._lookahead(0)&&(this._match("Comma"),"Rbracket"===this._lookahead(0)))throw new Error("Unexpected token Rbracket")}return this._match("Rbracket"),{type:"MultiSelectList",children:e}},_parseMultiselectHash:function(){for(var e,t,r,a,i=[],s=["UnquotedIdentifier","QuotedIdentifier"];;){if(e=this._lookaheadToken(0),s.indexOf(e.type)<0)throw new Error("Expecting an identifier token, got: "+e.type);if(t=e.value,this._advance(),this._match("Colon"),r=this.expression(0),a={type:"KeyValuePair",name:t,value:r},i.push(a),"Comma"===this._lookahead(0))this._match("Comma");else if("Rbrace"===this._lookahead(0)){this._match("Rbrace");break}}return{type:"MultiSelectHash",children:i}}},c.prototype={search:function(e,t){return this.visit(e,t)},visit:function(e,o){var n,u,p,m,c,l,d,y,b;switch(e.type){case"Field":return null!==o&&r(o)?(l=o[e.name],void 0===l?null:l):null;case"Subexpression":for(p=this.visit(e.children[0],o),b=1;b G((f-r)/g)&&i("overflow"),r+=(p-t)*g,t=p,u=0;u =0?(c=b.substr(0,S),l=b.substr(S+1)):(c=b,l=""),d=decodeURIComponent(c),y=decodeURIComponent(l),a(o,d)?i(o[d])?o[d].push(y):o[d]=[o[d],y]:o[d]=y}return o};var i=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)}},{}],439:[function(e,t,r){"use strict";function a(e,t){if(e.map)return e.map(t);for(var r=[],a=0;a >1,l=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,d=a?0:s-1,y=a?1:-1,b=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(n=isNaN(t)?1:0,o=m):(o=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-o))<1&&(o--,u*=2),t+=o+c>=1?l/u:l*Math.pow(2,1-c),t*u>=2&&(o++,u/=2),o+c>=m?(n=0,o=m):o+c>=1?(n=(t*u-1)*Math.pow(2,i),o+=c):(n=t*Math.pow(2,c-1)*Math.pow(2,i),o=0));i>=8;e[r+d]=255&n,d+=y,n/=256,i-=8);for(o=o<0;e[r+d]=255&o,d+=y,o/=256,p-=8);e[r+d-y]|=128*b}},{}],434:[function(e,t,r){var a={}.toString;t.exports=Array.isArray||function(e){return"[object Array]"==a.call(e)}},{}],435:[function(e,t,r){!function(e){"use strict";function t(e){return null!==e&&"[object Array]"===Object.prototype.toString.call(e)}function r(e){return null!==e&&"[object Object]"===Object.prototype.toString.call(e)}function a(e,i){if(e===i)return!0;if(Object.prototype.toString.call(e)!==Object.prototype.toString.call(i))return!1;if(!0===t(e)){if(e.length!==i.length)return!1;for(var s=0;s =0?this.expression(e):"Lbracket"===t?(this._match("Lbracket"),this._parseMultiselectList()):"Lbrace"===t?(this._match("Lbrace"),this._parseMultiselectHash()):void 0},_parseProjectionRHS:function(e){var t;if(P[this._lookahead(0)]<10)t={type:"Identity"};else if("Lbracket"===this._lookahead(0))t=this.expression(e);else if("Filter"===this._lookahead(0))t=this.expression(e);else{if("Dot"!==this._lookahead(0)){var r=this._lookaheadToken(0),a=new Error("Sytanx error, unexpected token: "+r.value+"("+r.type+")");throw a.name="ParserError",a}this._match("Dot"),t=this._parseDotRHS(e)}return t},_parseMultiselectList:function(){for(var e=[];"Rbracket"!==this._lookahead(0);){var t=this.expression(0);if(e.push(t),"Comma"===this._lookahead(0)&&(this._match("Comma"),"Rbracket"===this._lookahead(0)))throw new Error("Unexpected token Rbracket")}return this._match("Rbracket"),{type:"MultiSelectList",children:e}},_parseMultiselectHash:function(){for(var e,t,r,a,i=[],s=["UnquotedIdentifier","QuotedIdentifier"];;){if(e=this._lookaheadToken(0),s.indexOf(e.type)<0)throw new Error("Expecting an identifier token, got: "+e.type);if(t=e.value,this._advance(),this._match("Colon"),r=this.expression(0),a={type:"KeyValuePair",name:t,value:r},i.push(a),"Comma"===this._lookahead(0))this._match("Comma");else if("Rbrace"===this._lookahead(0)){this._match("Rbrace");break}}return{type:"MultiSelectHash",children:i}}},c.prototype={search:function(e,t){return this.visit(e,t)},visit:function(e,o){var n,u,p,m,c,l,d,y,b;switch(e.type){case"Field":return null!==o&&r(o)?(l=o[e.name],void 0===l?null:l):null;case"Subexpression":for(p=this.visit(e.children[0],o),b=1;b G((f-r)/g)&&i("overflow"),r+=(p-t)*g,t=p,u=0;u =0?(c=b.substr(0,S),l=b.substr(S+1)):(c=b,l=""),d=decodeURIComponent(c),y=decodeURIComponent(l),a(o,d)?i(o[d])?o[d].push(y):o[d]=[o[d],y]:o[d]=y}return o};var i=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)}},{}],439:[function(e,t,r){"use strict";function a(e,t){if(e.map)return e.map(t);for(var r=[],a=0;a=55296&&t<=56319&&i65535&&(e-=65536,t+=w(e>>>10&1023|55296),e=56320|1023&e),t+=w(e)}).join("")}function p(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:T}function m(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function c(e,t,r){var a=0;for(e=r?G(e/R):e>>1,e+=G(e/t);e>L*k>>1;a+=T)e=G(e/L);return G(a+(L+1)*e/(e+A))}function l(e){var t,r,a,s,o,n,m,l,d,y,b=[],S=e.length,g=0,h=D,N=v;for(r=e.lastIndexOf(P),r<0&&(r=0),a=0;a=S&&i("invalid-input"),l=p(e.charCodeAt(s++)),(l>=T||l>G((f-g)/n))&&i("overflow"),g+=l*n,d=m<=N?C:m>=N+k?k:m-N,!(l=t&&bf&&i("overflow"),b==t){for(l=r,d=T;y=d<=o?C:d>=o+k?k:d-o,!(l0){t=new n.XML.Parser;var c=t.parse(a.toString(),s);u.update(e.data,c)}}var n=e("../core"),u=e("../util"),p=e("./rest");t.exports={buildRequest:i,extractError:s,extractData:o}},{"../core":342,"../util":419,"./rest":379}],382:[function(e,t,r){function a(){}function i(e){return e.isQueryName||"ec2"!==e.api.protocol?e.name:e.name[0].toUpperCase()+e.name.substr(1)}function s(e,t,r,a){p.each(r.members,function(r,s){var o=t[r];if(null!==o&&void 0!==o){var n=i(s);n=e?e+"."+n:n,u(n,o,s,a)}})}function o(e,t,r,a){var i=1;p.each(t,function(t,s){var o=r.flattened?".":".entry.",n=o+i+++".",p=n+(r.key.name||"key"),m=n+(r.value.name||"value");u(e+p,t,r.key,a),u(e+m,s,r.value,a)})}function n(e,t,r,a){var s=r.member||{};if(0===t.length)return void a.call(this,e,null);p.arrayEach(t,function(t,o){var n="."+(o+1);if("ec2"===r.api.protocol)n+="";else if(r.flattened){if(s.name){var p=e.split(".");p.pop(),p.push(i(s)),e=p.join(".")}}else n="."+(s.name?s.name:"member")+n;u(e+n,t,s,a)})}function u(e,t,r,a){null!==t&&void 0!==t&&("structure"===r.type?s(e,t,r,a):"list"===r.type?n(e,t,r,a):"map"===r.type?o(e,t,r,a):a(e,r.toWireFormat(t).toString()))}var p=e("../util");a.prototype.serialize=function(e,t,r){s("",e,t,r)},t.exports=a},{"../util":419}],383:[function(e,t,r){var a=e("../core"),i=null,s={signatureVersion:"v4",signingName:"rds-db",operations:{}},o={region:"string",hostname:"string",port:"number",username:"string"};a.RDS.Signer=a.util.inherit({constructor:function(e){this.options=e||{}},convertUrlToAuthToken:function(e){if(0===e.indexOf("https://"))return e.substring("https://".length)},getAuthToken:function(e,t){"function"==typeof e&&void 0===t&&(t=e,e={});var r=this,o="function"==typeof t;e=a.util.merge(this.options,e);var n=this.validateAuthTokenOptions(e);if(!0!==n){if(o)return t(n,null);throw n}var u={region:e.region,endpoint:new a.Endpoint(e.hostname+":"+e.port),paramValidation:!1,signatureVersion:"v4"};e.credentials&&(u.credentials=e.credentials),i=new a.Service(u),i.api=s;var p=i.makeRequest();if(this.modifyRequestForAuthToken(p,e),!o){var m=p.presign(900);return this.convertUrlToAuthToken(m)}p.presign(900,function(e,a){a&&(a=r.convertUrlToAuthToken(a)),t(e,a)})},modifyRequestForAuthToken:function(e,t){e.on("build",e.buildAsGet),e.httpRequest.body=a.util.queryParamsToString({Action:"connect",DBUser:t.username})},validateAuthTokenOptions:function(e){var t="";e=e||{};for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&typeof e[r]!==o[r]&&(t+="option '"+r+"' should have been type '"+o[r]+"', was '"+typeof e[r]+"'.\n");return!t.length||a.util.error(new Error,{code:"InvalidParameter",message:t})}})},{"../core":342}],384:[function(e,t,r){t.exports={now:function(){return"undefined"!=typeof performance&&"function"==typeof performance.now?performance.now():Date.now()}}},{}],385:[function(e,t,r){function a(e){return"string"==typeof e&&(e.startsWith("fips-")||e.endsWith("-fips"))}function i(e){return"string"==typeof e&&["aws-global","aws-us-gov-global"].includes(e)}function s(e){return["fips-aws-global","aws-fips","aws-global"].includes(e)?"us-east-1":["fips-aws-us-gov-global","aws-us-gov-global"].includes(e)?"us-gov-west-1":e.replace(/fips-(dkr-|prod-)?|-fips/,"")}t.exports={isFipsRegion:a,isGlobalRegion:i,getRealRegion:s}},{}],386:[function(e,t,r){function a(e){if(!e)return null;var t=e.split("-");return t.length<3?null:t.slice(0,t.length-2).join("-")+"-*"}function i(e){var t=e.config.region,r=a(t),i=e.api.endpointPrefix;return[[t,i],[r,i],[t,"*"],[r,"*"],["*",i],["*","*"]].map(function(e){return e[0]&&e[1]?e.join("/"):null})}function s(e,t){u.each(t,function(t,r){"globalEndpoint"!==t&&(void 0!==e.config[t]&&null!==e.config[t]||(e.config[t]=r))})}function o(e){for(var t=i(e),r=e.config.useFipsEndpoint,a=e.config.useDualstackEndpoint,o=0;o=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|e}function b(e){return+e!=e&&(e=0),s.alloc(+e)}function S(e,t){if(s.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var r=e.length;if(0===r)return 0;for(var a=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":case void 0:return K(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return H(e).length;default:if(a)return K(e).length;t=(""+t).toLowerCase(),a=!0}}function g(e,t,r){var a=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if(r>>>=0,t>>>=0,r<=t)return"";for(e||(e="utf8");;)switch(e){case"hex":return E(this,t,r);case"utf8":case"utf-8":return D(this,t,r);case"ascii":return x(this,t,r);case"latin1":case"binary":return q(this,t,r);case"base64":return v(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return M(this,t,r);default:if(a)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),a=!0}}function h(e,t,r){var a=e[t];e[t]=e[r],e[r]=a}function N(e,t,r,a,i){if(0===e.length)return-1;if("string"==typeof r?(a=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,isNaN(r)&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return-1;r=e.length-1}else if(r<0){if(!i)return-1;r=0}if("string"==typeof t&&(t=s.from(t,a)),s.isBuffer(t))return 0===t.length?-1:I(e,t,r,a,i);if("number"==typeof t)return t&=255,s.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):I(e,[t],r,a,i);throw new TypeError("val must be string, number or Buffer")}function I(e,t,r,a,i){function s(e,t){return 1===o?e[t]:e.readUInt16BE(t*o)}var o=1,n=e.length,u=t.length;if(void 0!==a&&("ucs2"===(a=String(a).toLowerCase())||"ucs-2"===a||"utf16le"===a||"utf-16le"===a)){if(e.length<2||t.length<2)return-1;o=2,n/=2,u/=2,r/=2}var p;if(i){var m=-1;for(p=r;p>>8*(a?i:1-i)}function B(e,t,r,a){t<0&&(t=4294967295+t+1);for(var i=0,s=Math.min(e.length-r,4);i>>8*(a?i:3-i)&255}function U(e,t,r,a,i,s){if(r+a>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function _(e,t,r,a,i){return i||U(e,t,r,4,3.4028234663852886e38,-3.4028234663852886e38),X.write(e,t,r,a,23,4),r+4}function F(e,t,r,a,i){return i||U(e,t,r,8,1.7976931348623157e308,-1.7976931348623157e308),X.write(e,t,r,a,52,8),r+8}function O(e){if(e=V(e).replace(ee,""),e.length<2)return"";for(;e.length%4!=0;)e+="=";return e}function V(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}function z(e){return e<16?"0"+e.toString(16):e.toString(16)}function K(e,t){t=t||1/0;for(var r,a=e.length,i=null,s=[],o=0;o55295&&r<57344){if(!i){if(r>56319){(t-=3)>-1&&s.push(239,191,189);continue}if(o+1===a){(t-=3)>-1&&s.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&s.push(239,191,189),i=r;continue}r=65536+(i-55296<<10|r-56320)}else i&&(t-=3)>-1&&s.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;s.push(r)}else if(r<2048){if((t-=2)<0)break;s.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;s.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;s.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return s}function j(e){for(var t=[],r=0;r=55296&&t<=56319&&i65535&&(e-=65536,t+=w(e>>>10&1023|55296),e=56320|1023&e),t+=w(e)}).join("")}function p(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:T}function m(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function c(e,t,r){var a=0;for(e=r?G(e/R):e>>1,e+=G(e/t);e>L*k>>1;a+=T)e=G(e/L);return G(a+(L+1)*e/(e+A))}function l(e){var t,r,a,s,o,n,m,l,d,y,b=[],S=e.length,g=0,h=D,N=v;for(r=e.lastIndexOf(P),r<0&&(r=0),a=0;a=S&&i("invalid-input"),l=p(e.charCodeAt(s++)),(l>=T||l>G((f-g)/n))&&i("overflow"),g+=l*n,d=m<=N?C:m>=N+k?k:m-N,!(l=t&&bf&&i("overflow"),b==t){for(l=r,d=T;y=d<=o?C:d>=o+k?k:d-o,!(l