aws-sdk 2.1648.0 → 2.1650.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 (47) hide show
  1. package/README.md +1 -1
  2. package/apis/application-autoscaling-2016-02-06.min.json +4 -1
  3. package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +10 -1
  4. package/apis/cloudfront-2020-05-31.min.json +4 -1
  5. package/apis/controltower-2018-05-10.min.json +53 -1
  6. package/apis/controltower-2018-05-10.paginators.json +6 -0
  7. package/apis/datazone-2018-05-10.min.json +251 -26
  8. package/apis/datazone-2018-05-10.paginators.json +6 -0
  9. package/apis/eks-2017-11-01.min.json +3 -0
  10. package/apis/elasticache-2015-02-02.min.json +4 -1
  11. package/apis/ivs-realtime-2020-07-14.min.json +160 -33
  12. package/apis/ivs-realtime-2020-07-14.paginators.json +6 -0
  13. package/apis/kinesisanalyticsv2-2018-05-23.min.json +262 -109
  14. package/apis/kinesisanalyticsv2-2018-05-23.paginators.json +24 -0
  15. package/apis/mq-2017-11-27.min.json +4 -4
  16. package/apis/opensearch-2021-01-01.min.json +141 -98
  17. package/apis/qconnect-2020-10-19.min.json +335 -108
  18. package/apis/qconnect-2020-10-19.paginators.json +6 -0
  19. package/apis/quicksight-2018-04-01.min.json +598 -483
  20. package/apis/rds-2013-01-10.min.json +4 -1
  21. package/apis/rds-2013-02-12.min.json +4 -1
  22. package/apis/rds-2013-09-09.min.json +4 -1
  23. package/apis/rds-2014-09-01.min.json +4 -1
  24. package/apis/rds-2014-10-31.min.json +4 -1
  25. package/apis/sagemaker-2017-07-24.min.json +805 -792
  26. package/apis/workspaces-2015-04-08.min.json +507 -76
  27. package/clients/applicationautoscaling.d.ts +43 -43
  28. package/clients/chimesdkmediapipelines.d.ts +19 -15
  29. package/clients/cloudfront.d.ts +7 -7
  30. package/clients/controltower.d.ts +91 -27
  31. package/clients/datazone.d.ts +269 -1
  32. package/clients/eks.d.ts +4 -0
  33. package/clients/ivsrealtime.d.ts +163 -14
  34. package/clients/kinesisanalyticsv2.d.ts +146 -2
  35. package/clients/mq.d.ts +15 -15
  36. package/clients/opensearch.d.ts +53 -0
  37. package/clients/qconnect.d.ts +219 -1
  38. package/clients/quicksight.d.ts +90 -0
  39. package/clients/rds.d.ts +4 -4
  40. package/clients/sagemaker.d.ts +18 -1
  41. package/clients/workspaces.d.ts +595 -3
  42. package/dist/aws-sdk-core-react-native.js +1 -1
  43. package/dist/aws-sdk-react-native.js +26 -26
  44. package/dist/aws-sdk.js +35 -11
  45. package/dist/aws-sdk.min.js +65 -65
  46. package/lib/core.js +1 -1
  47. package/package.json +1 -1
