aws-sdk 2.1644.0 → 2.1646.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.
Files changed (39) hide show
  1. package/README.md +1 -1
  2. package/apis/artifact-2018-05-10.examples.json +113 -0
  3. package/apis/artifact-2018-05-10.min.json +47 -41
  4. package/apis/artifact-2018-05-10.waiters2.json +5 -0
  5. package/apis/athena-2017-05-18.min.json +4 -1
  6. package/apis/bedrock-runtime-2023-09-30.min.json +72 -45
  7. package/apis/codeartifact-2018-09-22.min.json +7 -1
  8. package/apis/compute-optimizer-2019-11-01.min.json +447 -134
  9. package/apis/cost-optimization-hub-2022-07-26.min.json +310 -262
  10. package/apis/cost-optimization-hub-2022-07-26.waiters2.json +5 -0
  11. package/apis/cur-2017-01-06.min.json +7 -1
  12. package/apis/directconnect-2012-10-25.min.json +7 -1
  13. package/apis/dynamodb-2011-12-05.min.json +4 -1
  14. package/apis/dynamodb-2012-08-10.min.json +4 -1
  15. package/apis/elastictranscoder-2012-09-25.min.json +7 -1
  16. package/apis/glue-2017-03-31.paginators.json +16 -8
  17. package/apis/ivs-realtime-2020-07-14.min.json +272 -245
  18. package/apis/ivs-realtime-2020-07-14.waiters2.json +5 -0
  19. package/apis/opensearch-2021-01-01.min.json +137 -112
  20. package/apis/sagemaker-2017-07-24.min.json +1261 -1207
  21. package/apis/securityhub-2018-10-26.min.json +4 -1
  22. package/clients/artifact.d.ts +68 -64
  23. package/clients/artifact.js +1 -0
  24. package/clients/bedrockruntime.d.ts +31 -0
  25. package/clients/codeartifact.d.ts +28 -28
  26. package/clients/computeoptimizer.d.ts +449 -47
  27. package/clients/costoptimizationhub.d.ts +380 -328
  28. package/clients/costoptimizationhub.js +1 -0
  29. package/clients/dynamodb.d.ts +12 -12
  30. package/clients/ivsrealtime.d.ts +282 -233
  31. package/clients/ivsrealtime.js +1 -0
  32. package/clients/opensearch.d.ts +48 -2
  33. package/clients/sagemaker.d.ts +134 -34
  34. package/dist/aws-sdk-core-react-native.js +1 -1
  35. package/dist/aws-sdk-react-native.js +347 -326
  36. package/dist/aws-sdk.js +36 -9
  37. package/dist/aws-sdk.min.js +105 -105
  38. package/lib/core.js +1 -1
  39. package/package.json +1 -1
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['ivsrealtime'], '2020-07-14', {
9
9
  get: function get() {
10
10
  var model = require('../apis/ivs-realtime-2020-07-14.min.json');
11
11
  model.paginators = require('../apis/ivs-realtime-2020-07-14.paginators.json').pagination;
12
+ model.waiters = require('../apis/ivs-realtime-2020-07-14.waiters2.json').waiters;
12
13
  return model;
13
14
  },
14
15
  enumerable: true,
@@ -627,6 +627,10 @@ declare namespace OpenSearch {
627
627
  * Container for information about the SAML configuration for OpenSearch Dashboards.
628
628
  */
629
629
  SAMLOptions?: SAMLOptionsOutput;
630
+ /**
631
+ * Container for information about the JWT configuration of the Amazon OpenSearch Service.
632
+ */
633
+ JWTOptions?: JWTOptionsOutput;
630
634
  /**
631
635
  * Date and time when the migration period will be disabled. Only necessary when enabling fine-grained access control on an existing domain.
632
636
  */
@@ -653,6 +657,10 @@ declare namespace OpenSearch {
653
657
  * Container for information about the SAML configuration for OpenSearch Dashboards.
654
658
  */
655
659
  SAMLOptions?: SAMLOptionsInput;
660
+ /**
661
+ * Container for information about the JWT configuration of the Amazon OpenSearch Service.
662
+ */
663
+ JWTOptions?: JWTOptionsInput;
656
664
  /**
657
665
  * True to enable a 30-day migration period during which administrators can create role mappings. Only necessary when enabling fine-grained access control on an existing domain.
658
666
  */
@@ -2324,7 +2332,7 @@ declare namespace OpenSearch {
2324
2332
  */
2325
2333
  Description?: DataSourceDescription;
2326
2334
  /**
2327
- * The status of the data source response.
2335
+ * The status of the data source.
2328
2336
  */
2329
2337
  Status?: DataSourceStatus;
2330
2338
  }
@@ -2540,6 +2548,42 @@ declare namespace OpenSearch {
2540
2548
  export type IntegerClass = number;
2541
2549
  export type Issue = string;
2542
2550
  export type Issues = Issue[];
2551
+ export interface JWTOptionsInput {
2552
+ /**
2553
+ * True to enable JWT authentication and authorization for a domain.
2554
+ */
2555
+ Enabled?: Boolean;
2556
+ /**
2557
+ * Element of the JWT assertion to use for the user name.
2558
+ */
2559
+ SubjectKey?: SubjectKey;
2560
+ /**
2561
+ * Element of the JWT assertion to use for roles.
2562
+ */
2563
+ RolesKey?: RolesKey;
2564
+ /**
2565
+ * Element of the JWT assertion used by the cluster to verify JWT signatures.
2566
+ */
2567
+ PublicKey?: String;
2568
+ }
2569
+ export interface JWTOptionsOutput {
2570
+ /**
2571
+ * True if JWT use is enabled.
2572
+ */
2573
+ Enabled?: Boolean;
2574
+ /**
2575
+ * The key used for matching the JWT subject attribute.
2576
+ */
2577
+ SubjectKey?: String;
2578
+ /**
2579
+ * The key used for matching the JWT roles attribute.
2580
+ */
2581
+ RolesKey?: String;
2582
+ /**
2583
+ * The key used to verify the signature of incoming JWT requests.
2584
+ */
2585
+ PublicKey?: String;
2586
+ }
2543
2587
  export type KmsKeyId = string;
2544
2588
  export type LastUpdated = Date;
2545
2589
  export type LimitName = string;
@@ -3276,6 +3320,7 @@ declare namespace OpenSearch {
3276
3320
  export interface RevokeVpcEndpointAccessResponse {
3277
3321
  }
3278
3322
  export type RoleArn = string;
3323
+ export type RolesKey = string;
3279
3324
  export type RollbackOnDisable = "NO_ROLLBACK"|"DEFAULT_ROLLBACK"|string;
3280
3325
  export type S3BucketName = string;
3281
3326
  export interface S3GlueDataCatalog {
@@ -3553,6 +3598,7 @@ declare namespace OpenSearch {
3553
3598
  export type StorageTypeName = string;
3554
3599
  export type String = string;
3555
3600
  export type StringList = String[];
3601
+ export type SubjectKey = string;
3556
3602
  export type TLSSecurityPolicy = "Policy-Min-TLS-1-0-2019-07"|"Policy-Min-TLS-1-2-2019-07"|"Policy-Min-TLS-1-2-PFS-2023-10"|string;
3557
3603
  export interface Tag {
3558
3604
  /**
@@ -3589,7 +3635,7 @@ declare namespace OpenSearch {
3589
3635
  */
3590
3636
  Description?: DataSourceDescription;
3591
3637
  /**
3592
- * The status of the data source update request.
3638
+ * The status of the data source update.
3593
3639
  */
3594
3640
  Status?: DataSourceStatus;
3595
3641
  }
@@ -221,13 +221,21 @@ declare class SageMaker extends Service {
221
221
  */
222
222
  createFlowDefinition(callback?: (err: AWSError, data: SageMaker.Types.CreateFlowDefinitionResponse) => void): Request<SageMaker.Types.CreateFlowDefinitionResponse, AWSError>;
223
223
  /**
224
- * Create a hub. Hub APIs are only callable through SageMaker Studio.
224
+ * Create a hub.
225
225
  */
226
226
  createHub(params: SageMaker.Types.CreateHubRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateHubResponse) => void): Request<SageMaker.Types.CreateHubResponse, AWSError>;
227
227
  /**
228
- * Create a hub. Hub APIs are only callable through SageMaker Studio.
228
+ * Create a hub.
229
229
  */
230
230
  createHub(callback?: (err: AWSError, data: SageMaker.Types.CreateHubResponse) => void): Request<SageMaker.Types.CreateHubResponse, AWSError>;
231
+ /**
232
+ * Create a hub content reference in order to add a model in the JumpStart public hub to a private hub.
233
+ */
234
+ createHubContentReference(params: SageMaker.Types.CreateHubContentReferenceRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateHubContentReferenceResponse) => void): Request<SageMaker.Types.CreateHubContentReferenceResponse, AWSError>;
235
+ /**
236
+ * Create a hub content reference in order to add a model in the JumpStart public hub to a private hub.
237
+ */
238
+ createHubContentReference(callback?: (err: AWSError, data: SageMaker.Types.CreateHubContentReferenceResponse) => void): Request<SageMaker.Types.CreateHubContentReferenceResponse, AWSError>;
231
239
  /**
232
240
  * Defines the settings you will use for the human review workflow user interface. Reviewers will see a three-panel interface with an instruction area, the item to review, and an input area.
233
241
  */
@@ -669,21 +677,29 @@ declare class SageMaker extends Service {
669
677
  */
670
678
  deleteFlowDefinition(callback?: (err: AWSError, data: SageMaker.Types.DeleteFlowDefinitionResponse) => void): Request<SageMaker.Types.DeleteFlowDefinitionResponse, AWSError>;
671
679
  /**
672
- * Delete a hub. Hub APIs are only callable through SageMaker Studio.
680
+ * Delete a hub.
673
681
  */
674
682
  deleteHub(params: SageMaker.Types.DeleteHubRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
675
683
  /**
676
- * Delete a hub. Hub APIs are only callable through SageMaker Studio.
684
+ * Delete a hub.
677
685
  */
678
686
  deleteHub(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
679
687
  /**
680
- * Delete the contents of a hub. Hub APIs are only callable through SageMaker Studio.
688
+ * Delete the contents of a hub.
681
689
  */
682
690
  deleteHubContent(params: SageMaker.Types.DeleteHubContentRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
683
691
  /**
684
- * Delete the contents of a hub. Hub APIs are only callable through SageMaker Studio.
692
+ * Delete the contents of a hub.
685
693
  */
686
694
  deleteHubContent(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
695
+ /**
696
+ * Delete a hub content reference in order to remove a model from a private hub.
697
+ */
698
+ deleteHubContentReference(params: SageMaker.Types.DeleteHubContentReferenceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
699
+ /**
700
+ * Delete a hub content reference in order to remove a model from a private hub.
701
+ */
702
+ deleteHubContentReference(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
687
703
  /**
688
704
  * Use this operation to delete a human task user interface (worker task template). To see a list of human task user interfaces (work task templates) in your account, use ListHumanTaskUis. When you delete a worker task template, it no longer appears when you call ListHumanTaskUis.
689
705
  */
@@ -1109,19 +1125,19 @@ declare class SageMaker extends Service {
1109
1125
  */
1110
1126
  describeFlowDefinition(callback?: (err: AWSError, data: SageMaker.Types.DescribeFlowDefinitionResponse) => void): Request<SageMaker.Types.DescribeFlowDefinitionResponse, AWSError>;
1111
1127
  /**
1112
- * Describe a hub. Hub APIs are only callable through SageMaker Studio.
1128
+ * Describes a hub.
1113
1129
  */
1114
1130
  describeHub(params: SageMaker.Types.DescribeHubRequest, callback?: (err: AWSError, data: SageMaker.Types.DescribeHubResponse) => void): Request<SageMaker.Types.DescribeHubResponse, AWSError>;
1115
1131
  /**
1116
- * Describe a hub. Hub APIs are only callable through SageMaker Studio.
1132
+ * Describes a hub.
1117
1133
  */
1118
1134
  describeHub(callback?: (err: AWSError, data: SageMaker.Types.DescribeHubResponse) => void): Request<SageMaker.Types.DescribeHubResponse, AWSError>;
1119
1135
  /**
1120
- * Describe the content of a hub. Hub APIs are only callable through SageMaker Studio.
1136
+ * Describe the content of a hub.
1121
1137
  */
1122
1138
  describeHubContent(params: SageMaker.Types.DescribeHubContentRequest, callback?: (err: AWSError, data: SageMaker.Types.DescribeHubContentResponse) => void): Request<SageMaker.Types.DescribeHubContentResponse, AWSError>;
1123
1139
  /**
1124
- * Describe the content of a hub. Hub APIs are only callable through SageMaker Studio.
1140
+ * Describe the content of a hub.
1125
1141
  */
1126
1142
  describeHubContent(callback?: (err: AWSError, data: SageMaker.Types.DescribeHubContentResponse) => void): Request<SageMaker.Types.DescribeHubContentResponse, AWSError>;
1127
1143
  /**
@@ -1485,11 +1501,11 @@ declare class SageMaker extends Service {
1485
1501
  */
1486
1502
  getSearchSuggestions(callback?: (err: AWSError, data: SageMaker.Types.GetSearchSuggestionsResponse) => void): Request<SageMaker.Types.GetSearchSuggestionsResponse, AWSError>;
1487
1503
  /**
1488
- * Import hub content. Hub APIs are only callable through SageMaker Studio.
1504
+ * Import hub content.
1489
1505
  */
1490
1506
  importHubContent(params: SageMaker.Types.ImportHubContentRequest, callback?: (err: AWSError, data: SageMaker.Types.ImportHubContentResponse) => void): Request<SageMaker.Types.ImportHubContentResponse, AWSError>;
1491
1507
  /**
1492
- * Import hub content. Hub APIs are only callable through SageMaker Studio.
1508
+ * Import hub content.
1493
1509
  */
1494
1510
  importHubContent(callback?: (err: AWSError, data: SageMaker.Types.ImportHubContentResponse) => void): Request<SageMaker.Types.ImportHubContentResponse, AWSError>;
1495
1511
  /**
@@ -1693,27 +1709,27 @@ declare class SageMaker extends Service {
1693
1709
  */
1694
1710
  listFlowDefinitions(callback?: (err: AWSError, data: SageMaker.Types.ListFlowDefinitionsResponse) => void): Request<SageMaker.Types.ListFlowDefinitionsResponse, AWSError>;
1695
1711
  /**
1696
- * List hub content versions. Hub APIs are only callable through SageMaker Studio.
1712
+ * List hub content versions.
1697
1713
  */
1698
1714
  listHubContentVersions(params: SageMaker.Types.ListHubContentVersionsRequest, callback?: (err: AWSError, data: SageMaker.Types.ListHubContentVersionsResponse) => void): Request<SageMaker.Types.ListHubContentVersionsResponse, AWSError>;
1699
1715
  /**
1700
- * List hub content versions. Hub APIs are only callable through SageMaker Studio.
1716
+ * List hub content versions.
1701
1717
  */
1702
1718
  listHubContentVersions(callback?: (err: AWSError, data: SageMaker.Types.ListHubContentVersionsResponse) => void): Request<SageMaker.Types.ListHubContentVersionsResponse, AWSError>;
1703
1719
  /**
1704
- * List the contents of a hub. Hub APIs are only callable through SageMaker Studio.
1720
+ * List the contents of a hub.
1705
1721
  */
1706
1722
  listHubContents(params: SageMaker.Types.ListHubContentsRequest, callback?: (err: AWSError, data: SageMaker.Types.ListHubContentsResponse) => void): Request<SageMaker.Types.ListHubContentsResponse, AWSError>;
1707
1723
  /**
1708
- * List the contents of a hub. Hub APIs are only callable through SageMaker Studio.
1724
+ * List the contents of a hub.
1709
1725
  */
1710
1726
  listHubContents(callback?: (err: AWSError, data: SageMaker.Types.ListHubContentsResponse) => void): Request<SageMaker.Types.ListHubContentsResponse, AWSError>;
1711
1727
  /**
1712
- * List all existing hubs. Hub APIs are only callable through SageMaker Studio.
1728
+ * List all existing hubs.
1713
1729
  */
1714
1730
  listHubs(params: SageMaker.Types.ListHubsRequest, callback?: (err: AWSError, data: SageMaker.Types.ListHubsResponse) => void): Request<SageMaker.Types.ListHubsResponse, AWSError>;
1715
1731
  /**
1716
- * List all existing hubs. Hub APIs are only callable through SageMaker Studio.
1732
+ * List all existing hubs.
1717
1733
  */
1718
1734
  listHubs(callback?: (err: AWSError, data: SageMaker.Types.ListHubsResponse) => void): Request<SageMaker.Types.ListHubsResponse, AWSError>;
1719
1735
  /**
@@ -2453,11 +2469,11 @@ declare class SageMaker extends Service {
2453
2469
  */
2454
2470
  updateFeatureMetadata(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
2455
2471
  /**
2456
- * Update a hub. Hub APIs are only callable through SageMaker Studio.
2472
+ * Update a hub.
2457
2473
  */
2458
2474
  updateHub(params: SageMaker.Types.UpdateHubRequest, callback?: (err: AWSError, data: SageMaker.Types.UpdateHubResponse) => void): Request<SageMaker.Types.UpdateHubResponse, AWSError>;
2459
2475
  /**
2460
- * Update a hub. Hub APIs are only callable through SageMaker Studio.
2476
+ * Update a hub.
2461
2477
  */
2462
2478
  updateHub(callback?: (err: AWSError, data: SageMaker.Types.UpdateHubResponse) => void): Request<SageMaker.Types.UpdateHubResponse, AWSError>;
2463
2479
  /**
@@ -5492,6 +5508,38 @@ declare namespace SageMaker {
5492
5508
  */
5493
5509
  FlowDefinitionArn: FlowDefinitionArn;
5494
5510
  }
5511
+ export interface CreateHubContentReferenceRequest {
5512
+ /**
5513
+ * The name of the hub to add the hub content reference to.
5514
+ */
5515
+ HubName: HubNameOrArn;
5516
+ /**
5517
+ * The ARN of the public hub content to reference.
5518
+ */
5519
+ SageMakerPublicHubContentArn: SageMakerPublicHubContentArn;
5520
+ /**
5521
+ * The name of the hub content to reference.
5522
+ */
5523
+ HubContentName?: HubContentName;
5524
+ /**
5525
+ * The minimum version of the hub content to reference.
5526
+ */
5527
+ MinVersion?: HubContentVersion;
5528
+ /**
5529
+ * Any tags associated with the hub content to reference.
5530
+ */
5531
+ Tags?: TagList;
5532
+ }
5533
+ export interface CreateHubContentReferenceResponse {
5534
+ /**
5535
+ * The ARN of the hub that the hub content reference was added to.
5536
+ */
5537
+ HubArn: HubArn;
5538
+ /**
5539
+ * The ARN of the hub content.
5540
+ */
5541
+ HubContentArn: HubContentArn;
5542
+ }
5495
5543
  export interface CreateHubRequest {
5496
5544
  /**
5497
5545
  * The name of the hub to create.
@@ -7391,11 +7439,25 @@ declare namespace SageMaker {
7391
7439
  }
7392
7440
  export interface DeleteFlowDefinitionResponse {
7393
7441
  }
7442
+ export interface DeleteHubContentReferenceRequest {
7443
+ /**
7444
+ * The name of the hub to delete the hub content reference from.
7445
+ */
7446
+ HubName: HubNameOrArn;
7447
+ /**
7448
+ * The type of hub content to delete.
7449
+ */
7450
+ HubContentType: HubContentType;
7451
+ /**
7452
+ * The name of the hub content to delete.
7453
+ */
7454
+ HubContentName: HubContentName;
7455
+ }
7394
7456
  export interface DeleteHubContentRequest {
7395
7457
  /**
7396
7458
  * The name of the hub that you want to delete content in.
7397
7459
  */
7398
- HubName: HubName;
7460
+ HubName: HubNameOrArn;
7399
7461
  /**
7400
7462
  * The type of content that you want to delete from a hub.
7401
7463
  */
@@ -7413,7 +7475,7 @@ declare namespace SageMaker {
7413
7475
  /**
7414
7476
  * The name of the hub to delete.
7415
7477
  */
7416
- HubName: HubName;
7478
+ HubName: HubNameOrArn;
7417
7479
  }
7418
7480
  export interface DeleteHumanTaskUiRequest {
7419
7481
  /**
@@ -9086,7 +9148,7 @@ declare namespace SageMaker {
9086
9148
  /**
9087
9149
  * The name of the hub that contains the content to describe.
9088
9150
  */
9089
- HubName: HubName;
9151
+ HubName: HubNameOrArn;
9090
9152
  /**
9091
9153
  * The type of content in the hub.
9092
9154
  */
@@ -9145,6 +9207,18 @@ declare namespace SageMaker {
9145
9207
  * The hub content document that describes information about the hub content such as type, associated containers, scripts, and more.
9146
9208
  */
9147
9209
  HubContentDocument: HubContentDocument;
9210
+ /**
9211
+ * The ARN of the public hub content.
9212
+ */
9213
+ SageMakerPublicHubContentArn?: SageMakerPublicHubContentArn;
9214
+ /**
9215
+ * The minimum version of the hub content.
9216
+ */
9217
+ ReferenceMinVersion?: ReferenceMinVersion;
9218
+ /**
9219
+ * The support status of the hub content.
9220
+ */
9221
+ SupportStatus?: HubContentSupportStatus;
9148
9222
  /**
9149
9223
  * The searchable keywords for the hub content.
9150
9224
  */
@@ -9170,7 +9244,7 @@ declare namespace SageMaker {
9170
9244
  /**
9171
9245
  * The name of the hub to describe.
9172
9246
  */
9173
- HubName: HubName;
9247
+ HubName: HubNameOrArn;
9174
9248
  }
9175
9249
  export interface DescribeHubResponse {
9176
9250
  /**
@@ -12765,6 +12839,10 @@ declare namespace SageMaker {
12765
12839
  * The Amazon Resource Name (ARN) of the hub content.
12766
12840
  */
12767
12841
  HubContentArn: HubContentArn;
12842
+ /**
12843
+ * The ARN of the public hub content.
12844
+ */
12845
+ SageMakerPublicHubContentArn?: SageMakerPublicHubContentArn;
12768
12846
  /**
12769
12847
  * The version of the hub content.
12770
12848
  */
@@ -12785,6 +12863,10 @@ declare namespace SageMaker {
12785
12863
  * A description of the hub content.
12786
12864
  */
12787
12865
  HubContentDescription?: HubContentDescription;
12866
+ /**
12867
+ * The support status of the hub content.
12868
+ */
12869
+ SupportStatus?: HubContentSupportStatus;
12788
12870
  /**
12789
12871
  * The searchable keywords for the hub content.
12790
12872
  */
@@ -12797,6 +12879,10 @@ declare namespace SageMaker {
12797
12879
  * The date and time that the hub content was created.
12798
12880
  */
12799
12881
  CreationTime: Timestamp;
12882
+ /**
12883
+ * The date and time when the hub content was originally created, before any updates or revisions.
12884
+ */
12885
+ OriginalCreationTime?: Timestamp;
12800
12886
  }
12801
12887
  export type HubContentInfoList = HubContentInfo[];
12802
12888
  export type HubContentMarkdown = string;
@@ -12804,7 +12890,8 @@ declare namespace SageMaker {
12804
12890
  export type HubContentSearchKeywordList = HubSearchKeyword[];
12805
12891
  export type HubContentSortBy = "HubContentName"|"CreationTime"|"HubContentStatus"|string;
12806
12892
  export type HubContentStatus = "Available"|"Importing"|"Deleting"|"ImportFailed"|"DeleteFailed"|string;
12807
- export type HubContentType = "Model"|"Notebook"|string;
12893
+ export type HubContentSupportStatus = "Supported"|"Deprecated"|string;
12894
+ export type HubContentType = "Model"|"Notebook"|"ModelReference"|string;
12808
12895
  export type HubContentVersion = string;
12809
12896
  export type HubDescription = string;
12810
12897
  export type HubDisplayName = string;
@@ -12844,6 +12931,7 @@ declare namespace SageMaker {
12844
12931
  }
12845
12932
  export type HubInfoList = HubInfo[];
12846
12933
  export type HubName = string;
12934
+ export type HubNameOrArn = string;
12847
12935
  export interface HubS3StorageConfig {
12848
12936
  /**
12849
12937
  * The Amazon S3 bucket prefix for hosting hub content.
@@ -13544,7 +13632,7 @@ declare namespace SageMaker {
13544
13632
  /**
13545
13633
  * The name of the hub to import content into.
13546
13634
  */
13547
- HubName: HubName;
13635
+ HubName: HubNameOrArn;
13548
13636
  /**
13549
13637
  * The display name of the hub content to import.
13550
13638
  */
@@ -13804,6 +13892,12 @@ declare namespace SageMaker {
13804
13892
  RoleArn?: RoleArn;
13805
13893
  }
13806
13894
  export type InferenceExperimentType = "ShadowMode"|string;
13895
+ export interface InferenceHubAccessConfig {
13896
+ /**
13897
+ * The ARN of the hub content for which deployment access is allowed.
13898
+ */
13899
+ HubContentArn: HubContentArn;
13900
+ }
13807
13901
  export type InferenceImage = string;
13808
13902
  export interface InferenceMetrics {
13809
13903
  /**
@@ -13823,7 +13917,7 @@ declare namespace SageMaker {
13823
13917
  /**
13824
13918
  * The metrics used to decide what recommendation to make.
13825
13919
  */
13826
- Metrics: RecommendationMetrics;
13920
+ Metrics?: RecommendationMetrics;
13827
13921
  /**
13828
13922
  * Defines the endpoint configuration parameters.
13829
13923
  */
@@ -15474,7 +15568,7 @@ declare namespace SageMaker {
15474
15568
  /**
15475
15569
  * The name of the hub to list the content versions of.
15476
15570
  */
15477
- HubName: HubName;
15571
+ HubName: HubNameOrArn;
15478
15572
  /**
15479
15573
  * The type of hub content to list versions of.
15480
15574
  */
@@ -15530,7 +15624,7 @@ declare namespace SageMaker {
15530
15624
  /**
15531
15625
  * The name of the hub to list the contents of.
15532
15626
  */
15533
- HubName: HubName;
15627
+ HubName: HubNameOrArn;
15534
15628
  /**
15535
15629
  * The type of hub content to list.
15536
15630
  */
@@ -21190,19 +21284,19 @@ declare namespace SageMaker {
21190
21284
  /**
21191
21285
  * Defines the cost per hour for the instance.
21192
21286
  */
21193
- CostPerHour: Float;
21287
+ CostPerHour?: Float;
21194
21288
  /**
21195
21289
  * Defines the cost per inference for the instance .
21196
21290
  */
21197
- CostPerInference: Float;
21291
+ CostPerInference?: Float;
21198
21292
  /**
21199
21293
  * The expected maximum number of requests per minute for the instance.
21200
21294
  */
21201
- MaxInvocations: Integer;
21295
+ MaxInvocations?: Integer;
21202
21296
  /**
21203
21297
  * The expected model latency at maximum invocation per minute for the instance.
21204
21298
  */
21205
- ModelLatency: Integer;
21299
+ ModelLatency?: Integer;
21206
21300
  /**
21207
21301
  * The expected CPU utilization at maximum invocations per minute for the instance. NaN indicates that the value is not available.
21208
21302
  */
@@ -21245,6 +21339,7 @@ declare namespace SageMaker {
21245
21339
  export type RedshiftResultCompressionType = "None"|"GZIP"|"BZIP2"|"ZSTD"|"SNAPPY"|string;
21246
21340
  export type RedshiftResultFormat = "PARQUET"|"CSV"|string;
21247
21341
  export type RedshiftUserName = string;
21342
+ export type ReferenceMinVersion = string;
21248
21343
  export interface RegisterDevicesRequest {
21249
21344
  /**
21250
21345
  * The name of the fleet.
@@ -21538,6 +21633,10 @@ declare namespace SageMaker {
21538
21633
  * Specifies the access configuration file for the ML model. You can explicitly accept the model end-user license agreement (EULA) within the ModelAccessConfig. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
21539
21634
  */
21540
21635
  ModelAccessConfig?: ModelAccessConfig;
21636
+ /**
21637
+ * Configuration information for hub access.
21638
+ */
21639
+ HubAccessConfig?: InferenceHubAccessConfig;
21541
21640
  }
21542
21641
  export type S3ModelDataType = "S3Prefix"|"S3Object"|string;
21543
21642
  export type S3ModelUri = string;
@@ -21565,6 +21664,7 @@ declare namespace SageMaker {
21565
21664
  export type S3Uri = string;
21566
21665
  export type SageMakerImageVersionAlias = string;
21567
21666
  export type SageMakerImageVersionAliases = SageMakerImageVersionAlias[];
21667
+ export type SageMakerPublicHubContentArn = string;
21568
21668
  export type SagemakerServicecatalogStatus = "Enabled"|"Disabled"|string;
21569
21669
  export type SampleWeightAttributeName = string;
21570
21670
  export type SamplingPercentage = number;
@@ -23941,7 +24041,7 @@ declare namespace SageMaker {
23941
24041
  /**
23942
24042
  * The name of the hub to update.
23943
24043
  */
23944
- HubName: HubName;
24044
+ HubName: HubNameOrArn;
23945
24045
  /**
23946
24046
  * A description of the updated hub.
23947
24047
  */
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1644.0',
86
+ VERSION: '2.1646.0',
87
87
 
88
88
  /**
89
89
  * @api private