aws-sdk 2.1405.0 → 2.1406.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.
- package/CHANGELOG.md +12 -1
- package/README.md +1 -1
- package/apis/appfabric-2023-05-19.examples.json +5 -0
- package/apis/appfabric-2023-05-19.min.json +1254 -0
- package/apis/appfabric-2023-05-19.paginators.json +28 -0
- package/apis/appfabric-2023-05-19.waiters2.json +5 -0
- package/apis/appflow-2020-08-23.min.json +3 -0
- package/apis/emr-serverless-2021-07-13.min.json +2 -1
- package/apis/ivs-2020-07-14.min.json +99 -23
- package/apis/kinesisvideo-2017-09-30.min.json +117 -25
- package/apis/kinesisvideo-2017-09-30.paginators.json +6 -0
- package/apis/metadata.json +3 -0
- package/apis/privatenetworks-2021-12-03.min.json +127 -69
- package/apis/sagemaker-2017-07-24.min.json +667 -647
- package/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +30 -10
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/appfabric.d.ts +1127 -0
- package/clients/appfabric.js +19 -0
- package/clients/appflow.d.ts +4 -0
- package/clients/emrserverless.d.ts +10 -6
- package/clients/ivs.d.ts +80 -0
- package/clients/kinesisvideo.d.ts +144 -10
- package/clients/macie2.d.ts +18 -18
- package/clients/privatenetworks.d.ts +67 -5
- package/clients/sagemaker.d.ts +27 -1
- package/clients/sagemakerfeaturestoreruntime.d.ts +36 -2
- package/clients/ssm.d.ts +16 -16
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +56 -12
- package/dist/aws-sdk.js +129 -28
- package/dist/aws-sdk.min.js +43 -43
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,19 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['appfabric'] = {};
|
7
|
+
AWS.AppFabric = Service.defineService('appfabric', ['2023-05-19']);
|
8
|
+
Object.defineProperty(apiLoader.services['appfabric'], '2023-05-19', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/appfabric-2023-05-19.min.json');
|
11
|
+
model.paginators = require('../apis/appfabric-2023-05-19.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/appfabric-2023-05-19.waiters2.json').waiters;
|
13
|
+
return model;
|
14
|
+
},
|
15
|
+
enumerable: true,
|
16
|
+
configurable: true
|
17
|
+
});
|
18
|
+
|
19
|
+
module.exports = AWS.AppFabric;
|
package/clients/appflow.d.ts
CHANGED
@@ -2561,6 +2561,10 @@ declare namespace Appflow {
|
|
2561
2561
|
* The SAPOData OAuth properties required for OAuth type authentication.
|
2562
2562
|
*/
|
2563
2563
|
oAuthProperties?: OAuthProperties;
|
2564
|
+
/**
|
2565
|
+
* If you set this parameter to true, Amazon AppFlow bypasses the single sign-on (SSO) settings in your SAP account when it accesses your SAP OData instance. Whether you need this option depends on the types of credentials that you applied to your SAP OData connection profile. If your profile uses basic authentication credentials, SAP SSO can prevent Amazon AppFlow from connecting to your account with your username and password. In this case, bypassing SSO makes it possible for Amazon AppFlow to connect successfully. However, if your profile uses OAuth credentials, this parameter has no affect.
|
2566
|
+
*/
|
2567
|
+
disableSSO?: Boolean;
|
2564
2568
|
}
|
2565
2569
|
export interface SAPODataDestinationProperties {
|
2566
2570
|
/**
|
@@ -147,7 +147,7 @@ declare namespace EMRServerless {
|
|
147
147
|
*/
|
148
148
|
arn: ApplicationArn;
|
149
149
|
/**
|
150
|
-
* The EMR release associated with the application.
|
150
|
+
* The Amazon EMR release associated with the application.
|
151
151
|
*/
|
152
152
|
releaseLabel: ReleaseLabel;
|
153
153
|
/**
|
@@ -227,7 +227,7 @@ declare namespace EMRServerless {
|
|
227
227
|
*/
|
228
228
|
arn: ApplicationArn;
|
229
229
|
/**
|
230
|
-
* The EMR release associated with the application.
|
230
|
+
* The Amazon EMR release associated with the application.
|
231
231
|
*/
|
232
232
|
releaseLabel: ReleaseLabel;
|
233
233
|
/**
|
@@ -327,7 +327,7 @@ declare namespace EMRServerless {
|
|
327
327
|
*/
|
328
328
|
name?: ApplicationName;
|
329
329
|
/**
|
330
|
-
* The EMR release associated with the application.
|
330
|
+
* The Amazon EMR release associated with the application.
|
331
331
|
*/
|
332
332
|
releaseLabel: ReleaseLabel;
|
333
333
|
/**
|
@@ -550,7 +550,7 @@ declare namespace EMRServerless {
|
|
550
550
|
*/
|
551
551
|
stateDetails: String256;
|
552
552
|
/**
|
553
|
-
* The EMR release associated with the application your job is running on.
|
553
|
+
* The Amazon EMR release associated with the application your job is running on.
|
554
554
|
*/
|
555
555
|
releaseLabel: ReleaseLabel;
|
556
556
|
/**
|
@@ -579,7 +579,7 @@ declare namespace EMRServerless {
|
|
579
579
|
*/
|
580
580
|
executionTimeoutMinutes?: Duration;
|
581
581
|
/**
|
582
|
-
* The aggregate vCPU, memory, and storage that
|
582
|
+
* The aggregate vCPU, memory, and storage that Amazon Web Services has billed for the job run. The billed resources include a 1-minute minimum usage for workers, plus additional storage over 20 GB per worker. Note that billed resources do not include usage for idle pre-initialized workers.
|
583
583
|
*/
|
584
584
|
billedResourceUtilization?: ResourceUtilization;
|
585
585
|
}
|
@@ -628,7 +628,7 @@ declare namespace EMRServerless {
|
|
628
628
|
*/
|
629
629
|
stateDetails: String256;
|
630
630
|
/**
|
631
|
-
* The EMR release associated with the application your job is running on.
|
631
|
+
* The Amazon EMR release associated with the application your job is running on.
|
632
632
|
*/
|
633
633
|
releaseLabel: ReleaseLabel;
|
634
634
|
/**
|
@@ -952,6 +952,10 @@ declare namespace EMRServerless {
|
|
952
952
|
* The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.
|
953
953
|
*/
|
954
954
|
workerTypeSpecifications?: WorkerTypeSpecificationInputMap;
|
955
|
+
/**
|
956
|
+
* The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR.
|
957
|
+
*/
|
958
|
+
releaseLabel?: ReleaseLabel;
|
955
959
|
}
|
956
960
|
export interface UpdateApplicationResponse {
|
957
961
|
/**
|
package/clients/ivs.d.ts
CHANGED
@@ -27,6 +27,14 @@ declare class IVS extends Service {
|
|
27
27
|
* Performs GetStreamKey on multiple ARNs simultaneously.
|
28
28
|
*/
|
29
29
|
batchGetStreamKey(callback?: (err: AWSError, data: IVS.Types.BatchGetStreamKeyResponse) => void): Request<IVS.Types.BatchGetStreamKeyResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Performs StartViewerSessionRevocation on multiple channel ARN and viewer ID pairs simultaneously.
|
32
|
+
*/
|
33
|
+
batchStartViewerSessionRevocation(params: IVS.Types.BatchStartViewerSessionRevocationRequest, callback?: (err: AWSError, data: IVS.Types.BatchStartViewerSessionRevocationResponse) => void): Request<IVS.Types.BatchStartViewerSessionRevocationResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Performs StartViewerSessionRevocation on multiple channel ARN and viewer ID pairs simultaneously.
|
36
|
+
*/
|
37
|
+
batchStartViewerSessionRevocation(callback?: (err: AWSError, data: IVS.Types.BatchStartViewerSessionRevocationResponse) => void): Request<IVS.Types.BatchStartViewerSessionRevocationResponse, AWSError>;
|
30
38
|
/**
|
31
39
|
* Creates a new channel and an associated stream key to start streaming.
|
32
40
|
*/
|
@@ -203,6 +211,14 @@ declare class IVS extends Service {
|
|
203
211
|
* Inserts metadata into the active stream of the specified channel. At most 5 requests per second per channel are allowed, each with a maximum 1 KB payload. (If 5 TPS is not sufficient for your needs, we recommend batching your data into a single PutMetadata call.) At most 155 requests per second per account are allowed. Also see Embedding Metadata within a Video Stream in the Amazon IVS User Guide.
|
204
212
|
*/
|
205
213
|
putMetadata(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
214
|
+
/**
|
215
|
+
* Starts the process of revoking the viewer session associated with a specified channel ARN and viewer ID. Optionally, you can provide a version to revoke viewer sessions less than and including that version. For instructions on associating a viewer ID with a viewer session, see Setting Up Private Channels.
|
216
|
+
*/
|
217
|
+
startViewerSessionRevocation(params: IVS.Types.StartViewerSessionRevocationRequest, callback?: (err: AWSError, data: IVS.Types.StartViewerSessionRevocationResponse) => void): Request<IVS.Types.StartViewerSessionRevocationResponse, AWSError>;
|
218
|
+
/**
|
219
|
+
* Starts the process of revoking the viewer session associated with a specified channel ARN and viewer ID. Optionally, you can provide a version to revoke viewer sessions less than and including that version. For instructions on associating a viewer ID with a viewer session, see Setting Up Private Channels.
|
220
|
+
*/
|
221
|
+
startViewerSessionRevocation(callback?: (err: AWSError, data: IVS.Types.StartViewerSessionRevocationResponse) => void): Request<IVS.Types.StartViewerSessionRevocationResponse, AWSError>;
|
206
222
|
/**
|
207
223
|
* Disconnects the incoming RTMPS stream for the specified channel. Can be used in conjunction with DeleteStreamKey to prevent further streaming to a channel. Many streaming client-software libraries automatically reconnect a dropped RTMPS session, so to stop the stream permanently, you may want to first revoke the streamKey attached to the channel.
|
208
224
|
*/
|
@@ -302,6 +318,52 @@ declare namespace IVS {
|
|
302
318
|
*/
|
303
319
|
streamKeys?: StreamKeys;
|
304
320
|
}
|
321
|
+
export interface BatchStartViewerSessionRevocationError {
|
322
|
+
/**
|
323
|
+
* Channel ARN.
|
324
|
+
*/
|
325
|
+
channelArn: ChannelArn;
|
326
|
+
/**
|
327
|
+
* Error code.
|
328
|
+
*/
|
329
|
+
code?: errorCode;
|
330
|
+
/**
|
331
|
+
* Error message, determined by the application.
|
332
|
+
*/
|
333
|
+
message?: errorMessage;
|
334
|
+
/**
|
335
|
+
* The ID of the viewer session to revoke.
|
336
|
+
*/
|
337
|
+
viewerId: ViewerId;
|
338
|
+
}
|
339
|
+
export type BatchStartViewerSessionRevocationErrors = BatchStartViewerSessionRevocationError[];
|
340
|
+
export interface BatchStartViewerSessionRevocationRequest {
|
341
|
+
/**
|
342
|
+
* Array of viewer sessions, one per channel-ARN and viewer-ID pair.
|
343
|
+
*/
|
344
|
+
viewerSessions: BatchStartViewerSessionRevocationViewerSessionList;
|
345
|
+
}
|
346
|
+
export interface BatchStartViewerSessionRevocationResponse {
|
347
|
+
/**
|
348
|
+
* Each error object is related to a specific channelArn and viewerId pair in the request.
|
349
|
+
*/
|
350
|
+
errors?: BatchStartViewerSessionRevocationErrors;
|
351
|
+
}
|
352
|
+
export interface BatchStartViewerSessionRevocationViewerSession {
|
353
|
+
/**
|
354
|
+
* The ARN of the channel associated with the viewer session to revoke.
|
355
|
+
*/
|
356
|
+
channelArn: ChannelArn;
|
357
|
+
/**
|
358
|
+
* The ID of the viewer associated with the viewer session to revoke. Do not use this field for personally identifying, confidential, or sensitive information.
|
359
|
+
*/
|
360
|
+
viewerId: ViewerId;
|
361
|
+
/**
|
362
|
+
* An optional filter on which versions of the viewer session to revoke. All versions less than or equal to the specified version will be revoked. Default: 0.
|
363
|
+
*/
|
364
|
+
viewerSessionVersionsLessThanOrEqualTo?: ViewerSessionVersion;
|
365
|
+
}
|
366
|
+
export type BatchStartViewerSessionRevocationViewerSessionList = BatchStartViewerSessionRevocationViewerSession[];
|
305
367
|
export type Boolean = boolean;
|
306
368
|
export interface Channel {
|
307
369
|
/**
|
@@ -897,6 +959,22 @@ declare namespace IVS {
|
|
897
959
|
*/
|
898
960
|
bucketName: S3DestinationBucketName;
|
899
961
|
}
|
962
|
+
export interface StartViewerSessionRevocationRequest {
|
963
|
+
/**
|
964
|
+
* The ARN of the channel associated with the viewer session to revoke.
|
965
|
+
*/
|
966
|
+
channelArn: ChannelArn;
|
967
|
+
/**
|
968
|
+
* The ID of the viewer associated with the viewer session to revoke. Do not use this field for personally identifying, confidential, or sensitive information.
|
969
|
+
*/
|
970
|
+
viewerId: ViewerId;
|
971
|
+
/**
|
972
|
+
* An optional filter on which versions of the viewer session to revoke. All versions less than or equal to the specified version will be revoked. Default: 0.
|
973
|
+
*/
|
974
|
+
viewerSessionVersionsLessThanOrEqualTo?: ViewerSessionVersion;
|
975
|
+
}
|
976
|
+
export interface StartViewerSessionRevocationResponse {
|
977
|
+
}
|
900
978
|
export interface StopStreamRequest {
|
901
979
|
/**
|
902
980
|
* ARN of the channel for which the stream is to be stopped.
|
@@ -1188,6 +1266,8 @@ declare namespace IVS {
|
|
1188
1266
|
*/
|
1189
1267
|
videoWidth?: Integer;
|
1190
1268
|
}
|
1269
|
+
export type ViewerId = string;
|
1270
|
+
export type ViewerSessionVersion = number;
|
1191
1271
|
export type errorCode = string;
|
1192
1272
|
export type errorMessage = string;
|
1193
1273
|
/**
|
@@ -27,6 +27,14 @@ declare class KinesisVideo extends Service {
|
|
27
27
|
* Creates a new Kinesis video stream. When you create a new stream, Kinesis Video Streams assigns it a version number. When you change the stream's metadata, Kinesis Video Streams updates the version. CreateStream is an asynchronous operation. For information about how the service works, see How it Works. You must have permissions for the KinesisVideo:CreateStream action.
|
28
28
|
*/
|
29
29
|
createStream(callback?: (err: AWSError, data: KinesisVideo.Types.CreateStreamOutput) => void): Request<KinesisVideo.Types.CreateStreamOutput, AWSError>;
|
30
|
+
/**
|
31
|
+
* An asynchronous API that deletes a stream’s existing edge configuration, as well as the corresponding media from the Edge Agent. When you invoke this API, the sync status is set to DELETING. A deletion process starts, in which active edge jobs are stopped and all media is deleted from the edge device. The time to delete varies, depending on the total amount of stored media. If the deletion process fails, the sync status changes to DELETE_FAILED. You will need to re-try the deletion. When the deletion process has completed successfully, the edge configuration is no longer accessible.
|
32
|
+
*/
|
33
|
+
deleteEdgeConfiguration(params: KinesisVideo.Types.DeleteEdgeConfigurationInput, callback?: (err: AWSError, data: KinesisVideo.Types.DeleteEdgeConfigurationOutput) => void): Request<KinesisVideo.Types.DeleteEdgeConfigurationOutput, AWSError>;
|
34
|
+
/**
|
35
|
+
* An asynchronous API that deletes a stream’s existing edge configuration, as well as the corresponding media from the Edge Agent. When you invoke this API, the sync status is set to DELETING. A deletion process starts, in which active edge jobs are stopped and all media is deleted from the edge device. The time to delete varies, depending on the total amount of stored media. If the deletion process fails, the sync status changes to DELETE_FAILED. You will need to re-try the deletion. When the deletion process has completed successfully, the edge configuration is no longer accessible.
|
36
|
+
*/
|
37
|
+
deleteEdgeConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.DeleteEdgeConfigurationOutput) => void): Request<KinesisVideo.Types.DeleteEdgeConfigurationOutput, AWSError>;
|
30
38
|
/**
|
31
39
|
* Deletes a specified signaling channel. DeleteSignalingChannel is an asynchronous operation. If you don't specify the channel's current version, the most recent version is deleted.
|
32
40
|
*/
|
@@ -44,11 +52,11 @@ declare class KinesisVideo extends Service {
|
|
44
52
|
*/
|
45
53
|
deleteStream(callback?: (err: AWSError, data: KinesisVideo.Types.DeleteStreamOutput) => void): Request<KinesisVideo.Types.DeleteStreamOutput, AWSError>;
|
46
54
|
/**
|
47
|
-
* Describes a stream’s edge configuration that was set using the StartEdgeConfigurationUpdate API. Use this API to get the status of the configuration if the configuration is in sync with the Edge Agent.
|
55
|
+
* Describes a stream’s edge configuration that was set using the StartEdgeConfigurationUpdate API and the latest status of the edge agent's recorder and uploader jobs. Use this API to get the status of the configuration to determine if the configuration is in sync with the Edge Agent. Use this API to evaluate the health of the Edge Agent.
|
48
56
|
*/
|
49
57
|
describeEdgeConfiguration(params: KinesisVideo.Types.DescribeEdgeConfigurationInput, callback?: (err: AWSError, data: KinesisVideo.Types.DescribeEdgeConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeEdgeConfigurationOutput, AWSError>;
|
50
58
|
/**
|
51
|
-
* Describes a stream’s edge configuration that was set using the StartEdgeConfigurationUpdate API. Use this API to get the status of the configuration if the configuration is in sync with the Edge Agent.
|
59
|
+
* Describes a stream’s edge configuration that was set using the StartEdgeConfigurationUpdate API and the latest status of the edge agent's recorder and uploader jobs. Use this API to get the status of the configuration to determine if the configuration is in sync with the Edge Agent. Use this API to evaluate the health of the Edge Agent.
|
52
60
|
*/
|
53
61
|
describeEdgeConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.DescribeEdgeConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeEdgeConfigurationOutput, AWSError>;
|
54
62
|
/**
|
@@ -60,11 +68,11 @@ declare class KinesisVideo extends Service {
|
|
60
68
|
*/
|
61
69
|
describeImageGenerationConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.DescribeImageGenerationConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeImageGenerationConfigurationOutput, AWSError>;
|
62
70
|
/**
|
63
|
-
* Returns the most current information about the stream.
|
71
|
+
* Returns the most current information about the stream. The streamName or streamARN should be provided in the input.
|
64
72
|
*/
|
65
73
|
describeMappedResourceConfiguration(params: KinesisVideo.Types.DescribeMappedResourceConfigurationInput, callback?: (err: AWSError, data: KinesisVideo.Types.DescribeMappedResourceConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeMappedResourceConfigurationOutput, AWSError>;
|
66
74
|
/**
|
67
|
-
* Returns the most current information about the stream.
|
75
|
+
* Returns the most current information about the stream. The streamName or streamARN should be provided in the input.
|
68
76
|
*/
|
69
77
|
describeMappedResourceConfiguration(callback?: (err: AWSError, data: KinesisVideo.Types.DescribeMappedResourceConfigurationOutput) => void): Request<KinesisVideo.Types.DescribeMappedResourceConfigurationOutput, AWSError>;
|
70
78
|
/**
|
@@ -115,6 +123,14 @@ declare class KinesisVideo extends Service {
|
|
115
123
|
* Provides an endpoint for the specified signaling channel to send and receive messages. This API uses the SingleMasterChannelEndpointConfiguration input parameter, which consists of the Protocols and Role properties. Protocols is used to determine the communication mechanism. For example, if you specify WSS as the protocol, this API produces a secure websocket endpoint. If you specify HTTPS as the protocol, this API generates an HTTPS endpoint. Role determines the messaging permissions. A MASTER role results in this API generating an endpoint that a client can use to communicate with any of the viewers on the channel. A VIEWER role results in this API generating an endpoint that a client can use to communicate only with a MASTER.
|
116
124
|
*/
|
117
125
|
getSignalingChannelEndpoint(callback?: (err: AWSError, data: KinesisVideo.Types.GetSignalingChannelEndpointOutput) => void): Request<KinesisVideo.Types.GetSignalingChannelEndpointOutput, AWSError>;
|
126
|
+
/**
|
127
|
+
* Returns an array of edge configurations associated with the specified Edge Agent. In the request, you must specify the Edge Agent HubDeviceArn.
|
128
|
+
*/
|
129
|
+
listEdgeAgentConfigurations(params: KinesisVideo.Types.ListEdgeAgentConfigurationsInput, callback?: (err: AWSError, data: KinesisVideo.Types.ListEdgeAgentConfigurationsOutput) => void): Request<KinesisVideo.Types.ListEdgeAgentConfigurationsOutput, AWSError>;
|
130
|
+
/**
|
131
|
+
* Returns an array of edge configurations associated with the specified Edge Agent. In the request, you must specify the Edge Agent HubDeviceArn.
|
132
|
+
*/
|
133
|
+
listEdgeAgentConfigurations(callback?: (err: AWSError, data: KinesisVideo.Types.ListEdgeAgentConfigurationsOutput) => void): Request<KinesisVideo.Types.ListEdgeAgentConfigurationsOutput, AWSError>;
|
118
134
|
/**
|
119
135
|
* Returns an array of ChannelInfo objects. Each object describes a signaling channel. To retrieve only those channels that satisfy a specific condition, you can specify a ChannelNameCondition.
|
120
136
|
*/
|
@@ -323,7 +339,7 @@ declare namespace KinesisVideo {
|
|
323
339
|
*/
|
324
340
|
MediaType?: MediaType;
|
325
341
|
/**
|
326
|
-
* The ID of the Key Management Service (KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
|
342
|
+
* The ID of the Key Management Service (KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (Amazon Web Services/kinesisvideo) is used. For more information, see DescribeKey.
|
327
343
|
*/
|
328
344
|
KmsKeyId?: KmsKeyId;
|
329
345
|
/**
|
@@ -345,6 +361,18 @@ declare namespace KinesisVideo {
|
|
345
361
|
export type DataRetentionChangeInHours = number;
|
346
362
|
export type DataRetentionInHours = number;
|
347
363
|
export type DeleteAfterUpload = boolean;
|
364
|
+
export interface DeleteEdgeConfigurationInput {
|
365
|
+
/**
|
366
|
+
* The name of the stream from which to delete the edge configuration. Specify either the StreamName or the StreamARN.
|
367
|
+
*/
|
368
|
+
StreamName?: StreamName;
|
369
|
+
/**
|
370
|
+
* The Amazon Resource Name (ARN) of the stream. Specify either the StreamName or the StreamARN.
|
371
|
+
*/
|
372
|
+
StreamARN?: ResourceARN;
|
373
|
+
}
|
374
|
+
export interface DeleteEdgeConfigurationOutput {
|
375
|
+
}
|
348
376
|
export interface DeleteSignalingChannelInput {
|
349
377
|
/**
|
350
378
|
* The Amazon Resource Name (ARN) of the signaling channel that you want to delete.
|
@@ -379,7 +407,7 @@ declare namespace KinesisVideo {
|
|
379
407
|
*/
|
380
408
|
LocalSizeConfig?: LocalSizeConfig;
|
381
409
|
/**
|
382
|
-
* The boolean value used to indicate whether or not you want to mark the media for deletion, once it has been uploaded to the Kinesis Video Stream cloud. The media files can be deleted if any of the deletion configuration values are set to true, such as when the limit for the EdgeRetentionInHours, or the MaxLocalMediaSizeInMB, has been reached. Since the default value is set to true, configure the uploader schedule such that the media files are not being deleted before they are initially uploaded to
|
410
|
+
* The boolean value used to indicate whether or not you want to mark the media for deletion, once it has been uploaded to the Kinesis Video Stream cloud. The media files can be deleted if any of the deletion configuration values are set to true, such as when the limit for the EdgeRetentionInHours, or the MaxLocalMediaSizeInMB, has been reached. Since the default value is set to true, configure the uploader schedule such that the media files are not being deleted before they are initially uploaded to the Amazon Web Services cloud.
|
383
411
|
*/
|
384
412
|
DeleteAfterUpload?: DeleteAfterUpload;
|
385
413
|
}
|
@@ -422,6 +450,10 @@ declare namespace KinesisVideo {
|
|
422
450
|
* A description of the stream's edge configuration that will be used to sync with the Edge Agent IoT Greengrass component. The Edge Agent component will run on an IoT Hub Device setup at your premise.
|
423
451
|
*/
|
424
452
|
EdgeConfig?: EdgeConfig;
|
453
|
+
/**
|
454
|
+
* An object that contains the latest status details for an edge agent's recorder and uploader jobs. Use this information to determine the current health of an edge agent.
|
455
|
+
*/
|
456
|
+
EdgeAgentStatus?: EdgeAgentStatus;
|
425
457
|
}
|
426
458
|
export interface DescribeImageGenerationConfigurationInput {
|
427
459
|
/**
|
@@ -535,6 +567,16 @@ declare namespace KinesisVideo {
|
|
535
567
|
export type DestinationUri = string;
|
536
568
|
export type DeviceName = string;
|
537
569
|
export type DurationInSeconds = number;
|
570
|
+
export interface EdgeAgentStatus {
|
571
|
+
/**
|
572
|
+
* The latest status of a stream’s edge recording job.
|
573
|
+
*/
|
574
|
+
LastRecorderStatus?: LastRecorderStatus;
|
575
|
+
/**
|
576
|
+
* The latest status of a stream’s edge to cloud uploader job.
|
577
|
+
*/
|
578
|
+
LastUploaderStatus?: LastUploaderStatus;
|
579
|
+
}
|
538
580
|
export interface EdgeConfig {
|
539
581
|
/**
|
540
582
|
* The "Internet of Things (IoT) Thing" Arn of the stream.
|
@@ -637,12 +679,102 @@ declare namespace KinesisVideo {
|
|
637
679
|
*/
|
638
680
|
Uri: DestinationUri;
|
639
681
|
/**
|
640
|
-
* The
|
682
|
+
* The Amazon Web Services Region of the S3 bucket where images will be delivered. This DestinationRegion must match the Region where the stream is located.
|
641
683
|
*/
|
642
684
|
DestinationRegion: DestinationRegion;
|
643
685
|
}
|
644
686
|
export type ImageSelectorType = "SERVER_TIMESTAMP"|"PRODUCER_TIMESTAMP"|string;
|
687
|
+
export type JobStatusDetails = string;
|
645
688
|
export type KmsKeyId = string;
|
689
|
+
export interface LastRecorderStatus {
|
690
|
+
/**
|
691
|
+
* A description of a recorder job’s latest status.
|
692
|
+
*/
|
693
|
+
JobStatusDetails?: JobStatusDetails;
|
694
|
+
/**
|
695
|
+
* The timestamp at which the recorder job was last executed and media stored to local disk.
|
696
|
+
*/
|
697
|
+
LastCollectedTime?: Timestamp;
|
698
|
+
/**
|
699
|
+
* The timestamp at which the recorder status was last updated.
|
700
|
+
*/
|
701
|
+
LastUpdatedTime?: Timestamp;
|
702
|
+
/**
|
703
|
+
* The status of the latest recorder job.
|
704
|
+
*/
|
705
|
+
RecorderStatus?: RecorderStatus;
|
706
|
+
}
|
707
|
+
export interface LastUploaderStatus {
|
708
|
+
/**
|
709
|
+
* A description of an uploader job’s latest status.
|
710
|
+
*/
|
711
|
+
JobStatusDetails?: JobStatusDetails;
|
712
|
+
/**
|
713
|
+
* The timestamp at which the uploader job was last executed and media collected to the cloud.
|
714
|
+
*/
|
715
|
+
LastCollectedTime?: Timestamp;
|
716
|
+
/**
|
717
|
+
* The timestamp at which the uploader status was last updated.
|
718
|
+
*/
|
719
|
+
LastUpdatedTime?: Timestamp;
|
720
|
+
/**
|
721
|
+
* The status of the latest uploader job.
|
722
|
+
*/
|
723
|
+
UploaderStatus?: UploaderStatus;
|
724
|
+
}
|
725
|
+
export interface ListEdgeAgentConfigurationsEdgeConfig {
|
726
|
+
/**
|
727
|
+
* The name of the stream.
|
728
|
+
*/
|
729
|
+
StreamName?: StreamName;
|
730
|
+
/**
|
731
|
+
* The Amazon Resource Name (ARN) of the stream.
|
732
|
+
*/
|
733
|
+
StreamARN?: ResourceARN;
|
734
|
+
/**
|
735
|
+
* The timestamp when the stream first created the edge config.
|
736
|
+
*/
|
737
|
+
CreationTime?: Timestamp;
|
738
|
+
/**
|
739
|
+
* The timestamp when the stream last updated the edge config.
|
740
|
+
*/
|
741
|
+
LastUpdatedTime?: Timestamp;
|
742
|
+
/**
|
743
|
+
* The current sync status of the stream's edge configuration.
|
744
|
+
*/
|
745
|
+
SyncStatus?: SyncStatus;
|
746
|
+
/**
|
747
|
+
* A description of the generated failure status.
|
748
|
+
*/
|
749
|
+
FailedStatusDetails?: FailedStatusDetails;
|
750
|
+
EdgeConfig?: EdgeConfig;
|
751
|
+
}
|
752
|
+
export type ListEdgeAgentConfigurationsEdgeConfigList = ListEdgeAgentConfigurationsEdgeConfig[];
|
753
|
+
export interface ListEdgeAgentConfigurationsInput {
|
754
|
+
/**
|
755
|
+
* The "Internet of Things (IoT) Thing" Arn of the edge agent.
|
756
|
+
*/
|
757
|
+
HubDeviceArn: HubDeviceArn;
|
758
|
+
/**
|
759
|
+
* The maximum number of edge configurations to return in the response. The default is 5.
|
760
|
+
*/
|
761
|
+
MaxResults?: ListEdgeAgentConfigurationsInputLimit;
|
762
|
+
/**
|
763
|
+
* If you specify this parameter, when the result of a ListEdgeAgentConfigurations operation is truncated, the call returns the NextToken in the response. To get another batch of edge configurations, provide this token in your next request.
|
764
|
+
*/
|
765
|
+
NextToken?: NextToken;
|
766
|
+
}
|
767
|
+
export type ListEdgeAgentConfigurationsInputLimit = number;
|
768
|
+
export interface ListEdgeAgentConfigurationsOutput {
|
769
|
+
/**
|
770
|
+
* A description of a single stream's edge configuration.
|
771
|
+
*/
|
772
|
+
EdgeConfigs?: ListEdgeAgentConfigurationsEdgeConfigList;
|
773
|
+
/**
|
774
|
+
* If the response is truncated, the call returns this element with a given token. To get the next batch of edge configurations, use this token in your next request.
|
775
|
+
*/
|
776
|
+
NextToken?: NextToken;
|
777
|
+
}
|
646
778
|
export type ListOfProtocols = ChannelProtocol[];
|
647
779
|
export interface ListSignalingChannelsInput {
|
648
780
|
/**
|
@@ -762,7 +894,7 @@ declare namespace KinesisVideo {
|
|
762
894
|
export type MaxLocalMediaSizeInMB = number;
|
763
895
|
export interface MediaSourceConfig {
|
764
896
|
/**
|
765
|
-
* The
|
897
|
+
* The Amazon Web Services Secrets Manager ARN for the username and password of the camera, or a local media file location.
|
766
898
|
*/
|
767
899
|
MediaUriSecretArn: MediaUriSecretArn;
|
768
900
|
/**
|
@@ -812,6 +944,7 @@ declare namespace KinesisVideo {
|
|
812
944
|
*/
|
813
945
|
ScheduleConfig?: ScheduleConfig;
|
814
946
|
}
|
947
|
+
export type RecorderStatus = "SUCCESS"|"USER_ERROR"|"SYSTEM_ERROR"|string;
|
815
948
|
export type ResourceARN = string;
|
816
949
|
export type ResourceEndpoint = string;
|
817
950
|
export type ResourceEndpointList = ResourceEndpointListItem[];
|
@@ -950,7 +1083,7 @@ declare namespace KinesisVideo {
|
|
950
1083
|
*/
|
951
1084
|
ComparisonValue?: StreamName;
|
952
1085
|
}
|
953
|
-
export type SyncStatus = "SYNCING"|"ACKNOWLEDGED"|"IN_SYNC"|"SYNC_FAILED"|"DELETING"|"DELETE_FAILED"|string;
|
1086
|
+
export type SyncStatus = "SYNCING"|"ACKNOWLEDGED"|"IN_SYNC"|"SYNC_FAILED"|"DELETING"|"DELETE_FAILED"|"DELETING_ACKNOWLEDGED"|string;
|
954
1087
|
export interface Tag {
|
955
1088
|
/**
|
956
1089
|
* The key of the tag that is associated with the specified signaling channel.
|
@@ -1135,10 +1268,11 @@ declare namespace KinesisVideo {
|
|
1135
1268
|
}
|
1136
1269
|
export interface UploaderConfig {
|
1137
1270
|
/**
|
1138
|
-
* The configuration that consists of the ScheduleExpression and the
|
1271
|
+
* The configuration that consists of the ScheduleExpression and the DurationInMinutes details that specify the scheduling to record from a camera, or local media file, onto the Edge Agent. If the ScheduleConfig is not provided in this UploaderConfig, then the Edge Agent will upload at regular intervals (every 1 hour).
|
1139
1272
|
*/
|
1140
1273
|
ScheduleConfig: ScheduleConfig;
|
1141
1274
|
}
|
1275
|
+
export type UploaderStatus = "SUCCESS"|"USER_ERROR"|"SYSTEM_ERROR"|string;
|
1142
1276
|
export type Version = string;
|
1143
1277
|
export type WidthPixels = number;
|
1144
1278
|
/**
|