@@ -475,6 +475,14 @@ declare class DataZone extends Service {
475
475
  * Gets the data portal URL for the specified Amazon DataZone domain.
476
476
  */
477
477
  getIamPortalLoginUrl(callback?: (err: AWSError, data: DataZone.Types.GetIamPortalLoginUrlOutput) => void): Request<DataZone.Types.GetIamPortalLoginUrlOutput, AWSError>;
478
+ /**
479
+ * Gets the data lineage node.
480
+ */
481
+ getLineageNode(params: DataZone.Types.GetLineageNodeInput, callback?: (err: AWSError, data: DataZone.Types.GetLineageNodeOutput) => void): Request<DataZone.Types.GetLineageNodeOutput, AWSError>;
482
+ /**
483
+ * Gets the data lineage node.
484
+ */
485
+ getLineageNode(callback?: (err: AWSError, data: DataZone.Types.GetLineageNodeOutput) => void): Request<DataZone.Types.GetLineageNodeOutput, AWSError>;
478
486
  /**
479
487
  * Gets a listing (a record of an asset at a given time).
480
488
  */
@@ -627,6 +635,14 @@ declare class DataZone extends Service {
627
635
  * Lists Amazon DataZone environments.
628
636
  */
629
637
  listEnvironments(callback?: (err: AWSError, data: DataZone.Types.ListEnvironmentsOutput) => void): Request<DataZone.Types.ListEnvironmentsOutput, AWSError>;
638
+ /**
639
+ * Lists the history of the specified data lineage node.
640
+ */
641
+ listLineageNodeHistory(params: DataZone.Types.ListLineageNodeHistoryInput, callback?: (err: AWSError, data: DataZone.Types.ListLineageNodeHistoryOutput) => void): Request<DataZone.Types.ListLineageNodeHistoryOutput, AWSError>;
642
+ /**
643
+ * Lists the history of the specified data lineage node.
644
+ */
645
+ listLineageNodeHistory(callback?: (err: AWSError, data: DataZone.Types.ListLineageNodeHistoryOutput) => void): Request<DataZone.Types.ListLineageNodeHistoryOutput, AWSError>;
630
646
  /**
631
647
  * Lists all metadata generation runs.
632
648
  */
@@ -707,6 +723,14 @@ declare class DataZone extends Service {
707
723
  * Lists time series data points.
708
724
  */
709
725
  listTimeSeriesDataPoints(callback?: (err: AWSError, data: DataZone.Types.ListTimeSeriesDataPointsOutput) => void): Request<DataZone.Types.ListTimeSeriesDataPointsOutput, AWSError>;
726
+ /**
727
+ * Posts a data lineage event.
728
+ */
729
+ postLineageEvent(params: DataZone.Types.PostLineageEventInput, callback?: (err: AWSError, data: DataZone.Types.PostLineageEventOutput) => void): Request<DataZone.Types.PostLineageEventOutput, AWSError>;
730
+ /**
731
+ * Posts a data lineage event.
732
+ */
733
+ postLineageEvent(callback?: (err: AWSError, data: DataZone.Types.PostLineageEventOutput) => void): Request<DataZone.Types.PostLineageEventOutput, AWSError>;
710
734
  /**
711
735
  * Posts time series data points to Amazon DataZone for the specified asset.
712
736
  */
@@ -3622,6 +3646,7 @@ declare namespace DataZone {
3622
3646
  */
3623
3647
  status: DomainStatus;
3624
3648
  }
3649
+ export type EdgeDirection = "UPSTREAM"|"DOWNSTREAM"|string;
3625
3650
  export type EditedValue = string;
3626
3651
  export type EnableSetting = "ENABLED"|"DISABLED"|string;
3627
3652
  export type EnabledRegionList = RegionName[];
@@ -4909,6 +4934,82 @@ declare namespace DataZone {
4909
4934
  */
4910
4935
  userProfileId: String;
4911
4936
  }
4937
+ export interface GetLineageNodeInput {
4938
+ /**
4939
+ * The ID of the domain in which you want to get the data lineage node.
4940
+ */
4941
+ domainIdentifier: DomainId;
4942
+ /**
4943
+ * The event time stamp for which you want to get the data lineage node.
4944
+ */
4945
+ eventTimestamp?: Timestamp;
4946
+ /**
4947
+ * The ID of the data lineage node that you want to get. Both, a lineage node identifier generated by Amazon DataZone and a sourceIdentifier of the lineage node are supported. If sourceIdentifier is greater than 1800 characters, you can use lineage node identifier generated by Amazon DataZone to get the node details.
4948
+ */
4949
+ identifier: LineageNodeIdentifier;
4950
+ }
4951
+ export interface GetLineageNodeOutput {
4952
+ /**
4953
+ * The timestamp at which the data lineage node was created.
4954
+ */
4955
+ createdAt?: CreatedAt;
4956
+ /**
4957
+ * The user who created the data lineage node.
4958
+ */
4959
+ createdBy?: CreatedBy;
4960
+ /**
4961
+ * The description of the data lineage node.
4962
+ */
4963
+ description?: String;
4964
+ /**
4965
+ * The ID of the domain where you're getting the data lineage node.
4966
+ */
4967
+ domainId: DomainId;
4968
+ /**
4969
+ * The downsteam nodes of the specified data lineage node.
4970
+ */
4971
+ downstreamNodes?: LineageNodeReferenceList;
4972
+ /**
4973
+ * The timestamp of the event described in the data lineage node.
4974
+ */
4975
+ eventTimestamp?: Timestamp;
4976
+ /**
4977
+ * The metadata of the specified data lineage node.
4978
+ */
4979
+ formsOutput?: FormOutputList;
4980
+ /**
4981
+ * The ID of the data lineage node.
4982
+ */
4983
+ id: LineageNodeId;
4984
+ /**
4985
+ * The name of the data lineage node.
4986
+ */
4987
+ name?: String;
4988
+ /**
4989
+ * The source identifier of the data lineage node.
4990
+ */
4991
+ sourceIdentifier?: String;
4992
+ /**
4993
+ * The name of the type of the specified data lineage node.
4994
+ */
4995
+ typeName: String;
4996
+ /**
4997
+ * The revision type of the specified data lineage node.
4998
+ */
4999
+ typeRevision?: Revision;
5000
+ /**
5001
+ * The timestamp at which the data lineage node was updated.
5002
+ */
5003
+ updatedAt?: UpdatedAt;
5004
+ /**
5005
+ * The user who updated the data lineage node.
5006
+ */
5007
+ updatedBy?: UpdatedBy;
5008
+ /**
5009
+ * The upstream nodes of the specified data lineage node.
5010
+ */
5011
+ upstreamNodes?: LineageNodeReferenceList;
5012
+ }
4912
5013
  export interface GetListingInput {
4913
5014
  /**
4914
5015
  * The ID of the Amazon DataZone domain.
@@ -5602,6 +5703,109 @@ declare namespace DataZone {
5602
5703
  export type InventorySearchScope = "ASSET"|"GLOSSARY"|"GLOSSARY_TERM"|string;
5603
5704
  export type KmsKeyArn = string;
5604
5705
  export type LastName = string;
5706
+ export type LineageEvent = Buffer|Uint8Array|Blob|string;
5707
+ export type LineageNodeId = string;
5708
+ export type LineageNodeIdentifier = string;
5709
+ export interface LineageNodeReference {
5710
+ /**
5711
+ * The event timestamp of the data lineage node.
5712
+ */
5713
+ eventTimestamp?: Timestamp;
5714
+ /**
5715
+ * The ID of the data lineage node.
5716
+ */
5717
+ id?: LineageNodeId;
5718
+ }
5719
+ export type LineageNodeReferenceList = LineageNodeReference[];
5720
+ export type LineageNodeSummaries = LineageNodeSummary[];
5721
+ export interface LineageNodeSummary {
5722
+ /**
5723
+ * The timestamp at which the data lineage node was created.
5724
+ */
5725
+ createdAt?: CreatedAt;
5726
+ /**
5727
+ * The user who created the data lineage node.
5728
+ */
5729
+ createdBy?: CreatedBy;
5730
+ /**
5731
+ * The description of the data lineage node.
5732
+ */
5733
+ description?: String;
5734
+ /**
5735
+ * The ID of the domain of the data lineage node.
5736
+ */
5737
+ domainId: DomainId;
5738
+ /**
5739
+ * The event timestamp of the data lineage node.
5740
+ */
5741
+ eventTimestamp?: Timestamp;
5742
+ /**
5743
+ * The ID of the data lineage node.
5744
+ */
5745
+ id: LineageNodeId;
5746
+ /**
5747
+ * The name of the data lineage node.
5748
+ */
5749
+ name?: String;
5750
+ /**
5751
+ * The alternate ID of the data lineage node.
5752
+ */
5753
+ sourceIdentifier?: String;
5754
+ /**
5755
+ * The name of the type of the data lineage node.
5756
+ */
5757
+ typeName: String;
5758
+ /**
5759
+ * The type of the revision of the data lineage node.
5760
+ */
5761
+ typeRevision?: Revision;
5762
+ /**
5763
+ * The timestamp at which the data lineage node was updated.
5764
+ */
5765
+ updatedAt?: UpdatedAt;
5766
+ /**
5767
+ * The user who updated the data lineage node.
5768
+ */
5769
+ updatedBy?: UpdatedBy;
5770
+ }
5771
+ export interface LineageNodeTypeItem {
5772
+ /**
5773
+ * The timestamp at which the data lineage node type was created.
5774
+ */
5775
+ createdAt?: CreatedAt;
5776
+ /**
5777
+ * The user who created the data lineage node type.
5778
+ */
5779
+ createdBy?: CreatedBy;
5780
+ /**
5781
+ * The description of the data lineage node type.
5782
+ */
5783
+ description?: String;
5784
+ /**
5785
+ * The ID of the domain where the data lineage node type lives.
5786
+ */
5787
+ domainId: DomainId;
5788
+ /**
5789
+ * The forms output of the data lineage node type.
5790
+ */
5791
+ formsOutput: FormsOutputMap;
5792
+ /**
5793
+ * The name of the data lineage node type.
5794
+ */
5795
+ name?: String;
5796
+ /**
5797
+ * The revision of the data lineage node type.
5798
+ */
5799
+ revision: Revision;
5800
+ /**
5801
+ * The timestamp at which the data lineage node type was updated.
5802
+ */
5803
+ updatedAt?: UpdatedAt;
5804
+ /**
5805
+ * The user who updated the data lineage node type.
5806
+ */
5807
+ updatedBy?: UpdatedBy;
5808
+ }
5605
5809
  export interface ListAssetRevisionsInput {
5606
5810
  /**
5607
5811
  * The identifier of the domain.
@@ -5947,6 +6151,50 @@ declare namespace DataZone {
5947
6151
  */
5948
6152
  nextToken?: PaginationToken;
5949
6153
  }
6154
+ export interface ListLineageNodeHistoryInput {
6155
+ /**
6156
+ * The direction of the data lineage node refers to the lineage node having neighbors in that direction. For example, if direction is UPSTREAM, the ListLineageNodeHistory API responds with historical versions with upstream neighbors only.
6157
+ */
6158
+ direction?: EdgeDirection;
6159
+ /**
6160
+ * The ID of the domain where you want to list the history of the specified data lineage node.
6161
+ */
6162
+ domainIdentifier: DomainId;
6163
+ /**
6164
+ * Specifies whether the action is to return data lineage node history from the time after the event timestamp.
6165
+ */
6166
+ eventTimestampGTE?: Timestamp;
6167
+ /**
6168
+ * Specifies whether the action is to return data lineage node history from the time prior of the event timestamp.
6169
+ */
6170
+ eventTimestampLTE?: Timestamp;
6171
+ /**
6172
+ * The ID of the data lineage node whose history you want to list.
6173
+ */
6174
+ identifier: LineageNodeIdentifier;
6175
+ /**
6176
+ * The maximum number of history items to return in a single call to ListLineageNodeHistory. When the number of memberships to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListLineageNodeHistory to list the next set of items.
6177
+ */
6178
+ maxResults?: MaxResults;
6179
+ /**
6180
+ * When the number of history items is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.
6181
+ */
6182
+ nextToken?: PaginationToken;
6183
+ /**
6184
+ * The order by which you want data lineage node history to be sorted.
6185
+ */
6186
+ sortOrder?: SortOrder;
6187
+ }
6188
+ export interface ListLineageNodeHistoryOutput {
6189
+ /**
6190
+ * When the number of history items is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.
6191
+ */
6192
+ nextToken?: PaginationToken;
6193
+ /**
6194
+ * The nodes returned by the ListLineageNodeHistory action.
6195
+ */
6196
+ nodes?: LineageNodeSummaries;
6197
+ }
5950
6198
  export interface ListMetadataGenerationRunsInput {
5951
6199
  /**
5952
6200
  * The ID of the Amazon DataZone domain where you want to list metadata generation runs.
@@ -6515,6 +6763,22 @@ declare namespace DataZone {
6515
6763
  export type NotificationType = "TASK"|"EVENT"|string;
6516
6764
  export type NotificationsList = NotificationOutput[];
6517
6765
  export type PaginationToken = string;
6766
+ export interface PostLineageEventInput {
6767
+ /**
6768
+ * A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
6769
+ */
6770
+ clientToken?: ClientToken;
6771
+ /**
6772
+ * The ID of the domain where you want to post a data lineage event.
6773
+ */
6774
+ domainIdentifier: DomainId;
6775
+ /**
6776
+ * The data lineage event that you want to post. Only open-lineage run event are supported as events.
6777
+ */
6778
+ event: LineageEvent;
6779
+ }
6780
+ export interface PostLineageEventOutput {
6781
+ }
6518
6782
  export interface PostTimeSeriesDataPointsInput {
6519
6783
  /**
6520
6784
  * A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
@@ -7275,6 +7539,10 @@ declare namespace DataZone {
7275
7539
  * The form type included in the results of the SearchTypes action.
7276
7540
  */
7277
7541
  formTypeItem?: FormTypeData;
7542
+ /**
7543
+ * The details of a data lineage node type.
7544
+ */
7545
+ lineageNodeTypeItem?: LineageNodeTypeItem;
7278
7546
  }
7279
7547
  export type SearchTypesResultItems = SearchTypesResultItem[];
7280
7548
  export interface SearchUserProfilesInput {
@@ -7975,7 +8243,7 @@ declare namespace DataZone {
7975
8243
  subject: String;
7976
8244
  }
7977
8245
  export type TypeName = string;
7978
- export type TypesSearchScope = "ASSET_TYPE"|"FORM_TYPE"|string;
8246
+ export type TypesSearchScope = "ASSET_TYPE"|"FORM_TYPE"|"LINEAGE_NODE_TYPE"|string;
7979
8247
  export interface UntagResourceRequest {
7980
8248
  /**
7981
8249
  * The ARN of the resource to be untagged in Amazon DataZone.
package/clients/eks.d.ts CHANGED
@@ -1183,6 +1183,10 @@ declare namespace EKS {
1183
1183
  * The access configuration for the cluster.
1184
1184
  */
1185
1185
  accessConfig?: CreateAccessConfigRequest;
1186
+ /**
1187
+ * If you set this value to False when creating a cluster, the default networking add-ons will not be installed. The default networking addons include vpc-cni, coredns, and kube-proxy. Use this option when you plan to install third-party alternative add-ons or self-manage the default networking add-ons.
1188
+ */
1189
+ bootstrapSelfManagedAddons?: BoxedBoolean;
1186
1190
  }
1187
1191
  export interface CreateClusterResponse {
1188
1192
  /**
@@ -51,6 +51,14 @@ declare class IVSRealTime extends Service {
51
51
  * Deletes an EncoderConfiguration resource. Ensures that no Compositions are using this template; otherwise, returns an error.
52
52
  */
53
53
  deleteEncoderConfiguration(callback?: (err: AWSError, data: IVSRealTime.Types.DeleteEncoderConfigurationResponse) => void): Request<IVSRealTime.Types.DeleteEncoderConfigurationResponse, AWSError>;
54
+ /**
55
+ * Deletes the specified public key used to sign stage participant tokens. This invalidates future participant tokens generated using the key pair’s private key.
56
+ */
57
+ deletePublicKey(params: IVSRealTime.Types.DeletePublicKeyRequest, callback?: (err: AWSError, data: IVSRealTime.Types.DeletePublicKeyResponse) => void): Request<IVSRealTime.Types.DeletePublicKeyResponse, AWSError>;
58
+ /**
59
+ * Deletes the specified public key used to sign stage participant tokens. This invalidates future participant tokens generated using the key pair’s private key.
60
+ */
61
+ deletePublicKey(callback?: (err: AWSError, data: IVSRealTime.Types.DeletePublicKeyResponse) => void): Request<IVSRealTime.Types.DeletePublicKeyResponse, AWSError>;
54
62
  /**
55
63
  * Shuts down and deletes the specified stage (disconnecting all participants).
56
64
  */
@@ -99,6 +107,14 @@ declare class IVSRealTime extends Service {
99
107
  * Gets information about the specified participant token.
100
108
  */
101
109
  getParticipant(callback?: (err: AWSError, data: IVSRealTime.Types.GetParticipantResponse) => void): Request<IVSRealTime.Types.GetParticipantResponse, AWSError>;
110
+ /**
111
+ * Gets information for the specified public key.
112
+ */
113
+ getPublicKey(params: IVSRealTime.Types.GetPublicKeyRequest, callback?: (err: AWSError, data: IVSRealTime.Types.GetPublicKeyResponse) => void): Request<IVSRealTime.Types.GetPublicKeyResponse, AWSError>;
114
+ /**
115
+ * Gets information for the specified public key.
116
+ */
117
+ getPublicKey(callback?: (err: AWSError, data: IVSRealTime.Types.GetPublicKeyResponse) => void): Request<IVSRealTime.Types.GetPublicKeyResponse, AWSError>;
102
118
  /**
103
119
  * Gets information for the specified stage.
104
120
  */
@@ -123,6 +139,14 @@ declare class IVSRealTime extends Service {
123
139
  * Gets the storage configuration for the specified ARN.
124
140
  */
125
141
  getStorageConfiguration(callback?: (err: AWSError, data: IVSRealTime.Types.GetStorageConfigurationResponse) => void): Request<IVSRealTime.Types.GetStorageConfigurationResponse, AWSError>;
142
+ /**
143
+ * Import a public key to be used for signing stage participant tokens.
144
+ */
145
+ importPublicKey(params: IVSRealTime.Types.ImportPublicKeyRequest, callback?: (err: AWSError, data: IVSRealTime.Types.ImportPublicKeyResponse) => void): Request<IVSRealTime.Types.ImportPublicKeyResponse, AWSError>;
146
+ /**
147
+ * Import a public key to be used for signing stage participant tokens.
148
+ */
149
+ importPublicKey(callback?: (err: AWSError, data: IVSRealTime.Types.ImportPublicKeyResponse) => void): Request<IVSRealTime.Types.ImportPublicKeyResponse, AWSError>;
126
150
  /**
127
151
  * Gets summary information about all Compositions in your account, in the AWS region where the API request is processed.
128
152
  */
@@ -155,6 +179,14 @@ declare class IVSRealTime extends Service {
155
179
  * Lists all participants in a specified stage session.
156
180
  */
157
181
  listParticipants(callback?: (err: AWSError, data: IVSRealTime.Types.ListParticipantsResponse) => void): Request<IVSRealTime.Types.ListParticipantsResponse, AWSError>;
182
+ /**
183
+ * Gets summary information about all public keys in your account, in the AWS region where the API request is processed.
184
+ */
185
+ listPublicKeys(params: IVSRealTime.Types.ListPublicKeysRequest, callback?: (err: AWSError, data: IVSRealTime.Types.ListPublicKeysResponse) => void): Request<IVSRealTime.Types.ListPublicKeysResponse, AWSError>;
186
+ /**
187
+ * Gets summary information about all public keys in your account, in the AWS region where the API request is processed.
188
+ */
189
+ listPublicKeys(callback?: (err: AWSError, data: IVSRealTime.Types.ListPublicKeysResponse) => void): Request<IVSRealTime.Types.ListPublicKeysResponse, AWSError>;
158
190
  /**
159
191
  * Gets all sessions for a specified stage.
160
192
  */
@@ -232,7 +264,7 @@ declare namespace IVSRealTime {
232
264
  export type AttributeKey = string;
233
265
  export interface AutoParticipantRecordingConfiguration {
234
266
  /**
235
- * ARN of the StorageConfiguration resource to use for auto participant recording. Default: "" (empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.
267
+ * ARN of the StorageConfiguration resource to use for individual participant recording. Default: "" (empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.
236
268
  */
237
269
  storageConfigurationArn: AutoParticipantRecordingStorageConfigurationArn;
238
270
  /**
@@ -383,7 +415,7 @@ declare namespace IVSRealTime {
383
415
  */
384
416
  tags?: Tags;
385
417
  /**
386
- * Auto participant recording configuration object attached to the stage.
418
+ * Configuration object for individual participant recording, to attach to the new stage.
387
419
  */
388
420
  autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
389
421
  }
@@ -425,6 +457,14 @@ declare namespace IVSRealTime {
425
457
  }
426
458
  export interface DeleteEncoderConfigurationResponse {
427
459
  }
460
+ export interface DeletePublicKeyRequest {
461
+ /**
462
+ * ARN of the public key to be deleted.
463
+ */
464
+ arn: PublicKeyArn;
465
+ }
466
+ export interface DeletePublicKeyResponse {
467
+ }
428
468
  export interface DeleteStageRequest {
429
469
  /**
430
470
  * ARN of the stage to be deleted.
@@ -633,6 +673,18 @@ declare namespace IVSRealTime {
633
673
  */
634
674
  participant?: Participant;
635
675
  }
676
+ export interface GetPublicKeyRequest {
677
+ /**
678
+ * ARN of the public key for which the information is to be retrieved.
679
+ */
680
+ arn: PublicKeyArn;
681
+ }
682
+ export interface GetPublicKeyResponse {
683
+ /**
684
+ * The public key that is returned.
685
+ */
686
+ publicKey?: PublicKey;
687
+ }
636
688
  export interface GetStageRequest {
637
689
  /**
638
690
  * ARN of the stage for which the information is to be retrieved.
@@ -675,7 +727,7 @@ declare namespace IVSRealTime {
675
727
  }
676
728
  export interface GridConfiguration {
677
729
  /**
678
- * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot.
730
+ * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot. Default: "" (no featured participant).
679
731
  */
680
732
  featuredParticipantAttribute?: AttributeKey;
681
733
  /**
@@ -683,11 +735,11 @@ declare namespace IVSRealTime {
683
735
  */
684
736
  omitStoppedVideo?: OmitStoppedVideo;
685
737
  /**
686
- * Sets the non-featured participant display mode. Default: VIDEO.
738
+ * Sets the non-featured participant display mode, to control the aspect ratio of video tiles. VIDEO is 16:9, SQUARE is 1:1, and PORTRAIT is 3:4. Default: VIDEO.
687
739
  */
688
740
  videoAspectRatio?: VideoAspectRatio;
689
741
  /**
690
- * Defines how video fits within the participant tile. When not set, videoFillMode defaults to COVER fill mode for participants in the grid and to CONTAIN fill mode for featured participants.
742
+ * Defines how video content fits within the participant tile: FILL (stretched), COVER (cropped), or CONTAIN (letterboxed). When not set, videoFillMode defaults to COVER fill mode for participants in the grid and to CONTAIN fill mode for featured participants.
691
743
  */
692
744
  videoFillMode?: VideoFillMode;
693
745
  /**
@@ -697,6 +749,26 @@ declare namespace IVSRealTime {
697
749
  }
698
750
  export type GridGap = number;
699
751
  export type Height = number;
752
+ export interface ImportPublicKeyRequest {
753
+ /**
754
+ * The content of the public key to be imported.
755
+ */
756
+ publicKeyMaterial: PublicKeyMaterial;
757
+ /**
758
+ * Name of the public key to be imported.
759
+ */
760
+ name?: PublicKeyName;
761
+ /**
762
+ * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
763
+ */
764
+ tags?: Tags;
765
+ }
766
+ export interface ImportPublicKeyResponse {
767
+ /**
768
+ * The public key that was imported.
769
+ */
770
+ publicKey?: PublicKey;
771
+ }
700
772
  export interface LayoutConfiguration {
701
773
  /**
702
774
  * Configuration related to grid layout. Default: Grid layout.
@@ -831,6 +903,26 @@ declare namespace IVSRealTime {
831
903
  */
832
904
  nextToken?: PaginationToken;
833
905
  }
906
+ export interface ListPublicKeysRequest {
907
+ /**
908
+ * The first public key to retrieve. This is used for pagination; see the nextToken response field.
909
+ */
910
+ nextToken?: PaginationToken;
911
+ /**
912
+ * Maximum number of results to return. Default: 50.
913
+ */
914
+ maxResults?: MaxPublicKeyResults;
915
+ }
916
+ export interface ListPublicKeysResponse {
917
+ /**
918
+ * List of the matching public keys (summary information only).
919
+ */
920
+ publicKeys: PublicKeyList;
921
+ /**
922
+ * If there are more public keys than maxResults, use nextToken in the request to get the next set.
923
+ */
924
+ nextToken?: PaginationToken;
925
+ }
834
926
  export interface ListStageSessionsRequest {
835
927
  /**
836
928
  * Stage ARN.
@@ -911,6 +1003,7 @@ declare namespace IVSRealTime {
911
1003
  export type MaxEncoderConfigurationResults = number;
912
1004
  export type MaxParticipantEventResults = number;
913
1005
  export type MaxParticipantResults = number;
1006
+ export type MaxPublicKeyResults = number;
914
1007
  export type MaxStageResults = number;
915
1008
  export type MaxStageSessionResults = number;
916
1009
  export type MaxStorageConfigurationResults = number;
@@ -970,11 +1063,11 @@ declare namespace IVSRealTime {
970
1063
  */
971
1064
  recordingS3BucketName?: ParticipantRecordingS3BucketName;
972
1065
  /**
973
- * S3 prefix of the S3 bucket to where the participant is being recorded, if individual participant recording is enabled, or "" (empty string), if recording is not enabled.
1066
+ * S3 prefix of the S3 bucket where the participant is being recorded, if individual participant recording is enabled, or "" (empty string), if recording is not enabled.
974
1067
  */
975
1068
  recordingS3Prefix?: ParticipantRecordingS3Prefix;
976
1069
  /**
977
- * Participant’s recording state.
1070
+ * The participant’s recording state.
978
1071
  */
979
1072
  recordingState?: ParticipantRecordingState;
980
1073
  }
@@ -1011,7 +1104,7 @@ declare namespace IVSRealTime {
1011
1104
  */
1012
1105
  published?: Published;
1013
1106
  /**
1014
- * Participant’s recording state.
1107
+ * The participant’s recording state.
1015
1108
  */
1016
1109
  recordingState?: ParticipantRecordingState;
1017
1110
  }
@@ -1076,7 +1169,7 @@ declare namespace IVSRealTime {
1076
1169
  export type PipBehavior = "STATIC"|"DYNAMIC"|string;
1077
1170
  export interface PipConfiguration {
1078
1171
  /**
1079
- * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot.
1172
+ * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot. Default: "" (no featured participant).
1080
1173
  */
1081
1174
  featuredParticipantAttribute?: AttributeKey;
1082
1175
  /**
@@ -1084,7 +1177,7 @@ declare namespace IVSRealTime {
1084
1177
  */
1085
1178
  omitStoppedVideo?: OmitStoppedVideo;
1086
1179
  /**
1087
- * Defines how video fits within the participant tile. Default: COVER.
1180
+ * Defines how video content fits within the participant tile: FILL (stretched), COVER (cropped), or CONTAIN (letterboxed). Default: COVER.
1088
1181
  */
1089
1182
  videoFillMode?: VideoFillMode;
1090
1183
  /**
@@ -1092,11 +1185,11 @@ declare namespace IVSRealTime {
1092
1185
  */
1093
1186
  gridGap?: GridGap;
1094
1187
  /**
1095
- * Identifies the PiP slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the PiP slot.
1188
+ * Specifies the participant for the PiP window. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the PiP slot. Default: "" (no PiP participant).
1096
1189
  */
1097
1190
  pipParticipantAttribute?: AttributeKey;
1098
1191
  /**
1099
- * Defines PiP behavior when all participants have left. Default: STATIC.
1192
+ * Defines PiP behavior when all participants have left: STATIC (maintains original position/size) or DYNAMIC (expands to full composition). Default: STATIC.
1100
1193
  */
1101
1194
  pipBehavior?: PipBehavior;
1102
1195
  /**
@@ -1120,6 +1213,47 @@ declare namespace IVSRealTime {
1120
1213
  export type PipOffset = number;
1121
1214
  export type PipPosition = "TOP_LEFT"|"TOP_RIGHT"|"BOTTOM_LEFT"|"BOTTOM_RIGHT"|string;
1122
1215
  export type PipWidth = number;
1216
+ export interface PublicKey {
1217
+ /**
1218
+ * Public key ARN.
1219
+ */
1220
+ arn?: PublicKeyArn;
1221
+ /**
1222
+ * Public key name.
1223
+ */
1224
+ name?: PublicKeyName;
1225
+ /**
1226
+ * Public key material.
1227
+ */
1228
+ publicKeyMaterial?: PublicKeyMaterial;
1229
+ /**
1230
+ * The public key fingerprint, a short string used to identify or verify the full public key.
1231
+ */
1232
+ fingerprint?: PublicKeyFingerprint;
1233
+ /**
1234
+ * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
1235
+ */
1236
+ tags?: Tags;
1237
+ }
1238
+ export type PublicKeyArn = string;
1239
+ export type PublicKeyFingerprint = string;
1240
+ export type PublicKeyList = PublicKeySummary[];
1241
+ export type PublicKeyMaterial = string;
1242
+ export type PublicKeyName = string;
1243
+ export interface PublicKeySummary {
1244
+ /**
1245
+ * Public key ARN.
1246
+ */
1247
+ arn?: PublicKeyArn;
1248
+ /**
1249
+ * Public key name.
1250
+ */
1251
+ name?: PublicKeyName;
1252
+ /**
1253
+ * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
1254
+ */
1255
+ tags?: Tags;
1256
+ }
1123
1257
  export type Published = boolean;
1124
1258
  export interface RecordingConfiguration {
1125
1259
  /**
@@ -1174,11 +1308,26 @@ declare namespace IVSRealTime {
1174
1308
  */
1175
1309
  tags?: Tags;
1176
1310
  /**
1177
- * Auto-participant-recording configuration object attached to the stage.
1311
+ * Configuration object for individual participant recording, attached to the stage.
1178
1312
  */
1179
1313
  autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
1314
+ /**
1315
+ * Summary information about various endpoints for a stage.
1316
+ */
1317
+ endpoints?: StageEndpoints;
1180
1318
  }
1181
1319
  export type StageArn = string;
1320
+ export type StageEndpoint = string;
1321
+ export interface StageEndpoints {
1322
+ /**
1323
+ * Events endpoint.
1324
+ */
1325
+ events?: StageEndpoint;
1326
+ /**
1327
+ * WHIP endpoint.
1328
+ */
1329
+ whip?: StageEndpoint;
1330
+ }
1182
1331
  export type StageName = string;
1183
1332
  export interface StageSession {
1184
1333
  /**
@@ -1344,7 +1493,7 @@ declare namespace IVSRealTime {
1344
1493
  */
1345
1494
  name?: StageName;
1346
1495
  /**
1347
- * Auto-participant-recording configuration object to attach to the stage. Auto-participant-recording configuration cannot be updated while recording is active.
1496
+ * Configuration object for individual participant recording, to attach to the stage. Note that this cannot be updated while recording is active.
1348
1497
  */
1349
1498
  autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
1350
1499
  }