aws-sdk 2.1448.0 → 2.1450.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 (33) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/README.md +1 -1
  3. package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +261 -21
  4. package/apis/cloudhsm-2014-05-30.min.json +60 -20
  5. package/apis/connect-2017-08-08.min.json +589 -186
  6. package/apis/connect-2017-08-08.paginators.json +12 -0
  7. package/apis/connectcampaigns-2021-01-30.min.json +103 -90
  8. package/apis/connectparticipant-2018-09-07.min.json +62 -0
  9. package/apis/customer-profiles-2020-08-15.min.json +269 -118
  10. package/apis/grafana-2020-08-18.min.json +2 -1
  11. package/apis/health-2016-08-04.min.json +116 -34
  12. package/apis/kafkaconnect-2021-09-14.min.json +38 -36
  13. package/apis/payment-cryptography-data-2022-02-03.min.json +29 -16
  14. package/apis/runtime.sagemaker-2017-05-13.min.json +104 -0
  15. package/clients/chimesdkmediapipelines.d.ts +228 -2
  16. package/clients/cloudwatchevents.d.ts +2 -2
  17. package/clients/connect.d.ts +440 -13
  18. package/clients/connectcampaigns.d.ts +30 -23
  19. package/clients/connectparticipant.d.ts +71 -2
  20. package/clients/customerprofiles.d.ts +56 -52
  21. package/clients/ecs.d.ts +14 -14
  22. package/clients/health.d.ts +86 -2
  23. package/clients/identitystore.d.ts +26 -26
  24. package/clients/ivs.d.ts +4 -4
  25. package/clients/kafkaconnect.d.ts +6 -8
  26. package/clients/paymentcryptographydata.d.ts +8 -6
  27. package/clients/sagemakerruntime.d.ts +86 -8
  28. package/dist/aws-sdk-core-react-native.js +1 -1
  29. package/dist/aws-sdk-react-native.js +13 -13
  30. package/dist/aws-sdk.js +664 -209
  31. package/dist/aws-sdk.min.js +89 -89
  32. package/lib/core.js +1 -1
  33. package/package.json +1 -1
@@ -155,6 +155,110 @@
155
155
  }
156
156
  }
157
157
  }
158
+ },
159
+ "InvokeEndpointWithResponseStream": {
160
+ "http": {
161
+ "requestUri": "/endpoints/{EndpointName}/invocations-response-stream"
162
+ },
163
+ "input": {
164
+ "type": "structure",
165
+ "required": [
166
+ "EndpointName",
167
+ "Body"
168
+ ],
169
+ "members": {
170
+ "EndpointName": {
171
+ "location": "uri",
172
+ "locationName": "EndpointName"
173
+ },
174
+ "Body": {
175
+ "shape": "S3"
176
+ },
177
+ "ContentType": {
178
+ "location": "header",
179
+ "locationName": "Content-Type"
180
+ },
181
+ "Accept": {
182
+ "location": "header",
183
+ "locationName": "X-Amzn-SageMaker-Accept"
184
+ },
185
+ "CustomAttributes": {
186
+ "shape": "S5",
187
+ "location": "header",
188
+ "locationName": "X-Amzn-SageMaker-Custom-Attributes"
189
+ },
190
+ "TargetVariant": {
191
+ "location": "header",
192
+ "locationName": "X-Amzn-SageMaker-Target-Variant"
193
+ },
194
+ "TargetContainerHostname": {
195
+ "location": "header",
196
+ "locationName": "X-Amzn-SageMaker-Target-Container-Hostname"
197
+ },
198
+ "InferenceId": {
199
+ "location": "header",
200
+ "locationName": "X-Amzn-SageMaker-Inference-Id"
201
+ }
202
+ },
203
+ "payload": "Body"
204
+ },
205
+ "output": {
206
+ "type": "structure",
207
+ "required": [
208
+ "Body"
209
+ ],
210
+ "members": {
211
+ "Body": {
212
+ "type": "structure",
213
+ "members": {
214
+ "PayloadPart": {
215
+ "type": "structure",
216
+ "members": {
217
+ "Bytes": {
218
+ "eventpayload": true,
219
+ "type": "blob",
220
+ "sensitive": true
221
+ }
222
+ },
223
+ "event": true
224
+ },
225
+ "ModelStreamError": {
226
+ "type": "structure",
227
+ "members": {
228
+ "Message": {},
229
+ "ErrorCode": {}
230
+ },
231
+ "exception": true,
232
+ "synthetic": true
233
+ },
234
+ "InternalStreamFailure": {
235
+ "type": "structure",
236
+ "members": {
237
+ "Message": {}
238
+ },
239
+ "exception": true,
240
+ "fault": true,
241
+ "synthetic": true
242
+ }
243
+ },
244
+ "eventstream": true
245
+ },
246
+ "ContentType": {
247
+ "location": "header",
248
+ "locationName": "X-Amzn-SageMaker-Content-Type"
249
+ },
250
+ "InvokedProductionVariant": {
251
+ "location": "header",
252
+ "locationName": "x-Amzn-Invoked-Production-Variant"
253
+ },
254
+ "CustomAttributes": {
255
+ "shape": "S5",
256
+ "location": "header",
257
+ "locationName": "X-Amzn-SageMaker-Custom-Attributes"
258
+ }
259
+ },
260
+ "payload": "Body"
261
+ }
158
262
  }
