aws-sdk 2.902.0 → 2.906.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 (46) hide show
  1. package/CHANGELOG.md +23 -1
  2. package/README.md +1 -1
  3. package/apis/config-2014-11-12.paginators.json +196 -2
  4. package/apis/connect-2017-08-08.min.json +8 -2
  5. package/apis/eks-2017-11-01.min.json +39 -11
  6. package/apis/iotwireless-2020-11-22.min.json +46 -17
  7. package/apis/kinesisanalyticsv2-2018-05-23.min.json +64 -1
  8. package/apis/lakeformation-2017-03-31.min.json +465 -95
  9. package/apis/mediaconvert-2017-08-29.min.json +187 -107
  10. package/apis/metadata.json +8 -0
  11. package/apis/ssm-2014-11-06.min.json +461 -344
  12. package/apis/ssm-2014-11-06.paginators.json +6 -0
  13. package/apis/ssm-contacts-2021-05-03.examples.json +5 -0
  14. package/apis/ssm-contacts-2021-05-03.min.json +833 -0
  15. package/apis/ssm-contacts-2021-05-03.paginators.json +40 -0
  16. package/apis/ssm-incidents-2018-05-10.examples.json +5 -0
  17. package/apis/ssm-incidents-2018-05-10.min.json +1311 -0
  18. package/apis/ssm-incidents-2018-05-10.paginators.json +40 -0
  19. package/apis/ssm-incidents-2018-05-10.waiters2.json +53 -0
  20. package/clients/all.d.ts +2 -0
  21. package/clients/all.js +3 -1
  22. package/clients/codeartifact.d.ts +23 -23
  23. package/clients/connect.d.ts +36 -28
  24. package/clients/ec2.d.ts +3 -3
  25. package/clients/ecs.d.ts +8 -8
  26. package/clients/eks.d.ts +47 -7
  27. package/clients/iotwireless.d.ts +11 -0
  28. package/clients/kinesisanalyticsv2.d.ts +77 -8
  29. package/clients/lakeformation.d.ts +428 -4
  30. package/clients/lookoutmetrics.d.ts +16 -16
  31. package/clients/mediaconvert.d.ts +98 -3
  32. package/clients/s3control.d.ts +72 -72
  33. package/clients/ssm.d.ts +181 -3
  34. package/clients/ssmcontacts.d.ts +1079 -0
  35. package/clients/ssmcontacts.js +18 -0
  36. package/clients/ssmincidents.d.ts +1382 -0
  37. package/clients/ssmincidents.js +19 -0
  38. package/dist/aws-sdk-core-react-native.js +2 -2
  39. package/dist/aws-sdk-react-native.js +94 -13
  40. package/dist/aws-sdk.js +682 -351
  41. package/dist/aws-sdk.min.js +68 -68
  42. package/lib/config_service_placeholders.d.ts +4 -0
  43. package/lib/core.js +1 -1
  44. package/lib/http/node.js +6 -2
  45. package/package.json +1 -1
  46. package/scripts/changelog/change-creator.js +1 -1
