cdk-lambda-subminute 2.0.248 → 2.0.250

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 (49) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +19 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +28 -9
  6. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.examples.json +83 -0
  7. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +241 -32
  8. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.paginators.json +31 -1
  9. package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +50 -49
  10. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +296 -9
  11. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
  12. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +298 -238
  13. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
  14. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +81 -60
  15. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
  16. package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +94 -73
  17. package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +5 -3
  18. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +141 -36
  19. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.paginators.json +5 -0
  20. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +4 -1
  21. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +126 -126
  22. package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +177 -168
  23. package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +32 -4
  24. package/node_modules/aws-sdk/clients/appintegrations.d.ts +255 -1
  25. package/node_modules/aws-sdk/clients/apprunner.d.ts +6 -1
  26. package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +291 -2
  27. package/node_modules/aws-sdk/clients/codedeploy.d.ts +34 -34
  28. package/node_modules/aws-sdk/clients/connect.d.ts +64 -6
  29. package/node_modules/aws-sdk/clients/dynamodb.d.ts +40 -2
  30. package/node_modules/aws-sdk/clients/ec2.d.ts +11 -3
  31. package/node_modules/aws-sdk/clients/emrserverless.d.ts +21 -0
  32. package/node_modules/aws-sdk/clients/finspacedata.d.ts +36 -36
  33. package/node_modules/aws-sdk/clients/lakeformation.d.ts +95 -1
  34. package/node_modules/aws-sdk/clients/pinpoint.d.ts +2 -2
  35. package/node_modules/aws-sdk/clients/quicksight.d.ts +7 -3
  36. package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
  37. package/node_modules/aws-sdk/clients/ssm.d.ts +7 -7
  38. package/node_modules/aws-sdk/clients/wafv2.d.ts +42 -32
  39. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  40. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +17 -17
  41. package/node_modules/aws-sdk/dist/aws-sdk.js +395 -301
  42. package/node_modules/aws-sdk/dist/aws-sdk.min.js +80 -80
  43. package/node_modules/aws-sdk/lib/core.js +1 -1
  44. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +38 -0
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/node_modules/xml2js/node_modules/sax/LICENSE +2 -2
  47. package/node_modules/xml2js/node_modules/sax/lib/sax.js +13 -4
  48. package/node_modules/xml2js/node_modules/sax/package.json +8 -4
  49. package/package.json +3 -3
