aws-sdk 2.771.0 → 2.772.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 (37) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/README.md +1 -1
  3. package/apis/accessanalyzer-2019-11-01.min.json +70 -48
  4. package/apis/budgets-2016-10-20.min.json +411 -0
  5. package/apis/budgets-2016-10-20.paginators.json +18 -0
  6. package/apis/dms-2016-01-01.min.json +15 -3
  7. package/apis/groundstation-2019-05-23.min.json +1 -0
  8. package/apis/iot-2015-05-28.min.json +4 -1
  9. package/apis/macie2-2020-01-01.min.json +159 -22
  10. package/apis/rds-2014-10-31.min.json +13 -1
  11. package/apis/rekognition-2016-06-27.min.json +161 -51
  12. package/apis/ssm-2014-11-06.min.json +147 -126
  13. package/apis/transfer-2018-11-05.min.json +32 -28
  14. package/apis/workmail-2017-10-01.min.json +93 -30
  15. package/apis/xray-2016-04-12.min.json +11 -5
  16. package/apis/xray-2016-04-12.paginators.json +0 -15
  17. package/clients/accessanalyzer.d.ts +26 -4
  18. package/clients/budgets.d.ts +358 -0
  19. package/clients/costexplorer.d.ts +1 -1
  20. package/clients/dms.d.ts +26 -2
  21. package/clients/glue.d.ts +1 -1
  22. package/clients/groundstation.d.ts +5 -1
  23. package/clients/iot.d.ts +10 -6
  24. package/clients/macie2.d.ts +182 -62
  25. package/clients/rds.d.ts +13 -9
  26. package/clients/rekognition.d.ts +123 -0
  27. package/clients/ssm.d.ts +63 -11
  28. package/clients/transfer.d.ts +77 -71
  29. package/clients/workmail.d.ts +91 -1
  30. package/clients/workspaces.d.ts +12 -12
  31. package/clients/xray.d.ts +29 -21
  32. package/dist/aws-sdk-core-react-native.js +1 -1
  33. package/dist/aws-sdk-react-native.js +15 -15
  34. package/dist/aws-sdk.js +339 -202
  35. package/dist/aws-sdk.min.js +39 -39
  36. package/lib/core.js +1 -1
  37. package/package.json +1 -1