package/clients/ssm.d.ts CHANGED
@@ -20,6 +20,14 @@ declare class SSM extends Service {
20
20
  * Adds or overwrites one or more tags for the specified resource. Tags are metadata that you can assign to your documents, managed instances, maintenance windows, Parameter Store parameters, and patch baselines. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define. For example, you could define a set of tags for your account's managed instances that helps you track each instance's owner and stack level. For example: Key=Owner and Value=DbAdmin, SysAdmin, or Dev. Or Key=Stack and Value=Production, Pre-Production, or Test. Each resource can have a maximum of 50 tags. We recommend that you devise a set of tag keys that meets your needs for each resource type. Using a consistent set of tag keys makes it easier for you to manage your resources. You can search and filter the resources based on the tags you add. Tags don't have any semantic meaning to and are interpreted strictly as a string of characters. For more information about using tags with EC2 instances, see Tagging your Amazon EC2 resources in the Amazon EC2 User Guide.
21
21
  */
22
22
  addTagsToResource(callback?: (err: AWSError, data: SSM.Types.AddTagsToResourceResult) => void): Request<SSM.Types.AddTagsToResourceResult, AWSError>;
23
+ /**
24
+ * Associates a related resource to a Systems Manager OpsCenter OpsItem. For example, you can associate an Incident Manager incident or analysis with an OpsItem. Incident Manager is a capability of AWS Systems Manager.
25
+ */
26
+ associateOpsItemRelatedItem(params: SSM.Types.AssociateOpsItemRelatedItemRequest, callback?: (err: AWSError, data: SSM.Types.AssociateOpsItemRelatedItemResponse) => void): Request<SSM.Types.AssociateOpsItemRelatedItemResponse, AWSError>;
27
+ /**
28
+ * Associates a related resource to a Systems Manager OpsCenter OpsItem. For example, you can associate an Incident Manager incident or analysis with an OpsItem. Incident Manager is a capability of AWS Systems Manager.
29
+ */
30
+ associateOpsItemRelatedItem(callback?: (err: AWSError, data: SSM.Types.AssociateOpsItemRelatedItemResponse) => void): Request<SSM.Types.AssociateOpsItemRelatedItemResponse, AWSError>;
23
31
  /**
24
32
  * Attempts to cancel the command specified by the Command ID. There is no guarantee that the command will be terminated and the underlying process stopped.
25
33
  */
@@ -476,6 +484,14 @@ declare class SSM extends Service {
476
484
  * Retrieves a list of all active sessions (both connected and disconnected) or terminated sessions from the past 30 days.
477
485
  */
478
486
  describeSessions(callback?: (err: AWSError, data: SSM.Types.DescribeSessionsResponse) => void): Request<SSM.Types.DescribeSessionsResponse, AWSError>;
487
+ /**
488
+ * Deletes the association between an OpsItem and a related resource. For example, this API action can delete an Incident Manager incident from an OpsItem. Incident Manager is a capability of AWS Systems Manager.
489
+ */
490
+ disassociateOpsItemRelatedItem(params: SSM.Types.DisassociateOpsItemRelatedItemRequest, callback?: (err: AWSError, data: SSM.Types.DisassociateOpsItemRelatedItemResponse) => void): Request<SSM.Types.DisassociateOpsItemRelatedItemResponse, AWSError>;
491
+ /**
492
+ * Deletes the association between an OpsItem and a related resource. For example, this API action can delete an Incident Manager incident from an OpsItem. Incident Manager is a capability of AWS Systems Manager.
493
+ */
494
+ disassociateOpsItemRelatedItem(callback?: (err: AWSError, data: SSM.Types.DisassociateOpsItemRelatedItemResponse) => void): Request<SSM.Types.DisassociateOpsItemRelatedItemResponse, AWSError>;
479
495
  /**
480
496
  * Get detailed information about a particular Automation execution.
481
497
  */
@@ -764,6 +780,14 @@ declare class SSM extends Service {
764
780
  * Returns a list of all OpsItem events in the current AWS account and Region. You can limit the results to events associated with specific OpsItems by specifying a filter.
765
781
  */
766
782
  listOpsItemEvents(callback?: (err: AWSError, data: SSM.Types.ListOpsItemEventsResponse) => void): Request<SSM.Types.ListOpsItemEventsResponse, AWSError>;
783
+ /**
784
+ * Lists all related-item resources associated with an OpsItem.
785
+ */
786
+ listOpsItemRelatedItems(params: SSM.Types.ListOpsItemRelatedItemsRequest, callback?: (err: AWSError, data: SSM.Types.ListOpsItemRelatedItemsResponse) => void): Request<SSM.Types.ListOpsItemRelatedItemsResponse, AWSError>;
787
+ /**
788
+ * Lists all related-item resources associated with an OpsItem.
789
+ */
790
+ listOpsItemRelatedItems(callback?: (err: AWSError, data: SSM.Types.ListOpsItemRelatedItemsResponse) => void): Request<SSM.Types.ListOpsItemRelatedItemsResponse, AWSError>;
767
791
  /**
768
792
  * Systems Manager calls this API action when displaying all Application Manager OpsMetadata objects or blobs.
769
793
  */
@@ -1160,6 +1184,30 @@ declare namespace SSM {
1160
1184
  export type AllowedPattern = string;
1161
1185
  export type ApplyOnlyAtCronInterval = boolean;
1162
1186
  export type ApproveAfterDays = number;
1187
+ export interface AssociateOpsItemRelatedItemRequest {
1188
+ /**
1189
+ * The ID of the OpsItem to which you want to associate a resource as a related item.
1190
+ */
1191
+ OpsItemId: OpsItemId;
1192
+ /**
1193
+ * The type of association that you want to create between an OpsItem and a resource. OpsCenter supports IsParentOf and RelatesTo association types.
1194
+ */
1195
+ AssociationType: OpsItemRelatedItemAssociationType;
1196
+ /**
1197
+ * The type of resource that you want to associate with an OpsItem. OpsCenter supports the following types: AWS::SSMIncidents::IncidentRecord: an Incident Manager incident. Incident Manager is a capability of AWS Systems Manager. AWS::SSM::Document: a Systems Manager (SSM) document.
1198
+ */
1199
+ ResourceType: OpsItemRelatedItemAssociationResourceType;
1200
+ /**
1201
+ * The Amazon Resource Name (ARN) of the AWS resource that you want to associate with the OpsItem.
1202
+ */
1203
+ ResourceUri: OpsItemRelatedItemAssociationResourceUri;
1204
+ }
1205
+ export interface AssociateOpsItemRelatedItemResponse {
1206
+ /**
1207
+ * The association ID.
1208
+ */
1209
+ AssociationId?: OpsItemRelatedItemAssociationId;
1210
+ }
1163
1211
  export interface Association {
1164
1212
  /**
1165
1213
  * The name of the Systems Manager document.
@@ -2515,6 +2563,10 @@ declare namespace SSM {
2515
2563
  * A name for the Systems Manager document. You can't use the following strings as document name prefixes. These are reserved by AWS for use as document name prefixes: aws- amazon amzn
2516
2564
  */
2517
2565
  Name: DocumentName;
2566
+ /**
2567
+ * An optional field where you can specify a friendly name for the Systems Manager document. This value can differ for each version of the document. You can update this value at a later time using the UpdateDocument action.
2568
+ */
2569
+ DisplayName?: DocumentDisplayName;
2518
2570
  /**
2519
2571
  * An optional field specifying the version of the artifact you are creating with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and cannot be changed.
2520
2572
  */
@@ -3149,7 +3201,7 @@ declare namespace SSM {
3149
3201
  */
3150
3202
  MaxResults?: MaxResults;
3151
3203
  /**
3152
- * A boolean that indicates whether to list step executions in reverse order by start time. The default value is 'false'.
3204
+ * Indicates whether to list step executions in reverse order by start time. The default value is 'false'.
3153
3205
  */
3154
3206
  ReverseOrder?: Boolean;
3155
3207
  }
@@ -3892,6 +3944,18 @@ declare namespace SSM {
3892
3944
  NextToken?: NextToken;
3893
3945
  }
3894
3946
  export type DescriptionInDocument = string;
3947
+ export interface DisassociateOpsItemRelatedItemRequest {
3948
+ /**
3949
+ * The ID of the OpsItem for which you want to delete an association between the OpsItem and a related resource.
3950
+ */
3951
+ OpsItemId: OpsItemId;
3952
+ /**
3953
+ * The ID of the association for which you want to delete an association between the OpsItem and a related resource.
3954
+ */
3955
+ AssociationId: OpsItemRelatedItemAssociationId;
3956
+ }
3957
+ export interface DisassociateOpsItemRelatedItemResponse {
3958
+ }
3895
3959
  export type DocumentARN = string;
3896
3960
  export type DocumentAuthor = string;
3897
3961
  export type DocumentContent = string;
@@ -3926,6 +3990,10 @@ declare namespace SSM {
3926
3990
  * The name of the Systems Manager document.
3927
3991
  */
3928
3992
  Name?: DocumentARN;
3993
+ /**
3994
+ * The friendly name of the Systems Manager document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.
3995
+ */
3996
+ DisplayName?: DocumentDisplayName;
3929
3997
  /**
3930
3998
  * The version of the artifact associated with the document.
3931
3999
  */
@@ -4019,6 +4087,7 @@ declare namespace SSM {
4019
4087
  */
4020
4088
  ReviewStatus?: ReviewStatus;
4021
4089
  }
4090
+ export type DocumentDisplayName = string;
4022
4091
  export interface DocumentFilter {
4023
4092
  /**
4024
4093
  * The name of the filter.
@@ -4040,6 +4109,14 @@ declare namespace SSM {
4040
4109
  * The name of the Systems Manager document.
4041
4110
  */
4042
4111
  Name?: DocumentARN;
4112
+ /**
4113
+ * The date the Systems Manager document was created.
4114
+ */
4115
+ CreatedDate?: DateTime;
4116
+ /**
4117
+ * An optional field where you can specify a friendly name for the Systems Manager document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.
4118
+ */
4119
+ DisplayName?: DocumentDisplayName;
4043
4120
  /**
4044
4121
  * The AWS user account that created the document.
4045
4122
  */
@@ -4200,13 +4277,17 @@ declare namespace SSM {
4200
4277
  export type DocumentSha1 = string;
4201
4278
  export type DocumentStatus = "Creating"|"Active"|"Updating"|"Deleting"|"Failed"|string;
4202
4279
  export type DocumentStatusInformation = string;
4203
- export type DocumentType = "Command"|"Policy"|"Automation"|"Session"|"Package"|"ApplicationConfiguration"|"ApplicationConfigurationSchema"|"DeploymentStrategy"|"ChangeCalendar"|"Automation.ChangeTemplate"|string;
4280
+ export type DocumentType = "Command"|"Policy"|"Automation"|"Session"|"Package"|"ApplicationConfiguration"|"ApplicationConfigurationSchema"|"DeploymentStrategy"|"ChangeCalendar"|"Automation.ChangeTemplate"|"ProblemAnalysis"|"ProblemAnalysisTemplate"|string;
4204
4281
  export type DocumentVersion = string;
4205
4282
  export interface DocumentVersionInfo {
4206
4283
  /**
4207
4284
  * The document name.
4208
4285
  */
4209
4286
  Name?: DocumentName;
4287
+ /**
4288
+ * The friendly name of the Systems Manager document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.
4289
+ */
4290
+ DisplayName?: DocumentDisplayName;
4210
4291
  /**
4211
4292
  * The document version.
4212
4293
  */
@@ -4497,6 +4578,14 @@ declare namespace SSM {
4497
4578
  * The name of the Systems Manager document.
4498
4579
  */
4499
4580
  Name?: DocumentARN;
4581
+ /**
4582
+ * The date the Systems Manager document was created.
4583
+ */
4584
+ CreatedDate?: DateTime;
4585
+ /**
4586
+ * The friendly name of the Systems Manager document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.
4587
+ */
4588
+ DisplayName?: DocumentDisplayName;
4500
4589
  /**
4501
4590
  * The version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and cannot be changed.
4502
4591
  */
@@ -6089,6 +6178,34 @@ declare namespace SSM {
6089
6178
  */
6090
6179
  Summaries?: OpsItemEventSummaries;
6091
6180
  }
6181
+ export interface ListOpsItemRelatedItemsRequest {
6182
+ /**
6183
+ * The ID of the OpsItem for which you want to list all related-item resources.
6184
+ */
6185
+ OpsItemId?: OpsItemId;
6186
+ /**
6187
+ * One or more OpsItem filters. Use a filter to return a more specific list of results.
6188
+ */
6189
+ Filters?: OpsItemRelatedItemsFilters;
6190
+ /**
6191
+ * The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
6192
+ */
6193
+ MaxResults?: OpsItemRelatedItemsMaxResults;
6194
+ /**
6195
+ * The token for the next set of items to return. (You received this token from a previous call.)
6196
+ */
6197
+ NextToken?: String;
6198
+ }
6199
+ export interface ListOpsItemRelatedItemsResponse {
6200
+ /**
6201
+ * The token for the next set of items to return. Use this token to get the next set of results.
6202
+ */
6203
+ NextToken?: String;
6204
+ /**
6205
+ * A list of related-item resources for the specified OpsItem.
6206
+ */
6207
+ Summaries?: OpsItemRelatedItemSummaries;
6208
+ }
6092
6209
  export type ListOpsMetadataMaxResults = number;
6093
6210
  export interface ListOpsMetadataRequest {
6094
6211
  /**
@@ -6945,6 +7062,63 @@ declare namespace SSM {
6945
7062
  export type OpsItemOperationalData = {[key: string]: OpsItemDataValue};
6946
7063
  export type OpsItemOpsDataKeysList = String[];
6947
7064
  export type OpsItemPriority = number;
7065
+ export type OpsItemRelatedItemAssociationId = string;
7066
+ export type OpsItemRelatedItemAssociationResourceType = string;
7067
+ export type OpsItemRelatedItemAssociationResourceUri = string;
7068
+ export type OpsItemRelatedItemAssociationType = string;
7069
+ export type OpsItemRelatedItemSummaries = OpsItemRelatedItemSummary[];
7070
+ export interface OpsItemRelatedItemSummary {
7071
+ /**
7072
+ * The OpsItem ID.
7073
+ */
7074
+ OpsItemId?: OpsItemId;
7075
+ /**
7076
+ * The association ID.
7077
+ */
7078
+ AssociationId?: OpsItemRelatedItemAssociationId;
7079
+ /**
7080
+ * The resource type.
7081
+ */
7082
+ ResourceType?: OpsItemRelatedItemAssociationResourceType;
7083
+ /**
7084
+ * The association type.
7085
+ */
7086
+ AssociationType?: OpsItemRelatedItemAssociationType;
7087
+ /**
7088
+ * The Amazon Resource Name (ARN) of the related-item resource.
7089
+ */
7090
+ ResourceUri?: OpsItemRelatedItemAssociationResourceUri;
7091
+ CreatedBy?: OpsItemIdentity;
7092
+ /**
7093
+ * The time the related-item association was created.
7094
+ */
7095
+ CreatedTime?: DateTime;
7096
+ LastModifiedBy?: OpsItemIdentity;
7097
+ /**
7098
+ * The time the related-item association was last updated.
7099
+ */
7100
+ LastModifiedTime?: DateTime;
7101
+ }
7102
+ export interface OpsItemRelatedItemsFilter {
7103
+ /**
7104
+ * The name of the filter key. Supported values include ResourceUri, ResourceType, or AssociationId.
7105
+ */
7106
+ Key: OpsItemRelatedItemsFilterKey;
7107
+ /**
7108
+ * The values for the filter.
7109
+ */
7110
+ Values: OpsItemRelatedItemsFilterValues;
7111
+ /**
7112
+ * The operator used by the filter call. The only supported operator is EQUAL.
7113
+ */
7114
+ Operator: OpsItemRelatedItemsFilterOperator;
7115
+ }
7116
+ export type OpsItemRelatedItemsFilterKey = "ResourceType"|"AssociationId"|"ResourceUri"|string;
7117
+ export type OpsItemRelatedItemsFilterOperator = "Equal"|string;
7118
+ export type OpsItemRelatedItemsFilterValue = string;
7119
+ export type OpsItemRelatedItemsFilterValues = OpsItemRelatedItemsFilterValue[];
7120
+ export type OpsItemRelatedItemsFilters = OpsItemRelatedItemsFilter[];
7121
+ export type OpsItemRelatedItemsMaxResults = number;
6948
7122
  export type OpsItemSeverity = string;
6949
7123
  export type OpsItemSource = string;
6950
7124
  export type OpsItemStatus = "Open"|"InProgress"|"Resolved"|"Pending"|"TimedOut"|"Cancelling"|"Cancelled"|"Failed"|"CompletedWithSuccess"|"CompletedWithFailure"|"Scheduled"|"RunbookInProgress"|"PendingChangeCalendarOverride"|"ChangeCalendarOverrideApproved"|"ChangeCalendarOverrideRejected"|"PendingApproval"|"Approved"|"Rejected"|string;
@@ -8955,9 +9129,13 @@ declare namespace SSM {
8955
9129
  */
8956
9130
  Attachments?: AttachmentsSourceList;
8957
9131
  /**
8958
- * The name of the document that you want to update.
9132
+ * The name of the Systems Manager document that you want to update.
8959
9133
  */
8960
9134
  Name: DocumentName;
9135
+ /**
9136
+ * The friendly name of the Systems Manager document that you want to update. This value can differ for each version of the document. If you do not specify a value for this parameter in your request, the existing value is applied to the new document version.
9137
+ */
9138
+ DisplayName?: DocumentDisplayName;
8961
9139
  /**
8962
9140
  * An optional field specifying the version of the artifact you are updating with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and cannot be changed.
8963
9141
  */