159
263
  },
160
264
  "shapes": {
@@ -99,6 +99,22 @@ declare class ChimeSDKMediaPipelines extends Service {
99
99
  * Gets an existing media pipeline.
100
100
  */
101
101
  getMediaPipeline(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetMediaPipelineResponse, AWSError>;
102
+ /**
103
+ * Retrieves the details of the specified speaker search task.
104
+ */
105
+ getSpeakerSearchTask(params: ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse, AWSError>;
106
+ /**
107
+ * Retrieves the details of the specified speaker search task.
108
+ */
109
+ getSpeakerSearchTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetSpeakerSearchTaskResponse, AWSError>;
110
+ /**
111
+ * Retrieves the details of a voice tone analysis task.
112
+ */
113
+ getVoiceToneAnalysisTask(params: ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse, AWSError>;
114
+ /**
115
+ * Retrieves the details of a voice tone analysis task.
116
+ */
117
+ getVoiceToneAnalysisTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.GetVoiceToneAnalysisTaskResponse, AWSError>;
102
118
  /**
103
119
  * Returns a list of media pipelines.
104
120
  */
@@ -131,6 +147,38 @@ declare class ChimeSDKMediaPipelines extends Service {
131
147
  * Lists the tags available for a media pipeline.
132
148
  */
133
149
  listTagsForResource(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKMediaPipelines.Types.ListTagsForResourceResponse, AWSError>;
150
+ /**
151
+ * Starts a speaker search task. Before starting any speaker search tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
152
+ */
153
+ startSpeakerSearchTask(params: ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse, AWSError>;
154
+ /**
155
+ * Starts a speaker search task. Before starting any speaker search tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
156
+ */
157
+ startSpeakerSearchTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartSpeakerSearchTaskResponse, AWSError>;
158
+ /**
159
+ * Starts a voice tone analysis task. For more information about voice tone analysis, see Using Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide. Before starting any voice tone analysis tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
160
+ */
161
+ startVoiceToneAnalysisTask(params: ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse, AWSError>;
162
+ /**
163
+ * Starts a voice tone analysis task. For more information about voice tone analysis, see Using Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide. Before starting any voice tone analysis tasks, you must provide all notices and obtain all consents from the speaker as required under applicable privacy and biometrics laws, and as required under the AWS service terms for the Amazon Chime SDK.
164
+ */
165
+ startVoiceToneAnalysisTask(callback?: (err: AWSError, data: ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse) => void): Request<ChimeSDKMediaPipelines.Types.StartVoiceToneAnalysisTaskResponse, AWSError>;
166
+ /**
167
+ * Stops a speaker search task.
168
+ */
169
+ stopSpeakerSearchTask(params: ChimeSDKMediaPipelines.Types.StopSpeakerSearchTaskRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
170
+ /**
171
+ * Stops a speaker search task.
172
+ */
173
+ stopSpeakerSearchTask(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
174
+ /**
175
+ * Stops a voice tone analysis task.
176
+ */
177
+ stopVoiceToneAnalysisTask(params: ChimeSDKMediaPipelines.Types.StopVoiceToneAnalysisTaskRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
178
+ /**
179
+ * Stops a voice tone analysis task.
180
+ */
181
+ stopVoiceToneAnalysisTask(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
134
182
  /**
135
183
  * The ARN of the media pipeline that you want to tag. Consists of the pipeline's endpoint region, resource ID, and pipeline ID.
136
184
  */
@@ -710,6 +758,38 @@ declare namespace ChimeSDKMediaPipelines {
710
758
  */
711
759
  MediaPipeline?: MediaPipeline;
712
760
  }
761
+ export interface GetSpeakerSearchTaskRequest {
762
+ /**
763
+ * The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
764
+ */
765
+ Identifier: NonEmptyString;
766
+ /**
767
+ * The ID of the speaker search task.
768
+ */
769
+ SpeakerSearchTaskId: GuidString;
770
+ }
771
+ export interface GetSpeakerSearchTaskResponse {
772
+ /**
773
+ * The details of the speaker search task.
774
+ */
775
+ SpeakerSearchTask?: SpeakerSearchTask;
776
+ }
777
+ export interface GetVoiceToneAnalysisTaskRequest {
778
+ /**
779
+ * The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
780
+ */
781
+ Identifier: NonEmptyString;
782
+ /**
783
+ * The ID of the voice tone anlysis task.
784
+ */
785
+ VoiceToneAnalysisTaskId: GuidString;
786
+ }
787
+ export interface GetVoiceToneAnalysisTaskResponse {
788
+ /**
789
+ * The details of the voice tone analysis task.
790
+ */
791
+ VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
792
+ }
713
793
  export interface GridViewConfiguration {
714
794
  /**
715
795
  * Defines the layout of the video tiles when content sharing is enabled.
@@ -815,6 +895,20 @@ declare namespace ChimeSDKMediaPipelines {
815
895
  */
816
896
  MediaSampleRate: MediaSampleRateHertz;
817
897
  }
898
+ export interface KinesisVideoStreamSourceTaskConfiguration {
899
+ /**
900
+ * The ARN of the stream.
901
+ */
902
+ StreamArn: KinesisVideoStreamArn;
903
+ /**
904
+ * The channel ID.
905
+ */
906
+ ChannelId: ChannelId;
907
+ /**
908
+ * The unique identifier of the fragment to begin processing.
909
+ */
910
+ FragmentNumber?: FragmentNumberString;
911
+ }
818
912
  export interface LambdaFunctionSinkConfiguration {
819
913
  /**
820
914
  * The ARN of the sink.
@@ -1065,6 +1159,10 @@ declare namespace ChimeSDKMediaPipelines {
1065
1159
  * The time at which the media insights pipeline was created.
1066
1160
  */
1067
1161
  CreatedTimestamp?: Iso8601Timestamp;
1162
+ /**
1163
+ * The statuses that the elements in a media insights pipeline can have during data processing.
1164
+ */
1165
+ ElementStatuses?: MediaInsightsPipelineElementStatuses;
1068
1166
  }
1069
1167
  export interface MediaInsightsPipelineConfiguration {
1070
1168
  /**
@@ -1137,8 +1235,12 @@ declare namespace ChimeSDKMediaPipelines {
1137
1235
  * The configuration settings for an SNS topic sink in a media insights pipeline configuration element.
1138
1236
  */
1139
1237
  SnsTopicSinkConfiguration?: SnsTopicSinkConfiguration;
1238
+ /**
1239
+ * The configuration settings for voice enhancement sink in a media insights pipeline configuration element.
1240
+ */
1241
+ VoiceEnhancementSinkConfiguration?: VoiceEnhancementSinkConfiguration;
1140
1242
  }
1141
- export type MediaInsightsPipelineConfigurationElementType = "AmazonTranscribeCallAnalyticsProcessor"|"VoiceAnalyticsProcessor"|"AmazonTranscribeProcessor"|"KinesisDataStreamSink"|"LambdaFunctionSink"|"SqsQueueSink"|"SnsTopicSink"|"S3RecordingSink"|string;
1243
+ export type MediaInsightsPipelineConfigurationElementType = "AmazonTranscribeCallAnalyticsProcessor"|"VoiceAnalyticsProcessor"|"AmazonTranscribeProcessor"|"KinesisDataStreamSink"|"LambdaFunctionSink"|"SqsQueueSink"|"SnsTopicSink"|"S3RecordingSink"|"VoiceEnhancementSink"|string;
1142
1244
  export type MediaInsightsPipelineConfigurationElements = MediaInsightsPipelineConfigurationElement[];
1143
1245
  export type MediaInsightsPipelineConfigurationNameString = string;
1144
1246
  export interface MediaInsightsPipelineConfigurationSummary {
@@ -1156,6 +1258,17 @@ declare namespace ChimeSDKMediaPipelines {
1156
1258
  MediaInsightsPipelineConfigurationArn?: Arn;
1157
1259
  }
1158
1260
  export type MediaInsightsPipelineConfigurationSummaryList = MediaInsightsPipelineConfigurationSummary[];
1261
+ export interface MediaInsightsPipelineElementStatus {
1262
+ /**
1263
+ * The type of status.
1264
+ */
1265
+ Type?: MediaInsightsPipelineConfigurationElementType;
1266
+ /**
1267
+ * The element's status.
1268
+ */
1269
+ Status?: MediaPipelineElementStatus;
1270
+ }
1271
+ export type MediaInsightsPipelineElementStatuses = MediaInsightsPipelineElementStatus[];
1159
1272
  export type MediaInsightsRuntimeMetadata = {[key: string]: String};
1160
1273
  export interface MediaLiveConnectorPipeline {
1161
1274
  /**
@@ -1205,10 +1318,11 @@ declare namespace ChimeSDKMediaPipelines {
1205
1318
  */
1206
1319
  MediaInsightsPipeline?: MediaInsightsPipeline;
1207
1320
  }
1321
+ export type MediaPipelineElementStatus = "NotStarted"|"NotSupported"|"Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|"Paused"|string;
1208
1322
  export type MediaPipelineList = MediaPipelineSummary[];
1209
1323
  export type MediaPipelineSinkType = "S3Bucket"|string;
1210
1324
  export type MediaPipelineSourceType = "ChimeSdkMeeting"|string;
1211
- export type MediaPipelineStatus = "Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|"Paused"|string;
1325
+ export type MediaPipelineStatus = "Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|"Paused"|"NotStarted"|string;
1212
1326
  export type MediaPipelineStatusUpdate = "Pause"|"Resume"|string;
1213
1327
  export interface MediaPipelineSummary {
1214
1328
  /**
@@ -1220,6 +1334,7 @@ declare namespace ChimeSDKMediaPipelines {
1220
1334
  */
1221
1335
  MediaPipelineArn?: AmazonResourceName;
1222
1336
  }
1337
+ export type MediaPipelineTaskStatus = "NotStarted"|"Initializing"|"InProgress"|"Failed"|"Stopping"|"Stopped"|string;
1223
1338
  export type MediaSampleRateHertz = number;
1224
1339
  export interface MeetingEventsConcatenationConfiguration {
1225
1340
  /**
@@ -1364,12 +1479,98 @@ declare namespace ChimeSDKMediaPipelines {
1364
1479
  */
1365
1480
  SelectedVideoStreams?: SelectedVideoStreams;
1366
1481
  }
1482
+ export interface SpeakerSearchTask {
1483
+ /**
1484
+ * The speaker search task ID.
1485
+ */
1486
+ SpeakerSearchTaskId?: GuidString;
1487
+ /**
1488
+ * The status of the speaker search task.
1489
+ */
1490
+ SpeakerSearchTaskStatus?: MediaPipelineTaskStatus;
1491
+ /**
1492
+ * The time at which a speaker search task was created.
1493
+ */
1494
+ CreatedTimestamp?: Iso8601Timestamp;
1495
+ /**
1496
+ * The time at which a speaker search task was updated.
1497
+ */
1498
+ UpdatedTimestamp?: Iso8601Timestamp;
1499
+ }
1367
1500
  export interface SqsQueueSinkConfiguration {
1368
1501
  /**
1369
1502
  * The ARN of the SQS sink.
1370
1503
  */
1371
1504
  InsightsTarget?: Arn;
1372
1505
  }
1506
+ export interface StartSpeakerSearchTaskRequest {
1507
+ /**
1508
+ * The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
1509
+ */
1510
+ Identifier: NonEmptyString;
1511
+ /**
1512
+ * The ARN of the voice profile domain that will store the voice profile.
1513
+ */
1514
+ VoiceProfileDomainArn: Arn;
1515
+ /**
1516
+ * The task configuration for the Kinesis video stream source of the media insights pipeline.
1517
+ */
1518
+ KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
1519
+ /**
1520
+ * The unique identifier for the client request. Use a different token for different speaker search tasks.
1521
+ */
1522
+ ClientRequestToken?: ClientRequestToken;
1523
+ }
1524
+ export interface StartSpeakerSearchTaskResponse {
1525
+ /**
1526
+ * The details of the speaker search task.
1527
+ */
1528
+ SpeakerSearchTask?: SpeakerSearchTask;
1529
+ }
1530
+ export interface StartVoiceToneAnalysisTaskRequest {
1531
+ /**
1532
+ * The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
1533
+ */
1534
+ Identifier: NonEmptyString;
1535
+ /**
1536
+ * The language code.
1537
+ */
1538
+ LanguageCode: VoiceAnalyticsLanguageCode;
1539
+ /**
1540
+ * The task configuration for the Kinesis video stream source of the media insights pipeline.
1541
+ */
1542
+ KinesisVideoStreamSourceTaskConfiguration?: KinesisVideoStreamSourceTaskConfiguration;
1543
+ /**
1544
+ * The unique identifier for the client request. Use a different token for different voice tone analysis tasks.
1545
+ */
1546
+ ClientRequestToken?: ClientRequestToken;
1547
+ }
1548
+ export interface StartVoiceToneAnalysisTaskResponse {
1549
+ /**
1550
+ * The details of the voice tone analysis task.
1551
+ */
1552
+ VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
1553
+ }
1554
+ export interface StopSpeakerSearchTaskRequest {
1555
+ /**
1556
+ * The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
1557
+ */
1558
+ Identifier: NonEmptyString;
1559
+ /**
1560
+ * The speaker search task ID.
1561
+ */
1562
+ SpeakerSearchTaskId: GuidString;
1563
+ }
1564
+ export interface StopVoiceToneAnalysisTaskRequest {
1565
+ /**
1566
+ * The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
1567
+ */
1568
+ Identifier: NonEmptyString;
1569
+ /**
1570
+ * The ID of the voice tone analysis task.
1571
+ */
1572
+ VoiceToneAnalysisTaskId: GuidString;
1573
+ }
1373
1574
  export interface StreamChannelDefinition {
1374
1575
  /**
1375
1576
  * The number of channels in a streaming channel.
@@ -1548,6 +1749,7 @@ declare namespace ChimeSDKMediaPipelines {
1548
1749
  export type VocabularyName = string;
1549
1750
  export type VocabularyNames = string;
1550
1751
  export type VoiceAnalyticsConfigurationStatus = "Enabled"|"Disabled"|string;
1752
+ export type VoiceAnalyticsLanguageCode = "en-US"|string;
1551
1753
  export interface VoiceAnalyticsProcessorConfiguration {
1552
1754
  /**
1553
1755
  * The status of the speaker search task.
@@ -1558,6 +1760,30 @@ declare namespace ChimeSDKMediaPipelines {
1558
1760
  */
1559
1761
  VoiceToneAnalysisStatus?: VoiceAnalyticsConfigurationStatus;
1560
1762
  }
1763
+ export interface VoiceEnhancementSinkConfiguration {
1764
+ /**
1765
+ * Disables the VoiceEnhancementSinkConfiguration element.
1766
+ */
1767
+ Disabled?: Boolean;
1768
+ }
1769
+ export interface VoiceToneAnalysisTask {
1770
+ /**
1771
+ * The ID of the voice tone analysis task.
1772
+ */
1773
+ VoiceToneAnalysisTaskId?: GuidString;
1774
+ /**
1775
+ * The status of a voice tone analysis task.
1776
+ */
1777
+ VoiceToneAnalysisTaskStatus?: MediaPipelineTaskStatus;
1778
+ /**
1779
+ * The time at which a voice tone analysis task was created.
1780
+ */
1781
+ CreatedTimestamp?: Iso8601Timestamp;
1782
+ /**
1783
+ * The time at which a voice tone analysis task was updated.
1784
+ */
1785
+ UpdatedTimestamp?: Iso8601Timestamp;
1786
+ }
1561
1787
  /**
1562
1788
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
1563
1789
  */
@@ -340,11 +340,11 @@ declare class CloudWatchEvents extends Service {
340
340
  */
341
341
  putRule(callback?: (err: AWSError, data: CloudWatchEvents.Types.PutRuleResponse) => void): Request<CloudWatchEvents.Types.PutRuleResponse, AWSError>;
342
342
  /**
343
- * Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
343
+ * Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Amazon Web Services Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
344
344
  */
345
345
  putTargets(params: CloudWatchEvents.Types.PutTargetsRequest, callback?: (err: AWSError, data: CloudWatchEvents.Types.PutTargetsResponse) => void): Request<CloudWatchEvents.Types.PutTargetsResponse, AWSError>;
346
346
  /**
347
- * Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
347
+ * Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule. Targets are the resources that are invoked when a rule is triggered. You can configure the following as targets for Events: API destination Amazon API Gateway REST API endpoints API Gateway Batch job queue CloudWatch Logs group CodeBuild project CodePipeline Amazon EC2 CreateSnapshot API call Amazon EC2 RebootInstances API call Amazon EC2 StopInstances API call Amazon EC2 TerminateInstances API call Amazon ECS tasks Event bus in a different Amazon Web Services account or Region. You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule. Firehose delivery stream (Kinesis Data Firehose) Inspector assessment template (Amazon Inspector) Kinesis stream (Kinesis Data Stream) Lambda function Redshift clusters (Data API statement execution) Amazon SNS topic Amazon SQS queues (includes FIFO queues SSM Automation SSM OpsItem SSM Run Command Step Functions state machines Creating rules with built-in targets is supported only in the Amazon Web Services Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call. For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field. To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide. If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing. Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account. If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide. For more information about enabling cross-account events, see PutPermission. Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event: If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target). If Input is specified in the form of valid JSON, then the matched event is overridden with this constant. If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed). If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target. When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation. When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect. This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.
348
348
  */
349
349
  putTargets(callback?: (err: AWSError, data: CloudWatchEvents.Types.PutTargetsResponse) => void): Request<CloudWatchEvents.Types.PutTargetsResponse, AWSError>;
350
350
  /**