@@ -76,6 +76,14 @@ declare class LakeFormation extends Service {
76
76
  * Creates an LF-tag with the specified name and values.
77
77
  */
78
78
  createLFTag(callback?: (err: AWSError, data: LakeFormation.Types.CreateLFTagResponse) => void): Request<LakeFormation.Types.CreateLFTagResponse, AWSError>;
79
+ /**
80
+ * Enforce Lake Formation permissions for the given databases, tables, and principals.
81
+ */
82
+ createLakeFormationOptIn(params: LakeFormation.Types.CreateLakeFormationOptInRequest, callback?: (err: AWSError, data: LakeFormation.Types.CreateLakeFormationOptInResponse) => void): Request<LakeFormation.Types.CreateLakeFormationOptInResponse, AWSError>;
83
+ /**
84
+ * Enforce Lake Formation permissions for the given databases, tables, and principals.
85
+ */
86
+ createLakeFormationOptIn(callback?: (err: AWSError, data: LakeFormation.Types.CreateLakeFormationOptInResponse) => void): Request<LakeFormation.Types.CreateLakeFormationOptInResponse, AWSError>;
79
87
  /**
80
88
  * Deletes a data cell filter.
81
89
  */
@@ -92,6 +100,14 @@ declare class LakeFormation extends Service {
92
100
  * Deletes the specified LF-tag given a key name. If the input parameter tag key was not found, then the operation will throw an exception. When you delete an LF-tag, the LFTagPolicy attached to the LF-tag becomes invalid. If the deleted LF-tag was still assigned to any resource, the tag policy attach to the deleted LF-tag will no longer be applied to the resource.
93
101
  */
94
102
  deleteLFTag(callback?: (err: AWSError, data: LakeFormation.Types.DeleteLFTagResponse) => void): Request<LakeFormation.Types.DeleteLFTagResponse, AWSError>;
103
+ /**
104
+ * Remove the Lake Formation permissions enforcement of the given databases, tables, and principals.
105
+ */
106
+ deleteLakeFormationOptIn(params: LakeFormation.Types.DeleteLakeFormationOptInRequest, callback?: (err: AWSError, data: LakeFormation.Types.DeleteLakeFormationOptInResponse) => void): Request<LakeFormation.Types.DeleteLakeFormationOptInResponse, AWSError>;
107
+ /**
108
+ * Remove the Lake Formation permissions enforcement of the given databases, tables, and principals.
109
+ */
110
+ deleteLakeFormationOptIn(callback?: (err: AWSError, data: LakeFormation.Types.DeleteLakeFormationOptInResponse) => void): Request<LakeFormation.Types.DeleteLakeFormationOptInResponse, AWSError>;
95
111
  /**
96
112
  * For a specific governed table, provides a list of Amazon S3 objects that will be written during the current transaction and that can be automatically deleted if the transaction is canceled. Without this call, no Amazon S3 objects are automatically deleted when a transaction cancels. The Glue ETL library function write_dynamic_frame.from_catalog() includes an option to automatically call DeleteObjectsOnCancel before writes. For more information, see Rolling Back Amazon S3 Writes.
97
113
  */
@@ -252,6 +268,14 @@ declare class LakeFormation extends Service {
252
268
  * Lists LF-tags that the requester has permission to view.
253
269
  */
254
270
  listLFTags(callback?: (err: AWSError, data: LakeFormation.Types.ListLFTagsResponse) => void): Request<LakeFormation.Types.ListLFTagsResponse, AWSError>;
271
+ /**
272
+ * Retrieve the current list of resources and principals that are opt in to enforce Lake Formation permissions.
273
+ */
274
+ listLakeFormationOptIns(params: LakeFormation.Types.ListLakeFormationOptInsRequest, callback?: (err: AWSError, data: LakeFormation.Types.ListLakeFormationOptInsResponse) => void): Request<LakeFormation.Types.ListLakeFormationOptInsResponse, AWSError>;
275
+ /**
276
+ * Retrieve the current list of resources and principals that are opt in to enforce Lake Formation permissions.
277
+ */
278
+ listLakeFormationOptIns(callback?: (err: AWSError, data: LakeFormation.Types.ListLakeFormationOptInsResponse) => void): Request<LakeFormation.Types.ListLakeFormationOptInsResponse, AWSError>;
255
279
  /**
256
280
  * Returns a list of the principal permissions on the resource, filtered by the permissions of the caller. For example, if you are granted an ALTER permission, you are able to see only the principal permissions for ALTER. This operation returns only those permissions that have been explicitly granted. For information about permissions, see Security and Access Control to Metadata and Data.
257
281
  */
@@ -608,6 +632,12 @@ declare namespace LakeFormation {
608
632
  }
609
633
  export interface CreateLFTagResponse {
610
634
  }
635
+ export interface CreateLakeFormationOptInRequest {
636
+ Principal: DataLakePrincipal;
637
+ Resource: Resource;
638
+ }
639
+ export interface CreateLakeFormationOptInResponse {
640
+ }
611
641
  export type CredentialTimeoutDurationSecondInteger = number;
612
642
  export interface DataCellsFilter {
613
643
  /**
@@ -767,6 +797,12 @@ declare namespace LakeFormation {
767
797
  }
768
798
  export interface DeleteLFTagResponse {
769
799
  }
800
+ export interface DeleteLakeFormationOptInRequest {
801
+ Principal: DataLakePrincipal;
802
+ Resource: Resource;
803
+ }
804
+ export interface DeleteLakeFormationOptInResponse {
805
+ }
770
806
  export interface DeleteObjectInput {
771
807
  /**
772
808
  * The Amazon S3 location of the object to delete.
@@ -1264,7 +1300,7 @@ declare namespace LakeFormation {
1264
1300
  */
1265
1301
  TagKey: LFTagKey;
1266
1302
  /**
1267
- * A list of possible values an attribute can take.
1303
+ * A list of possible values an attribute can take. The maximum number of values that can be defined for a LF-Tag is 1000. A single API call supports 50 values. You can use multiple API calls to add more values.
1268
1304
  */
1269
1305
  TagValues: TagValueList;
1270
1306
  }
@@ -1324,6 +1360,19 @@ declare namespace LakeFormation {
1324
1360
  }
1325
1361
  export type LFTagValue = string;
1326
1362
  export type LFTagsList = LFTagPair[];
1363
+ export interface LakeFormationOptInsInfo {
1364
+ Resource?: Resource;
1365
+ Principal?: DataLakePrincipal;
1366
+ /**
1367
+ * The last modified date and time of the record.
1368
+ */
1369
+ LastModified?: LastModifiedTimestamp;
1370
+ /**
1371
+ * The user who updated the record.
1372
+ */
1373
+ LastUpdatedBy?: NameString;
1374
+ }
1375
+ export type LakeFormationOptInsInfoList = LakeFormationOptInsInfo[];
1327
1376
  export type LastModifiedTimestamp = Date;
1328
1377
  export interface ListDataCellsFilterRequest {
1329
1378
  /**
@@ -1377,6 +1426,31 @@ declare namespace LakeFormation {
1377
1426
  */
1378
1427
  NextToken?: Token;
1379
1428
  }
1429
+ export interface ListLakeFormationOptInsRequest {
1430
+ Principal?: DataLakePrincipal;
1431
+ /**
1432
+ * A structure for the resource.
1433
+ */
1434
+ Resource?: Resource;
1435
+ /**
1436
+ * The maximum number of results to return.
1437
+ */
1438
+ MaxResults?: PageSize;
1439
+ /**
1440
+ * A continuation token, if this is not the first call to retrieve this list.
1441
+ */
1442
+ NextToken?: Token;
1443
+ }
1444
+ export interface ListLakeFormationOptInsResponse {
1445
+ /**
1446
+ * A list of principal-resource pairs that have Lake Formation permissins enforced.
1447
+ */
1448
+ LakeFormationOptInsInfoList?: LakeFormationOptInsInfoList;
1449
+ /**
1450
+ * A continuation token, if this is not the first call to retrieve this list.
1451
+ */
1452
+ NextToken?: Token;
1453
+ }
1380
1454
  export interface ListPermissionsRequest {
1381
1455
  /**
1382
1456
  * The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
@@ -1590,6 +1664,14 @@ declare namespace LakeFormation {
1590
1664
  * This attribute can be used to return any additional details of PrincipalResourcePermissions. Currently returns only as a RAM resource share ARN.
1591
1665
  */
1592
1666
  AdditionalDetails?: DetailsMap;
1667
+ /**
1668
+ * The date and time when the resource was last updated.
1669
+ */
1670
+ LastUpdated?: LastModifiedTimestamp;
1671
+ /**
1672
+ * The user who updated the record.
1673
+ */
1674
+ LastUpdatedBy?: NameString;
1593
1675
  }
1594
1676
  export type PrincipalResourcePermissionsList = PrincipalResourcePermissions[];
1595
1677
  export interface PutDataLakeSettingsRequest {
@@ -1648,6 +1730,10 @@ declare namespace LakeFormation {
1648
1730
  * Whether or not the resource is a federated resource.
1649
1731
  */
1650
1732
  WithFederation?: NullableBoolean;
1733
+ /**
1734
+ * Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
1735
+ */
1736
+ HybridAccessEnabled?: NullableBoolean;
1651
1737
  }
1652
1738
  export interface RegisterResourceResponse {
1653
1739
  }
@@ -1723,6 +1809,10 @@ declare namespace LakeFormation {
1723
1809
  * Whether or not the resource is a federated resource.
1724
1810
  */
1725
1811
  WithFederation?: NullableBoolean;
1812
+ /**
1813
+ * Indicates whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
1814
+ */
1815
+ HybridAccessEnabled?: NullableBoolean;
1726
1816
  }
1727
1817
  export type ResourceInfoList = ResourceInfo[];
1728
1818
  export type ResourceShareList = RAMResourceShareArn[];
@@ -2041,6 +2131,10 @@ declare namespace LakeFormation {
2041
2131
  * Whether or not the resource is a federated resource.
2042
2132
  */
2043
2133
  WithFederation?: NullableBoolean;
2134
+ /**
2135
+ * Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
2136
+ */
2137
+ HybridAccessEnabled?: NullableBoolean;
2044
2138
  }
2045
2139
  export interface UpdateResourceResponse {
2046
2140
  }
@@ -740,11 +740,11 @@ declare class Pinpoint extends Service {
740
740
  */
741
741
  putEvents(callback?: (err: AWSError, data: Pinpoint.Types.PutEventsResponse) => void): Request<Pinpoint.Types.PutEventsResponse, AWSError>;
742
742
  /**
743
- * Removes one or more attributes, of the same attribute type, from all the endpoints that are associated with an application.
743
+ * Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
744
744
  */
745
745
  removeAttributes(params: Pinpoint.Types.RemoveAttributesRequest, callback?: (err: AWSError, data: Pinpoint.Types.RemoveAttributesResponse) => void): Request<Pinpoint.Types.RemoveAttributesResponse, AWSError>;
746
746
  /**
747
- * Removes one or more attributes, of the same attribute type, from all the endpoints that are associated with an application.
747
+ * Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
748
748
  */
749
749
  removeAttributes(callback?: (err: AWSError, data: Pinpoint.Types.RemoveAttributesResponse) => void): Request<Pinpoint.Types.RemoveAttributesResponse, AWSError>;
750
750
  /**
@@ -1052,11 +1052,11 @@ declare class QuickSight extends Service {
1052
1052
  */
1053
1053
  startDashboardSnapshotJob(callback?: (err: AWSError, data: QuickSight.Types.StartDashboardSnapshotJobResponse) => void): Request<QuickSight.Types.StartDashboardSnapshotJobResponse, AWSError>;
1054
1054
  /**
1055
- * Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, and topic. Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for the following: You can't use tags to track costs for Amazon QuickSight. This isn't possible because you can't tag the resources that Amazon QuickSight costs are based on, for example Amazon QuickSight storage capacity (SPICE), number of users, type of users, and usage metrics. Amazon QuickSight doesn't currently support the tag editor for Resource Groups.
1055
+ * Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, topic, and user. Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for the following: Tags are used to track costs for users in Amazon QuickSight. You can't tag other resources that Amazon QuickSight costs are based on, such as storage capacoty (SPICE), session usage, alert consumption, or reporting units. Amazon QuickSight doesn't currently support the tag editor for Resource Groups.
1056
1056
  */
1057
1057
  tagResource(params: QuickSight.Types.TagResourceRequest, callback?: (err: AWSError, data: QuickSight.Types.TagResourceResponse) => void): Request<QuickSight.Types.TagResourceResponse, AWSError>;
1058
1058
  /**
1059
- * Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, and topic. Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for the following: You can't use tags to track costs for Amazon QuickSight. This isn't possible because you can't tag the resources that Amazon QuickSight costs are based on, for example Amazon QuickSight storage capacity (SPICE), number of users, type of users, and usage metrics. Amazon QuickSight doesn't currently support the tag editor for Resource Groups.
1059
+ * Assigns one or more tags (key-value pairs) to the specified Amazon QuickSight resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data set, data source, dashboard, template, topic, and user. Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for the following: Tags are used to track costs for users in Amazon QuickSight. You can't tag other resources that Amazon QuickSight costs are based on, such as storage capacoty (SPICE), session usage, alert consumption, or reporting units. Amazon QuickSight doesn't currently support the tag editor for Resource Groups.
1060
1060
  */
1061
1061
  tagResource(callback?: (err: AWSError, data: QuickSight.Types.TagResourceResponse) => void): Request<QuickSight.Types.TagResourceResponse, AWSError>;
1062
1062
  /**
@@ -11839,7 +11839,7 @@ declare namespace QuickSight {
11839
11839
  */
11840
11840
  MemberArn?: Arn;
11841
11841
  }
11842
- export type MemberType = "DASHBOARD"|"ANALYSIS"|"DATASET"|string;
11842
+ export type MemberType = "DASHBOARD"|"ANALYSIS"|"DATASET"|"TOPIC"|string;
11843
11843
  export interface MetricComparisonComputation {
11844
11844
  /**
11845
11845
  * The ID for a computation.
@@ -13632,6 +13632,10 @@ declare namespace QuickSight {
13632
13632
  * The identity ID for a user in the external login provider.
13633
13633
  */
13634
13634
  ExternalLoginId?: String;
13635
+ /**
13636
+ * The tags to associate with the user.
13637
+ */
13638
+ Tags?: TagList;
13635
13639
  }
13636
13640
  export interface RegisterUserResponse {
13637
13641
  /**
@@ -5696,7 +5696,7 @@ declare namespace S3 {
5696
5696
  }
5697
5697
  export type ReplicationRuleStatus = "Enabled"|"Disabled"|string;
5698
5698
  export type ReplicationRules = ReplicationRule[];
5699
- export type ReplicationStatus = "COMPLETE"|"PENDING"|"FAILED"|"REPLICA"|string;
5699
+ export type ReplicationStatus = "COMPLETE"|"PENDING"|"FAILED"|"REPLICA"|"COMPLETED"|string;
5700
5700
  export interface ReplicationTime {
5701
5701
  /**
5702
5702
  * Specifies whether the replication time is enabled.
@@ -2470,7 +2470,7 @@ declare namespace SSM {
2470
2470
  SeveritySummary?: SeveritySummary;
2471
2471
  }
2472
2472
  export type ComputerName = string;
2473
- export type ConnectionStatus = "Connected"|"NotConnected"|string;
2473
+ export type ConnectionStatus = "connected"|"notconnected"|string;
2474
2474
  export type ContentLength = number;
2475
2475
  export interface CreateActivationRequest {
2476
2476
  /**
@@ -2795,11 +2795,11 @@ declare namespace SSM {
2795
2795
  }
2796
2796
  export interface CreateOpsItemRequest {
2797
2797
  /**
2798
- * Information about the OpsItem.
2798
+ * User-defined text that contains information about the OpsItem, in Markdown format. Provide enough information so that users viewing this OpsItem for the first time understand the issue.
2799
2799
  */
2800
2800
  Description: OpsItemDescription;
2801
2801
  /**
2802
- * The type of OpsItem to create. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insights This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
2802
+ * The type of OpsItem to create. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insight This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
2803
2803
  */
2804
2804
  OpsItemType?: OpsItemType;
2805
2805
  /**
@@ -7148,7 +7148,7 @@ declare namespace SSM {
7148
7148
  */
7149
7149
  CreatedBy?: String;
7150
7150
  /**
7151
- * The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insights This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
7151
+ * The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insight This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
7152
7152
  */
7153
7153
  OpsItemType?: OpsItemType;
7154
7154
  /**
@@ -7448,7 +7448,7 @@ declare namespace SSM {
7448
7448
  */
7449
7449
  Severity?: OpsItemSeverity;
7450
7450
  /**
7451
- * The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insights This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
7451
+ * The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insight This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.
7452
7452
  */
7453
7453
  OpsItemType?: OpsItemType;
7454
7454
  /**
@@ -8608,7 +8608,7 @@ declare namespace SSM {
8608
8608
  export type ResourceDataSyncType = string;
8609
8609
  export type ResourceId = string;
8610
8610
  export type ResourcePolicyMaxResults = number;
8611
- export type ResourceType = "ManagedInstance"|"Document"|"EC2Instance"|string;
8611
+ export type ResourceType = "ManagedInstance"|"EC2Instance"|string;
8612
8612
  export type ResourceTypeForTagging = "Document"|"ManagedInstance"|"MaintenanceWindow"|"Parameter"|"PatchBaseline"|"OpsItem"|"OpsMetadata"|"Automation"|"Association"|string;
8613
8613
  export type ResponseCode = number;
8614
8614
  export interface ResultAttribute {
@@ -9837,7 +9837,7 @@ declare namespace SSM {
9837
9837
  }
9838
9838
  export interface UpdateOpsItemRequest {
9839
9839
  /**
9840
- * Update the information about the OpsItem. Provide enough information so that users reading this OpsItem for the first time understand the issue.
9840
+ * User-defined text that contains information about the OpsItem, in Markdown format.
9841
9841
  */
9842
9842
  Description?: OpsItemDescription;
9843
9843
  /**