package/clients/rds.d.ts CHANGED
@@ -102,11 +102,11 @@ declare class RDS extends Service {
102
102
  */
103
103
  copyDBParameterGroup(callback?: (err: AWSError, data: RDS.Types.CopyDBParameterGroupResult) => void): Request<RDS.Types.CopyDBParameterGroupResult, AWSError>;
104
104
  /**
105
- * Copies the specified DB snapshot. The source DB snapshot must be in the available or storage-optimization state. You can copy a snapshot from one AWS Region to another. In that case, the AWS Region where you call the CopyDBSnapshot action is the destination AWS Region for the DB snapshot copy. For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.
105
+ * Copies the specified DB snapshot. The source DB snapshot must be in the available state. You can copy a snapshot from one AWS Region to another. In that case, the AWS Region where you call the CopyDBSnapshot action is the destination AWS Region for the DB snapshot copy. For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.
106
106
  */
107
107
  copyDBSnapshot(params: RDS.Types.CopyDBSnapshotMessage, callback?: (err: AWSError, data: RDS.Types.CopyDBSnapshotResult) => void): Request<RDS.Types.CopyDBSnapshotResult, AWSError>;
108
108
  /**
109
- * Copies the specified DB snapshot. The source DB snapshot must be in the available or storage-optimization state. You can copy a snapshot from one AWS Region to another. In that case, the AWS Region where you call the CopyDBSnapshot action is the destination AWS Region for the DB snapshot copy. For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.
109
+ * Copies the specified DB snapshot. The source DB snapshot must be in the available state. You can copy a snapshot from one AWS Region to another. In that case, the AWS Region where you call the CopyDBSnapshot action is the destination AWS Region for the DB snapshot copy. For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.
110
110
  */
111
111
  copyDBSnapshot(callback?: (err: AWSError, data: RDS.Types.CopyDBSnapshotResult) => void): Request<RDS.Types.CopyDBSnapshotResult, AWSError>;
112
112
  /**
@@ -198,11 +198,11 @@ declare class RDS extends Service {
198
198
  */
199
199
  createDBSecurityGroup(callback?: (err: AWSError, data: RDS.Types.CreateDBSecurityGroupResult) => void): Request<RDS.Types.CreateDBSecurityGroupResult, AWSError>;
200
200
  /**
201
- * Creates a DBSnapshot. The source DBInstance must be in "available" state.
201
+ * Creates a snapshot of a DB instance. The source DB instance must be in the available or storage-optimizationstate.
202
202
  */
203
203
  createDBSnapshot(params: RDS.Types.CreateDBSnapshotMessage, callback?: (err: AWSError, data: RDS.Types.CreateDBSnapshotResult) => void): Request<RDS.Types.CreateDBSnapshotResult, AWSError>;
204
204
  /**
205
- * Creates a DBSnapshot. The source DBInstance must be in "available" state.
205
+ * Creates a snapshot of a DB instance. The source DB instance must be in the available or storage-optimizationstate.
206
206
  */
207
207
  createDBSnapshot(callback?: (err: AWSError, data: RDS.Types.CreateDBSnapshotResult) => void): Request<RDS.Types.CreateDBSnapshotResult, AWSError>;
208
208
  /**
@@ -1646,7 +1646,7 @@ declare namespace RDS {
1646
1646
  */
1647
1647
  EnableCloudwatchLogsExports?: LogTypeList;
1648
1648
  /**
1649
- * The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster. global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode. Limitations and requirements apply to some DB engine modes. For more information, see the following sections in the Amazon Aurora User Guide: Limitations of Aurora Serverless Limitations of Parallel Query Requirements for Aurora Global Databases Limitations of Multi-Master Clusters
1649
+ * The DB engine mode of the DB cluster, either provisioned serverless, parallelquery, global, or multimaster. The parallelquery engine mode isn't required for Aurora MySQL version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x versions. The global engine mode isn't required for Aurora MySQL version 1.22 and higher 1.x versions, and global engine mode isn't required for any 2.x versions. The multimaster engine mode only applies for DB clusters created with Aurora MySQL version 5.6.10a. For Aurora PostgreSQL, the global engine mode isn't required, and both the parallelquery and the multimaster engine modes currently aren't supported. Limitations and requirements apply to some DB engine modes. For more information, see the following sections in the Amazon Aurora User Guide: Limitations of Aurora Serverless Limitations of Parallel Query Limitations of Aurora Global Databases Limitations of Multi-Master Clusters
1650
1650
  */
1651
1651
  EngineMode?: String;
1652
1652
  /**
@@ -2454,7 +2454,7 @@ declare namespace RDS {
2454
2454
  */
2455
2455
  Capacity?: IntegerOptional;
2456
2456
  /**
2457
- * The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster. global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode. To check if a DB cluster is part of a global database, use DescribeGlobalClusters instead of checking the EngineMode return value from DescribeDBClusters.
2457
+ * The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster. For more information, see CreateDBCluster.
2458
2458
  */
2459
2459
  EngineMode?: String;
2460
2460
  ScalingConfigurationInfo?: ScalingConfigurationInfo;
@@ -2494,6 +2494,7 @@ declare namespace RDS {
2494
2494
  * The Active Directory Domain membership records associated with the DB cluster.
2495
2495
  */
2496
2496
  DomainMemberships?: DomainMembershipList;
2497
+ TagList?: TagList;
2497
2498
  /**
2498
2499
  * Specifies whether a secondary cluster in an Aurora global database has write forwarding enabled, not enabled, or is in the process of enabling it.
2499
2500
  */
@@ -2797,6 +2798,7 @@ declare namespace RDS {
2797
2798
  * True if mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
2798
2799
  */
2799
2800
  IAMDatabaseAuthenticationEnabled?: Boolean;
2801
+ TagList?: TagList;
2800
2802
  }
2801
2803
  export interface DBClusterSnapshotAttribute {
2802
2804
  /**
@@ -2884,7 +2886,7 @@ declare namespace RDS {
2884
2886
  */
2885
2887
  SupportsReadReplica?: Boolean;
2886
2888
  /**
2887
- * A list of the supported DB engine modes. global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode.
2889
+ * A list of the supported DB engine modes.
2888
2890
  */
2889
2891
  SupportedEngineModes?: EngineModeList;
2890
2892
  /**
@@ -3156,6 +3158,7 @@ declare namespace RDS {
3156
3158
  * The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.
3157
3159
  */
3158
3160
  MaxAllocatedStorage?: IntegerOptional;
3161
+ TagList?: TagList;
3159
3162
  }
3160
3163
  export interface DBInstanceAutomatedBackup {
3161
3164
  /**
@@ -3653,6 +3656,7 @@ declare namespace RDS {
3653
3656
  * The identifier for the source DB instance, which can't be changed and which is unique to an AWS Region.
3654
3657
  */
3655
3658
  DbiResourceId?: String;
3659
+ TagList?: TagList;
3656
3660
  }
3657
3661
  export interface DBSnapshotAttribute {
3658
3662
  /**
@@ -6239,7 +6243,7 @@ declare namespace RDS {
6239
6243
  */
6240
6244
  AvailableProcessorFeatures?: AvailableProcessorFeatureList;
6241
6245
  /**
6242
- * A list of the supported DB engine modes. global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode.
6246
+ * A list of the supported DB engine modes.
6243
6247
  */
6244
6248
  SupportedEngineModes?: EngineModeList;
6245
6249
  /**
@@ -6973,7 +6977,7 @@ declare namespace RDS {
6973
6977
  */
6974
6978
  EnableCloudwatchLogsExports?: LogTypeList;
6975
6979
  /**
6976
- * The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.
6980
+ * The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster. For more information, see CreateDBCluster.
6977
6981
  */
6978
6982
  EngineMode?: String;
6979
6983
  /**
@@ -156,6 +156,14 @@ declare class Rekognition extends Service {
156
156
  * Detects unsafe content in a specified JPEG or PNG format image. Use DetectModerationLabels to moderate images depending on your requirements. For example, you might want to filter images that contain nudity, but not images containing suggestive content. To filter images, use the labels returned by DetectModerationLabels to determine which types of content are appropriate. For information about moderation labels, see Detecting Unsafe Content in the Amazon Rekognition Developer Guide. You pass the input image either as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes is not supported. The image must be either a PNG or JPEG formatted file.
157
157
  */
158
158
  detectModerationLabels(callback?: (err: AWSError, data: Rekognition.Types.DetectModerationLabelsResponse) => void): Request<Rekognition.Types.DetectModerationLabelsResponse, AWSError>;
159
+ /**
160
+ * Detects Personal Protective Equipment (PPE) worn by people detected in an image. Amazon Rekognition can detect the following types of PPE. Face cover Hand cover Head cover You pass the input image as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. The image must be either a PNG or JPG formatted file. DetectProtectiveEquipment detects PPE worn by up to 15 persons detected in an image. For each person detected in the image the API returns an array of body parts (face, head, left-hand, right-hand). For each body part, an array of detected items of PPE is returned, including an indicator of whether or not the PPE covers the body part. The API returns the confidence it has in each detection (person, PPE, body part and body part coverage). It also returns a bounding box (BoundingBox) for each detected person and each detected item of PPE. You can optionally request a summary of detected PPE items with the SummarizationAttributes input parameter. The summary provides the following information. The persons detected as wearing all of the types of PPE that you specify. The persons detected as not wearing all of the types PPE that you specify. The persons detected where PPE adornment could not be determined. This is a stateless API operation. That is, the operation does not persist any data. This operation requires permissions to perform the rekognition:DetectProtectiveEquipment action.
161
+ */
162
+ detectProtectiveEquipment(params: Rekognition.Types.DetectProtectiveEquipmentRequest, callback?: (err: AWSError, data: Rekognition.Types.DetectProtectiveEquipmentResponse) => void): Request<Rekognition.Types.DetectProtectiveEquipmentResponse, AWSError>;
163
+ /**
164
+ * Detects Personal Protective Equipment (PPE) worn by people detected in an image. Amazon Rekognition can detect the following types of PPE. Face cover Hand cover Head cover You pass the input image as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. The image must be either a PNG or JPG formatted file. DetectProtectiveEquipment detects PPE worn by up to 15 persons detected in an image. For each person detected in the image the API returns an array of body parts (face, head, left-hand, right-hand). For each body part, an array of detected items of PPE is returned, including an indicator of whether or not the PPE covers the body part. The API returns the confidence it has in each detection (person, PPE, body part and body part coverage). It also returns a bounding box (BoundingBox) for each detected person and each detected item of PPE. You can optionally request a summary of detected PPE items with the SummarizationAttributes input parameter. The summary provides the following information. The persons detected as wearing all of the types of PPE that you specify. The persons detected as not wearing all of the types PPE that you specify. The persons detected where PPE adornment could not be determined. This is a stateless API operation. That is, the operation does not persist any data. This operation requires permissions to perform the rekognition:DetectProtectiveEquipment action.
165
+ */
166
+ detectProtectiveEquipment(callback?: (err: AWSError, data: Rekognition.Types.DetectProtectiveEquipmentResponse) => void): Request<Rekognition.Types.DetectProtectiveEquipmentResponse, AWSError>;
159
167
  /**
160
168
  * Detects text in the input image and converts it into machine-readable text. Pass the input image as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, you must pass it as a reference to an image in an Amazon S3 bucket. For the AWS CLI, passing image bytes is not supported. The image must be either a .png or .jpeg formatted file. The DetectText operation returns text in an array of TextDetection elements, TextDetections. Each TextDetection element provides information about a single word or line of text that was detected in the image. A word is one or more ISO basic latin script characters that are not separated by spaces. DetectText can detect up to 50 words in an image. A line is a string of equally spaced words. A line isn't necessarily a complete sentence. For example, a driver's license number is detected as a line. A line ends when there is no aligned text after it. Also, a line ends when there is a large gap between words, relative to the length of the words. This means, depending on the gap between words, Amazon Rekognition may detect multiple lines in text aligned in the same direction. Periods don't represent the end of a line. If a sentence spans multiple lines, the DetectText operation returns multiple lines. To determine whether a TextDetection element is a line of text or a word, use the TextDetection object Type field. To be detected, text must be within +/- 90 degrees orientation of the horizontal axis. For more information, see DetectText in the Amazon Rekognition Developer Guide.
161
169
  */
@@ -451,6 +459,8 @@ declare namespace Rekognition {
451
459
  */
452
460
  Confidence?: Percent;
453
461
  }
462
+ export type BodyPart = "FACE"|"HEAD"|"LEFT_HAND"|"RIGHT_HAND"|string;
463
+ export type BodyParts = ProtectiveEquipmentBodyPart[];
454
464
  export type Boolean = boolean;
455
465
  export interface BoundingBox {
456
466
  /**
@@ -635,6 +645,16 @@ declare namespace Rekognition {
635
645
  }
636
646
  export type ContentModerationDetections = ContentModerationDetection[];
637
647
  export type ContentModerationSortBy = "NAME"|"TIMESTAMP"|string;
648
+ export interface CoversBodyPart {
649
+ /**
650
+ * The confidence that Amazon Rekognition has in the value of Value.
651
+ */
652
+ Confidence?: Percent;
653
+ /**
654
+ * True if the PPE covers the corresponding body part, otherwise false.
655
+ */
656
+ Value?: Boolean;
657
+ }
638
658
  export interface CreateCollectionRequest {
639
659
  /**
640
660
  * ID for the collection that you are creating.
@@ -1017,6 +1037,30 @@ declare namespace Rekognition {
1017
1037
  */
1018
1038
  HumanLoopActivationOutput?: HumanLoopActivationOutput;
1019
1039
  }
1040
+ export interface DetectProtectiveEquipmentRequest {
1041
+ /**
1042
+ * The image in which you want to detect PPE on detected persons. The image can be passed as image bytes or you can reference an image stored in an Amazon S3 bucket.
1043
+ */
1044
+ Image: Image;
1045
+ /**
1046
+ * An array of PPE types that you want to summarize.
1047
+ */
1048
+ SummarizationAttributes?: ProtectiveEquipmentSummarizationAttributes;
1049
+ }
1050
+ export interface DetectProtectiveEquipmentResponse {
1051
+ /**
1052
+ * The version number of the PPE detection model used to detect PPE in the image.
1053
+ */
1054
+ ProtectiveEquipmentModelVersion?: String;
1055
+ /**
1056
+ * An array of persons detected in the image (including persons not wearing PPE).
1057
+ */
1058
+ Persons?: ProtectiveEquipmentPersons;
1059
+ /**
1060
+ * Summary information for the types of PPE specified in the SummarizationAttributes input parameter.
1061
+ */
1062
+ Summary?: ProtectiveEquipmentSummary;
1063
+ }
1020
1064
  export interface DetectTextFilters {
1021
1065
  WordFilter?: DetectionFilter;
1022
1066
  /**
@@ -1070,6 +1114,25 @@ declare namespace Rekognition {
1070
1114
  }
1071
1115
  export type EmotionName = "HAPPY"|"SAD"|"ANGRY"|"CONFUSED"|"DISGUSTED"|"SURPRISED"|"CALM"|"UNKNOWN"|"FEAR"|string;
1072
1116
  export type Emotions = Emotion[];
1117
+ export interface EquipmentDetection {
1118
+ /**
1119
+ * A bounding box surrounding the item of detected PPE.
1120
+ */
1121
+ BoundingBox?: BoundingBox;
1122
+ /**
1123
+ * The confidence that Amazon Rekognition has that the bounding box (BoundingBox) contains an item of PPE.
1124
+ */
1125
+ Confidence?: Percent;
1126
+ /**
1127
+ * The type of detected PPE.
1128
+ */
1129
+ Type?: ProtectiveEquipmentType;
1130
+ /**
1131
+ * Information about the body part covered by the detected PPE.
1132
+ */
1133
+ CoversBodyPart?: CoversBodyPart;
1134
+ }
1135
+ export type EquipmentDetections = EquipmentDetection[];
1073
1136
  export interface EvaluationResult {
1074
1137
  /**
1075
1138
  * The F1 score for the evaluation of all labels. The F1 score metric evaluates the overall precision and recall performance of the model as a single value. A higher value indicates better precision and recall performance. A lower score indicates that precision, recall, or both are performing poorly.
@@ -2064,6 +2127,66 @@ declare namespace Rekognition {
2064
2127
  export type ProjectVersionStatus = "TRAINING_IN_PROGRESS"|"TRAINING_COMPLETED"|"TRAINING_FAILED"|"STARTING"|"RUNNING"|"FAILED"|"STOPPING"|"STOPPED"|"DELETING"|string;
2065
2128
  export type ProjectVersionsPageSize = number;
2066
2129
  export type ProjectsPageSize = number;
2130
+ export interface ProtectiveEquipmentBodyPart {
2131
+ /**
2132
+ * The detected body part.
2133
+ */
2134
+ Name?: BodyPart;
2135
+ /**
2136
+ * The confidence that Amazon Rekognition has in the detection accuracy of the detected body part.
2137
+ */
2138
+ Confidence?: Percent;
2139
+ /**
2140
+ * An array of Personal Protective Equipment items detected around a body part.
2141
+ */
2142
+ EquipmentDetections?: EquipmentDetections;
2143
+ }
2144
+ export interface ProtectiveEquipmentPerson {
2145
+ /**
2146
+ * An array of body parts detected on a person's body (including body parts without PPE).
2147
+ */
2148
+ BodyParts?: BodyParts;
2149
+ /**
2150
+ * A bounding box around the detected person.
2151
+ */
2152
+ BoundingBox?: BoundingBox;
2153
+ /**
2154
+ * The confidence that Amazon Rekognition has that the bounding box contains a person.
2155
+ */
2156
+ Confidence?: Percent;
2157
+ /**
2158
+ * The identifier for the detected person. The identifier is only unique for a single call to DetectProtectiveEquipment.
2159
+ */
2160
+ Id?: UInteger;
2161
+ }
2162
+ export type ProtectiveEquipmentPersonIds = UInteger[];
2163
+ export type ProtectiveEquipmentPersons = ProtectiveEquipmentPerson[];
2164
+ export interface ProtectiveEquipmentSummarizationAttributes {
2165
+ /**
2166
+ * The minimum confidence level for which you want summary information. The confidence level applies to person detection, body part detection, equipment detection, and body part coverage. Amazon Rekognition doesn't return summary information with a confidence than this specified value. There isn't a default value. Specify a MinConfidence value that is between 50-100% as DetectProtectiveEquipment returns predictions only where the detection confidence is between 50% - 100%. If you specify a value that is less than 50%, the results are the same specifying a value of 50%.
2167
+ */
2168
+ MinConfidence: Percent;
2169
+ /**
2170
+ * An array of personal protective equipment types for which you want summary information. If a person is detected wearing a required requipment type, the person's ID is added to the PersonsWithRequiredEquipment array field returned in ProtectiveEquipmentSummary by DetectProtectiveEquipment.
2171
+ */
2172
+ RequiredEquipmentTypes: ProtectiveEquipmentTypes;
2173
+ }
2174
+ export interface ProtectiveEquipmentSummary {
2175
+ /**
2176
+ * An array of IDs for persons who are wearing detected personal protective equipment.
2177
+ */
2178
+ PersonsWithRequiredEquipment?: ProtectiveEquipmentPersonIds;
2179
+ /**
2180
+ * An array of IDs for persons who are not wearing all of the types of PPE specified in the RequiredEquipmentTypes field of the detected personal protective equipment.
2181
+ */
2182
+ PersonsWithoutRequiredEquipment?: ProtectiveEquipmentPersonIds;
2183
+ /**
2184
+ * An array of IDs for persons where it was not possible to determine if they are wearing personal protective equipment.
2185
+ */
2186
+ PersonsIndeterminate?: ProtectiveEquipmentPersonIds;
2187
+ }
2188
+ export type ProtectiveEquipmentType = "FACE_COVER"|"HAND_COVER"|"HEAD_COVER"|string;
2189
+ export type ProtectiveEquipmentTypes = ProtectiveEquipmentType[];
2067
2190
  export type QualityFilter = "NONE"|"AUTO"|"LOW"|"MEDIUM"|"HIGH"|string;
2068
2191
  export type Reason = "EXCEEDS_MAX_FACES"|"EXTREME_POSE"|"LOW_BRIGHTNESS"|"LOW_SHARPNESS"|"LOW_CONFIDENCE"|"SMALL_BOUNDING_BOX"|"LOW_FACE_QUALITY"|string;
2069
2192
  export type Reasons = Reason[];
package/clients/ssm.d.ts CHANGED
@@ -597,11 +597,11 @@ declare class SSM extends Service {
597
597
  */
598
598
  getParameter(callback?: (err: AWSError, data: SSM.Types.GetParameterResult) => void): Request<SSM.Types.GetParameterResult, AWSError>;
599
599
  /**
600
- * Query a list of all parameters used by the AWS account.
600
+ * Retrieves the history of all changes to a parameter.
601
601
  */
602
602
  getParameterHistory(params: SSM.Types.GetParameterHistoryRequest, callback?: (err: AWSError, data: SSM.Types.GetParameterHistoryResult) => void): Request<SSM.Types.GetParameterHistoryResult, AWSError>;
603
603
  /**
604
- * Query a list of all parameters used by the AWS account.
604
+ * Retrieves the history of all changes to a parameter.
605
605
  */
606
606
  getParameterHistory(callback?: (err: AWSError, data: SSM.Types.GetParameterHistoryResult) => void): Request<SSM.Types.GetParameterHistoryResult, AWSError>;
607
607
  /**
@@ -4586,7 +4586,7 @@ declare namespace SSM {
4586
4586
  }
4587
4587
  export interface GetParameterHistoryRequest {
4588
4588
  /**
4589
- * The name of a parameter you want to query.
4589
+ * The name of the parameter for which you want to review history.
4590
4590
  */
4591
4591
  Name: PSParameterName;
4592
4592
  /**
@@ -6644,7 +6644,7 @@ declare namespace SSM {
6644
6644
  export type ParametersFilterValueList = ParametersFilterValue[];
6645
6645
  export interface Patch {
6646
6646
  /**
6647
- * The ID of the patch (this is different than the Microsoft Knowledge Base ID).
6647
+ * The ID of the patch. Applies to Windows patches only. This ID is not the same as the Microsoft Knowledge Base ID.
6648
6648
  */
6649
6649
  Id?: PatchId;
6650
6650
  /**
@@ -6668,35 +6668,78 @@ declare namespace SSM {
6668
6668
  */
6669
6669
  Vendor?: PatchVendor;
6670
6670
  /**
6671
- * The product family the patch is applicable for (for example, Windows).
6671
+ * The product family the patch is applicable for. For example, Windows or Amazon Linux 2.
6672
6672
  */
6673
6673
  ProductFamily?: PatchProductFamily;
6674
6674
  /**
6675
- * The specific product the patch is applicable for (for example, WindowsServer2016).
6675
+ * The specific product the patch is applicable for. For example, WindowsServer2016 or AmazonLinux2018.03.
6676
6676
  */
6677
6677
  Product?: PatchProduct;
6678
6678
  /**
6679
- * The classification of the patch (for example, SecurityUpdates, Updates, CriticalUpdates).
6679
+ * The classification of the patch. For example, SecurityUpdates, Updates, or CriticalUpdates.
6680
6680
  */
6681
6681
  Classification?: PatchClassification;
6682
6682
  /**
6683
- * The severity of the patch (for example Critical, Important, Moderate).
6683
+ * The severity of the patch, such as Critical, Important, or Moderate. Applies to Windows patches only.
6684
6684
  */
6685
6685
  MsrcSeverity?: PatchMsrcSeverity;
6686
6686
  /**
6687
- * The Microsoft Knowledge Base ID of the patch.
6687
+ * The Microsoft Knowledge Base ID of the patch. Applies to Windows patches only.
6688
6688
  */
6689
6689
  KbNumber?: PatchKbNumber;
6690
6690
  /**
6691
- * The ID of the MSRC bulletin the patch is related to.
6691
+ * The ID of the Microsoft Security Response Center (MSRC) bulletin the patch is related to. For example, MS14-045. Applies to Windows patches only.
6692
6692
  */
6693
6693
  MsrcNumber?: PatchMsrcNumber;
6694
6694
  /**
6695
6695
  * The language of the patch if it's language-specific.
6696
6696
  */
6697
6697
  Language?: PatchLanguage;
6698
+ /**
6699
+ * The Advisory ID of the patch. For example, RHSA-2020:3779. Applies to Linux-based instances only.
6700
+ */
6701
+ AdvisoryIds?: PatchAdvisoryIdList;
6702
+ /**
6703
+ * The Bugzilla ID of the patch. For example, 1600646. Applies to Linux-based instances only.
6704
+ */
6705
+ BugzillaIds?: PatchBugzillaIdList;
6706
+ /**
6707
+ * The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example, CVE-1999-0067. Applies to Linux-based instances only.
6708
+ */
6709
+ CVEIds?: PatchCVEIdList;
6710
+ /**
6711
+ * The name of the patch. Applies to Linux-based instances only.
6712
+ */
6713
+ Name?: PatchName;
6714
+ /**
6715
+ * The epoch of the patch. For example in pkg-example-EE-20180914-2.2.amzn1.noarch, the epoch value is 20180914-2. Applies to Linux-based instances only.
6716
+ */
6717
+ Epoch?: PatchEpoch;
6718
+ /**
6719
+ * The version number of the patch. For example, in example-pkg-1.710.10-2.7.abcd.x86_64, the version number is indicated by -1. Applies to Linux-based instances only.
6720
+ */
6721
+ Version?: PatchVersion;
6722
+ /**
6723
+ * The particular release of a patch. For example, in pkg-example-EE-20180914-2.2.amzn1.noarch, the release is 2.amaz1. Applies to Linux-based instances only.
6724
+ */
6725
+ Release?: PatchRelease;
6726
+ /**
6727
+ * The architecture of the patch. For example, in example-pkg-0.710.10-2.7.abcd.x86_64, the architecture is indicated by x86_64. Applies to Linux-based instances only.
6728
+ */
6729
+ Arch?: PatchArch;
6730
+ /**
6731
+ * The severity level of the patch. For example, CRITICAL or MODERATE.
6732
+ */
6733
+ Severity?: PatchSeverity;
6734
+ /**
6735
+ * The source patch repository for the operating system and version, such as trusty-security for Ubuntu Server 14.04 LTE and focal-security for Ubuntu Server 20.04 LTE. Applies to Linux-based instances only.
6736
+ */
6737
+ Repository?: PatchRepository;
6698
6738
  }
6699
6739
  export type PatchAction = "ALLOW_AS_DEPENDENCY"|"BLOCK"|string;
6740
+ export type PatchAdvisoryId = string;
6741
+ export type PatchAdvisoryIdList = PatchAdvisoryId[];
6742
+ export type PatchArch = string;
6700
6743
  export interface PatchBaselineIdentity {
6701
6744
  /**
6702
6745
  * The ID of the patch baseline.
@@ -6721,6 +6764,10 @@ declare namespace SSM {
6721
6764
  }
6722
6765
  export type PatchBaselineIdentityList = PatchBaselineIdentity[];
6723
6766
  export type PatchBaselineMaxResults = number;
6767
+ export type PatchBugzillaId = string;
6768
+ export type PatchBugzillaIdList = PatchBugzillaId[];
6769
+ export type PatchCVEId = string;
6770
+ export type PatchCVEIdList = PatchCVEId[];
6724
6771
  export type PatchClassification = string;
6725
6772
  export interface PatchComplianceData {
6726
6773
  /**
@@ -6755,6 +6802,7 @@ declare namespace SSM {
6755
6802
  export type PatchContentUrl = string;
6756
6803
  export type PatchDeploymentStatus = "APPROVED"|"PENDING_APPROVAL"|"EXPLICIT_APPROVED"|"EXPLICIT_REJECTED"|string;
6757
6804
  export type PatchDescription = string;
6805
+ export type PatchEpoch = number;
6758
6806
  export type PatchFailedCount = number;
6759
6807
  export interface PatchFilter {
6760
6808
  /**
@@ -6772,7 +6820,7 @@ declare namespace SSM {
6772
6820
  */
6773
6821
  PatchFilters: PatchFilterList;
6774
6822
  }
6775
- export type PatchFilterKey = "PATCH_SET"|"PRODUCT"|"PRODUCT_FAMILY"|"CLASSIFICATION"|"MSRC_SEVERITY"|"PATCH_ID"|"SECTION"|"PRIORITY"|"SEVERITY"|string;
6823
+ export type PatchFilterKey = "ARCH"|"ADVISORY_ID"|"BUGZILLA_ID"|"PATCH_SET"|"PRODUCT"|"PRODUCT_FAMILY"|"CLASSIFICATION"|"CVE_ID"|"EPOCH"|"MSRC_SEVERITY"|"NAME"|"PATCH_ID"|"SECTION"|"PRIORITY"|"REPOSITORY"|"RELEASE"|"SEVERITY"|"SECURITY"|"VERSION"|string;
6776
6824
  export type PatchFilterList = PatchFilter[];
6777
6825
  export type PatchFilterValue = string;
6778
6826
  export type PatchFilterValueList = PatchFilterValue[];
@@ -6801,6 +6849,7 @@ declare namespace SSM {
6801
6849
  export type PatchMissingCount = number;
6802
6850
  export type PatchMsrcNumber = string;
6803
6851
  export type PatchMsrcSeverity = string;
6852
+ export type PatchName = string;
6804
6853
  export type PatchNotApplicableCount = number;
6805
6854
  export type PatchOperationType = "Scan"|"Install"|string;
6806
6855
  export interface PatchOrchestratorFilter {
@@ -6822,6 +6871,8 @@ declare namespace SSM {
6822
6871
  export type PatchPropertiesList = PatchPropertyEntry[];
6823
6872
  export type PatchProperty = "PRODUCT"|"PRODUCT_FAMILY"|"CLASSIFICATION"|"MSRC_SEVERITY"|"PRIORITY"|"SEVERITY"|string;
6824
6873
  export type PatchPropertyEntry = {[key: string]: AttributeValue};
6874
+ export type PatchRelease = string;
6875
+ export type PatchRepository = string;
6825
6876
  export interface PatchRule {
6826
6877
  /**
6827
6878
  * The patch filter group that defines the criteria for the rule.
@@ -6890,6 +6941,7 @@ declare namespace SSM {
6890
6941
  export type PatchTitle = string;
6891
6942
  export type PatchUnreportedNotApplicableCount = number;
6892
6943
  export type PatchVendor = string;
6944
+ export type PatchVersion = string;
6893
6945
  export type PingStatus = "Online"|"ConnectionLost"|"Inactive"|string;
6894
6946
  export type PlatformType = "Windows"|"Linux"|string;
6895
6947
  export type PlatformTypeList = PlatformType[];