aws-sdk 2.776.0 → 2.780.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.
@@ -78,6 +78,18 @@
78
78
  "limit_key": "MaxResults",
79
79
  "result_key": "HyperParameterTuningJobSummaries"
80
80
  },
81
+ "ListImageVersions": {
82
+ "input_token": "NextToken",
83
+ "output_token": "NextToken",
84
+ "limit_key": "MaxResults",
85
+ "result_key": "ImageVersions"
86
+ },
87
+ "ListImages": {
88
+ "input_token": "NextToken",
89
+ "output_token": "NextToken",
90
+ "limit_key": "MaxResults",
91
+ "result_key": "Images"
92
+ },
81
93
  "ListLabelingJobs": {
82
94
  "input_token": "NextToken",
83
95
  "output_token": "NextToken",
@@ -490,14 +490,17 @@
490
490
  }
491
491
  }
492
492
  }
493
- }
493
+ },
494
+ "MessageDeduplicationId": {},
495
+ "MessageGroupId": {}
494
496
  }
495
497
  },
496
498
  "output": {
497
499
  "resultWrapper": "PublishResult",
498
500
  "type": "structure",
499
501
  "members": {
500
- "MessageId": {}
502
+ "MessageId": {},
503
+ "SequenceNumber": {}
501
504
  }
502
505
  }
503
506
  },
@@ -68,11 +68,11 @@ declare class AccessAnalyzer extends Service {
68
68
  */
69
69
  getAnalyzer(callback?: (err: AWSError, data: AccessAnalyzer.Types.GetAnalyzerResponse) => void): Request<AccessAnalyzer.Types.GetAnalyzerResponse, AWSError>;
70
70
  /**
71
- * Retrieves information about an archive rule.
71
+ * Retrieves information about an archive rule. To learn about filter keys that you can use to create an archive rule, see Access Analyzer filter keys in the IAM User Guide.
72
72
  */
73
73
  getArchiveRule(params: AccessAnalyzer.Types.GetArchiveRuleRequest, callback?: (err: AWSError, data: AccessAnalyzer.Types.GetArchiveRuleResponse) => void): Request<AccessAnalyzer.Types.GetArchiveRuleResponse, AWSError>;
74
74
  /**
75
- * Retrieves information about an archive rule.
75
+ * Retrieves information about an archive rule. To learn about filter keys that you can use to create an archive rule, see Access Analyzer filter keys in the IAM User Guide.
76
76
  */
77
77
  getArchiveRule(callback?: (err: AWSError, data: AccessAnalyzer.Types.GetArchiveRuleResponse) => void): Request<AccessAnalyzer.Types.GetArchiveRuleResponse, AWSError>;
78
78
  /**
@@ -108,11 +108,11 @@ declare class AccessAnalyzer extends Service {
108
108
  */
109
109
  listArchiveRules(callback?: (err: AWSError, data: AccessAnalyzer.Types.ListArchiveRulesResponse) => void): Request<AccessAnalyzer.Types.ListArchiveRulesResponse, AWSError>;
110
110
  /**
111
- * Retrieves a list of findings generated by the specified analyzer.
111
+ * Retrieves a list of findings generated by the specified analyzer. To learn about filter keys that you can use to create an archive rule, see Access Analyzer filter keys in the IAM User Guide.
112
112
  */
113
113
  listFindings(params: AccessAnalyzer.Types.ListFindingsRequest, callback?: (err: AWSError, data: AccessAnalyzer.Types.ListFindingsResponse) => void): Request<AccessAnalyzer.Types.ListFindingsResponse, AWSError>;
114
114
  /**
115
- * Retrieves a list of findings generated by the specified analyzer.
115
+ * Retrieves a list of findings generated by the specified analyzer. To learn about filter keys that you can use to create an archive rule, see Access Analyzer filter keys in the IAM User Guide.
116
116
  */
117
117
  listFindings(callback?: (err: AWSError, data: AccessAnalyzer.Types.ListFindingsResponse) => void): Request<AccessAnalyzer.Types.ListFindingsResponse, AWSError>;
118
118
  /**
@@ -197,6 +197,7 @@ declare namespace Appflow {
197
197
  export type Boolean = boolean;
198
198
  export type BucketName = string;
199
199
  export type BucketPrefix = string;
200
+ export type ClientCredentialsArn = string;
200
201
  export type ClientId = string;
201
202
  export type ClientSecret = string;
202
203
  export type ConnectionMode = "Public"|"Private"|string;
@@ -691,6 +692,7 @@ declare namespace Appflow {
691
692
  object: Object;
692
693
  }
693
694
  export type _Date = Date;
695
+ export type DatetimeTypeFieldName = string;
694
696
  export interface DeleteConnectorProfileRequest {
695
697
  /**
696
698
  * The name of the connector profile. The name is unique for each ConnectorProfile in your account.
@@ -916,6 +918,14 @@ declare namespace Appflow {
916
918
  * Specifies if the flow run can either insert new rows in the destination field if they do not already exist, or update them if they do.
917
919
  */
918
920
  isUpsertable?: Boolean;
921
+ /**
922
+ * Specifies whether the field can be updated during an UPDATE or UPSERT write operation.
923
+ */
924
+ isUpdatable?: Boolean;
925
+ /**
926
+ * A list of supported write operations. For each write operation listed, this field can be used in idFieldNames when that write operation is present as a destination option.
927
+ */
928
+ supportedWriteOperations?: SupportedWriteOperationList;
919
929
  }
920
930
  export interface DestinationFlowConfig {
921
931
  /**
@@ -1129,7 +1139,7 @@ declare namespace Appflow {
1129
1139
  */
1130
1140
  clientId: ClientId;
1131
1141
  /**
1132
- * The client secret used by the oauth client to authenticate to the authorization server.
1142
+ * The client secret used by the OAuth client to authenticate to the authorization server.
1133
1143
  */
1134
1144
  clientSecret: ClientSecret;
1135
1145
  /**
@@ -1141,7 +1151,7 @@ declare namespace Appflow {
1141
1151
  */
1142
1152
  refreshToken?: RefreshToken;
1143
1153
  /**
1144
- * The oauth requirement needed to request security tokens from the connector endpoint.
1154
+ * The OAuth requirement needed to request security tokens from the connector endpoint.
1145
1155
  */
1146
1156
  oAuthRequest?: ConnectorOAuthRequest;
1147
1157
  }
@@ -1160,7 +1170,14 @@ declare namespace Appflow {
1160
1170
  object: Object;
1161
1171
  }
1162
1172
  export type Group = string;
1173
+ export type IdFieldNameList = Name[];
1163
1174
  export type Identifier = string;
1175
+ export interface IncrementalPullConfig {
1176
+ /**
1177
+ * A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
1178
+ */
1179
+ datetimeTypeFieldName?: DatetimeTypeFieldName;
1180
+ }
1164
1181
  export type InforNexusConnectorOperator = "PROJECTION"|"BETWEEN"|"EQUAL_TO"|"ADDITION"|"MULTIPLICATION"|"DIVISION"|"SUBTRACTION"|"MASK_ALL"|"MASK_FIRST_N"|"MASK_LAST_N"|"VALIDATE_NON_NULL"|"VALIDATE_NON_ZERO"|"VALIDATE_NON_NEGATIVE"|"VALIDATE_NUMERIC"|"NO_OP"|string;
1165
1182
  export interface InforNexusConnectorProfileCredentials {
1166
1183
  /**
@@ -1258,7 +1275,7 @@ declare namespace Appflow {
1258
1275
  */
1259
1276
  clientId: ClientId;
1260
1277
  /**
1261
- * The client secret used by the oauth client to authenticate to the authorization server.
1278
+ * The client secret used by the OAuth client to authenticate to the authorization server.
1262
1279
  */
1263
1280
  clientSecret: ClientSecret;
1264
1281
  /**
@@ -1266,7 +1283,7 @@ declare namespace Appflow {
1266
1283
  */
1267
1284
  accessToken?: AccessToken;
1268
1285
  /**
1269
- * The oauth requirement needed to request security tokens from the connector endpoint.
1286
+ * The OAuth requirement needed to request security tokens from the connector endpoint.
1270
1287
  */
1271
1288
  oAuthRequest?: ConnectorOAuthRequest;
1272
1289
  }
@@ -1407,9 +1424,13 @@ declare namespace Appflow {
1407
1424
  */
1408
1425
  refreshToken?: RefreshToken;
1409
1426
  /**
1410
- * The oauth requirement needed to request security tokens from the connector endpoint.
1427
+ * The OAuth requirement needed to request security tokens from the connector endpoint.
1411
1428
  */
1412
1429
  oAuthRequest?: ConnectorOAuthRequest;
1430
+ /**
1431
+ * The secret manager ARN, which contains the client ID and client secret of the connected app.
1432
+ */
1433
+ clientCredentialsArn?: ClientCredentialsArn;
1413
1434
  }
1414
1435
  export interface SalesforceConnectorProfileProperties {
1415
1436
  /**
@@ -1426,10 +1447,18 @@ declare namespace Appflow {
1426
1447
  * The object specified in the Salesforce flow destination.
1427
1448
  */
1428
1449
  object: Object;
1450
+ /**
1451
+ * The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
1452
+ */
1453
+ idFieldNames?: IdFieldNameList;
1429
1454
  /**
1430
1455
  * The settings that determine how Amazon AppFlow handles an error when placing data in the Salesforce destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.
1431
1456
  */
1432
1457
  errorHandlingConfig?: ErrorHandlingConfig;
1458
+ /**
1459
+ * This specifies the type of write operation to be performed in Salesforce. When the value is UPSERT, then idFieldNames is required.
1460
+ */
1461
+ writeOperationType?: WriteOperationType;
1433
1462
  }
1434
1463
  export interface SalesforceMetadata {
1435
1464
  /**
@@ -1526,7 +1555,7 @@ declare namespace Appflow {
1526
1555
  */
1527
1556
  clientId: ClientId;
1528
1557
  /**
1529
- * The client secret used by the oauth client to authenticate to the authorization server.
1558
+ * The client secret used by the OAuth client to authenticate to the authorization server.
1530
1559
  */
1531
1560
  clientSecret: ClientSecret;
1532
1561
  /**
@@ -1534,7 +1563,7 @@ declare namespace Appflow {
1534
1563
  */
1535
1564
  accessToken?: AccessToken;
1536
1565
  /**
1537
- * The oauth requirement needed to request security tokens from the connector endpoint.
1566
+ * The OAuth requirement needed to request security tokens from the connector endpoint.
1538
1567
  */
1539
1568
  oAuthRequest?: ConnectorOAuthRequest;
1540
1569
  }
@@ -1702,6 +1731,10 @@ declare namespace Appflow {
1702
1731
  * Specifies the information that is required to query a particular source connector.
1703
1732
  */
1704
1733
  sourceConnectorProperties: SourceConnectorProperties;
1734
+ /**
1735
+ * Defines the configuration for a scheduled incremental data pull. If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.
1736
+ */
1737
+ incrementalPullConfig?: IncrementalPullConfig;
1705
1738
  }
1706
1739
  export type Stage = string;
1707
1740
  export interface StartFlowRequest {
@@ -1719,6 +1752,10 @@ declare namespace Appflow {
1719
1752
  * Indicates the current status of the flow.
1720
1753
  */
1721
1754
  flowStatus?: FlowStatus;
1755
+ /**
1756
+ * Returns the internal execution ID of an on-demand flow when the flow is started. For scheduled or event-triggered flows, this value is null.
1757
+ */
1758
+ executionId?: ExecutionId;
1722
1759
  }
1723
1760
  export interface StopFlowRequest {
1724
1761
  /**
@@ -1744,6 +1781,7 @@ declare namespace Appflow {
1744
1781
  v1: FieldTypeDetails;
1745
1782
  }
1746
1783
  export type SupportedValueList = Value[];
1784
+ export type SupportedWriteOperationList = WriteOperationType[];
1747
1785
  export type TagKey = string;
1748
1786
  export type TagKeyList = TagKey[];
1749
1787
  export type TagMap = {[key: string]: TagValue};
@@ -1911,6 +1949,7 @@ declare namespace Appflow {
1911
1949
  object: Object;
1912
1950
  }
1913
1951
  export type Warehouse = string;
1952
+ export type WriteOperationType = "INSERT"|"UPSERT"|"UPDATE"|string;
1914
1953
  export type ZendeskConnectorOperator = "PROJECTION"|"GREATER_THAN"|"ADDITION"|"MULTIPLICATION"|"DIVISION"|"SUBTRACTION"|"MASK_ALL"|"MASK_FIRST_N"|"MASK_LAST_N"|"VALIDATE_NON_NULL"|"VALIDATE_NON_ZERO"|"VALIDATE_NON_NEGATIVE"|"VALIDATE_NUMERIC"|"NO_OP"|string;
1915
1954
  export interface ZendeskConnectorProfileCredentials {
1916
1955
  /**
@@ -1918,7 +1957,7 @@ declare namespace Appflow {
1918
1957
  */
1919
1958
  clientId: ClientId;
1920
1959
  /**
1921
- * The client secret used by the oauth client to authenticate to the authorization server.
1960
+ * The client secret used by the OAuth client to authenticate to the authorization server.
1922
1961
  */
1923
1962
  clientSecret: ClientSecret;
1924
1963
  /**
@@ -1926,7 +1965,7 @@ declare namespace Appflow {
1926
1965
  */
1927
1966
  accessToken?: AccessToken;
1928
1967
  /**
1929
- * The oauth requirement needed to request security tokens from the connector endpoint.
1968
+ * The OAuth requirement needed to request security tokens from the connector endpoint.
1930
1969
  */
1931
1970
  oAuthRequest?: ConnectorOAuthRequest;
1932
1971
  }
package/clients/glue.d.ts CHANGED
@@ -244,19 +244,19 @@ declare class Glue extends Service {
244
244
  */
245
245
  deleteClassifier(callback?: (err: AWSError, data: Glue.Types.DeleteClassifierResponse) => void): Request<Glue.Types.DeleteClassifierResponse, AWSError>;
246
246
  /**
247
- * Delete the partition column statistics of a column.
247
+ * Delete the partition column statistics of a column. The Identity and Access Management (IAM) permission required for this operation is DeletePartition.
248
248
  */
249
249
  deleteColumnStatisticsForPartition(params: Glue.Types.DeleteColumnStatisticsForPartitionRequest, callback?: (err: AWSError, data: Glue.Types.DeleteColumnStatisticsForPartitionResponse) => void): Request<Glue.Types.DeleteColumnStatisticsForPartitionResponse, AWSError>;
250
250
  /**
251
- * Delete the partition column statistics of a column.
251
+ * Delete the partition column statistics of a column. The Identity and Access Management (IAM) permission required for this operation is DeletePartition.
252
252
  */
253
253
  deleteColumnStatisticsForPartition(callback?: (err: AWSError, data: Glue.Types.DeleteColumnStatisticsForPartitionResponse) => void): Request<Glue.Types.DeleteColumnStatisticsForPartitionResponse, AWSError>;
254
254
  /**
255
- * Retrieves table statistics of columns.
255
+ * Retrieves table statistics of columns. The Identity and Access Management (IAM) permission required for this operation is DeleteTable.
256
256
  */
257
257
  deleteColumnStatisticsForTable(params: Glue.Types.DeleteColumnStatisticsForTableRequest, callback?: (err: AWSError, data: Glue.Types.DeleteColumnStatisticsForTableResponse) => void): Request<Glue.Types.DeleteColumnStatisticsForTableResponse, AWSError>;
258
258
  /**
259
- * Retrieves table statistics of columns.
259
+ * Retrieves table statistics of columns. The Identity and Access Management (IAM) permission required for this operation is DeleteTable.
260
260
  */
261
261
  deleteColumnStatisticsForTable(callback?: (err: AWSError, data: Glue.Types.DeleteColumnStatisticsForTableResponse) => void): Request<Glue.Types.DeleteColumnStatisticsForTableResponse, AWSError>;
262
262
  /**
@@ -396,19 +396,19 @@ declare class Glue extends Service {
396
396
  */
397
397
  getClassifiers(callback?: (err: AWSError, data: Glue.Types.GetClassifiersResponse) => void): Request<Glue.Types.GetClassifiersResponse, AWSError>;
398
398
  /**
399
- * Retrieves partition statistics of columns.
399
+ * Retrieves partition statistics of columns. The Identity and Access Management (IAM) permission required for this operation is GetPartition.
400
400
  */
401
401
  getColumnStatisticsForPartition(params: Glue.Types.GetColumnStatisticsForPartitionRequest, callback?: (err: AWSError, data: Glue.Types.GetColumnStatisticsForPartitionResponse) => void): Request<Glue.Types.GetColumnStatisticsForPartitionResponse, AWSError>;
402
402
  /**
403
- * Retrieves partition statistics of columns.
403
+ * Retrieves partition statistics of columns. The Identity and Access Management (IAM) permission required for this operation is GetPartition.
404
404
  */
405
405
  getColumnStatisticsForPartition(callback?: (err: AWSError, data: Glue.Types.GetColumnStatisticsForPartitionResponse) => void): Request<Glue.Types.GetColumnStatisticsForPartitionResponse, AWSError>;
406
406
  /**
407
- * Retrieves table statistics of columns.
407
+ * Retrieves table statistics of columns. The Identity and Access Management (IAM) permission required for this operation is GetTable.
408
408
  */
409
409
  getColumnStatisticsForTable(params: Glue.Types.GetColumnStatisticsForTableRequest, callback?: (err: AWSError, data: Glue.Types.GetColumnStatisticsForTableResponse) => void): Request<Glue.Types.GetColumnStatisticsForTableResponse, AWSError>;
410
410
  /**
411
- * Retrieves table statistics of columns.
411
+ * Retrieves table statistics of columns. The Identity and Access Management (IAM) permission required for this operation is GetTable.
412
412
  */
413
413
  getColumnStatisticsForTable(callback?: (err: AWSError, data: Glue.Types.GetColumnStatisticsForTableResponse) => void): Request<Glue.Types.GetColumnStatisticsForTableResponse, AWSError>;
414
414
  /**
@@ -980,19 +980,19 @@ declare class Glue extends Service {
980
980
  */
981
981
  updateClassifier(callback?: (err: AWSError, data: Glue.Types.UpdateClassifierResponse) => void): Request<Glue.Types.UpdateClassifierResponse, AWSError>;
982
982
  /**
983
- * Creates or updates partition statistics of columns.
983
+ * Creates or updates partition statistics of columns. The Identity and Access Management (IAM) permission required for this operation is UpdatePartition.
984
984
  */
985
985
  updateColumnStatisticsForPartition(params: Glue.Types.UpdateColumnStatisticsForPartitionRequest, callback?: (err: AWSError, data: Glue.Types.UpdateColumnStatisticsForPartitionResponse) => void): Request<Glue.Types.UpdateColumnStatisticsForPartitionResponse, AWSError>;
986
986
  /**
987
- * Creates or updates partition statistics of columns.
987
+ * Creates or updates partition statistics of columns. The Identity and Access Management (IAM) permission required for this operation is UpdatePartition.
988
988
  */
989
989
  updateColumnStatisticsForPartition(callback?: (err: AWSError, data: Glue.Types.UpdateColumnStatisticsForPartitionResponse) => void): Request<Glue.Types.UpdateColumnStatisticsForPartitionResponse, AWSError>;
990
990
  /**
991
- * Creates or updates table statistics of columns.
991
+ * Creates or updates table statistics of columns. The Identity and Access Management (IAM) permission required for this operation is UpdateTable.
992
992
  */
993
993
  updateColumnStatisticsForTable(params: Glue.Types.UpdateColumnStatisticsForTableRequest, callback?: (err: AWSError, data: Glue.Types.UpdateColumnStatisticsForTableResponse) => void): Request<Glue.Types.UpdateColumnStatisticsForTableResponse, AWSError>;
994
994
  /**
995
- * Creates or updates table statistics of columns.
995
+ * Creates or updates table statistics of columns. The Identity and Access Management (IAM) permission required for this operation is UpdateTable.
996
996
  */
997
997
  updateColumnStatisticsForTable(callback?: (err: AWSError, data: Glue.Types.UpdateColumnStatisticsForTableResponse) => void): Request<Glue.Types.UpdateColumnStatisticsForTableResponse, AWSError>;
998
998
  /**
@@ -1445,15 +1445,15 @@ declare namespace Glue {
1445
1445
  }
1446
1446
  export interface BinaryColumnStatisticsData {
1447
1447
  /**
1448
- * Maximum length of the column.
1448
+ * The size of the longest bit sequence in the column.
1449
1449
  */
1450
1450
  MaximumLength: NonNegativeLong;
1451
1451
  /**
1452
- * Average length of the column.
1452
+ * The average bit sequence length in the column.
1453
1453
  */
1454
1454
  AverageLength: NonNegativeDouble;
1455
1455
  /**
1456
- * Number of nulls.
1456
+ * The number of null values in the column.
1457
1457
  */
1458
1458
  NumberOfNulls: NonNegativeLong;
1459
1459
  }
@@ -1461,15 +1461,15 @@ declare namespace Glue {
1461
1461
  export type Boolean = boolean;
1462
1462
  export interface BooleanColumnStatisticsData {
1463
1463
  /**
1464
- * Number of true value.
1464
+ * The number of true values in the column.
1465
1465
  */
1466
1466
  NumberOfTrues: NonNegativeLong;
1467
1467
  /**
1468
- * Number of false value.
1468
+ * The number of false values in the column.
1469
1469
  */
1470
1470
  NumberOfFalses: NonNegativeLong;
1471
1471
  /**
1472
- * Number of nulls.
1472
+ * The number of null values in the column.
1473
1473
  */
1474
1474
  NumberOfNulls: NonNegativeLong;
1475
1475
  }
@@ -1642,11 +1642,11 @@ declare namespace Glue {
1642
1642
  }
1643
1643
  export interface ColumnError {
1644
1644
  /**
1645
- * The name of the column.
1645
+ * The name of the column that failed.
1646
1646
  */
1647
1647
  ColumnName?: NameString;
1648
1648
  /**
1649
- * The error message occurred during operation.
1649
+ * An error message with the reason for the failure of an operation.
1650
1650
  */
1651
1651
  Error?: ErrorDetail;
1652
1652
  }
@@ -1655,53 +1655,53 @@ declare namespace Glue {
1655
1655
  export type ColumnNameString = string;
1656
1656
  export interface ColumnStatistics {
1657
1657
  /**
1658
- * The name of the column.
1658
+ * Name of column which statistics belong to.
1659
1659
  */
1660
1660
  ColumnName: NameString;
1661
1661
  /**
1662
- * The type of the column.
1662
+ * The data type of the column.
1663
1663
  */
1664
1664
  ColumnType: TypeString;
1665
1665
  /**
1666
- * The analyzed time of the column statistics.
1666
+ * The timestamp of when column statistics were generated.
1667
1667
  */
1668
1668
  AnalyzedTime: Timestamp;
1669
1669
  /**
1670
- * The statistics of the column.
1670
+ * A ColumnStatisticData object that contains the statistics data values.
1671
1671
  */
1672
1672
  StatisticsData: ColumnStatisticsData;
1673
1673
  }
1674
1674
  export interface ColumnStatisticsData {
1675
1675
  /**
1676
- * The name of the column.
1676
+ * The type of column statistics data.
1677
1677
  */
1678
1678
  Type: ColumnStatisticsType;
1679
1679
  /**
1680
- * Boolean Column Statistics Data.
1680
+ * Boolean column statistics data.
1681
1681
  */
1682
1682
  BooleanColumnStatisticsData?: BooleanColumnStatisticsData;
1683
1683
  /**
1684
- * Date Column Statistics Data.
1684
+ * Date column statistics data.
1685
1685
  */
1686
1686
  DateColumnStatisticsData?: DateColumnStatisticsData;
1687
1687
  /**
1688
- * Decimal Column Statistics Data.
1688
+ * Decimal column statistics data.
1689
1689
  */
1690
1690
  DecimalColumnStatisticsData?: DecimalColumnStatisticsData;
1691
1691
  /**
1692
- * Double Column Statistics Data.
1692
+ * Double column statistics data.
1693
1693
  */
1694
1694
  DoubleColumnStatisticsData?: DoubleColumnStatisticsData;
1695
1695
  /**
1696
- * Long Column Statistics Data.
1696
+ * Long column statistics data.
1697
1697
  */
1698
1698
  LongColumnStatisticsData?: LongColumnStatisticsData;
1699
1699
  /**
1700
- * String Column Statistics Data.
1700
+ * String column statistics data.
1701
1701
  */
1702
1702
  StringColumnStatisticsData?: StringColumnStatisticsData;
1703
1703
  /**
1704
- * Binary Column Statistics Data.
1704
+ * Binary column statistics data.
1705
1705
  */
1706
1706
  BinaryColumnStatisticsData?: BinaryColumnStatisticsData;
1707
1707
  }
@@ -1711,7 +1711,7 @@ declare namespace Glue {
1711
1711
  */
1712
1712
  ColumnStatistics?: ColumnStatistics;
1713
1713
  /**
1714
- * The error message occurred during operation.
1714
+ * An error message with the reason for the failure of an operation.
1715
1715
  */
1716
1716
  Error?: ErrorDetail;
1717
1717
  }
@@ -2450,6 +2450,10 @@ declare namespace Glue {
2450
2450
  * The tags to use with this machine learning transform. You may use tags to limit access to the machine learning transform. For more information about tags in AWS Glue, see AWS Tags in AWS Glue in the developer guide.
2451
2451
  */
2452
2452
  Tags?: TagsMap;
2453
+ /**
2454
+ * The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.
2455
+ */
2456
+ TransformEncryption?: TransformEncryption;
2453
2457
  }
2454
2458
  export interface CreateMLTransformResponse {
2455
2459
  /**
@@ -2784,37 +2788,37 @@ declare namespace Glue {
2784
2788
  export type DatabaseName = string;
2785
2789
  export interface DateColumnStatisticsData {
2786
2790
  /**
2787
- * Minimum value of the column.
2791
+ * The lowest value in the column.
2788
2792
  */
2789
2793
  MinimumValue?: Timestamp;
2790
2794
  /**
2791
- * Maximum value of the column.
2795
+ * The highest value in the column.
2792
2796
  */
2793
2797
  MaximumValue?: Timestamp;
2794
2798
  /**
2795
- * Number of nulls.
2799
+ * The number of null values in the column.
2796
2800
  */
2797
2801
  NumberOfNulls: NonNegativeLong;
2798
2802
  /**
2799
- * Number of distinct values.
2803
+ * The number of distinct values in a column.
2800
2804
  */
2801
2805
  NumberOfDistinctValues: NonNegativeLong;
2802
2806
  }
2803
2807
  export interface DecimalColumnStatisticsData {
2804
2808
  /**
2805
- * Minimum value of the column.
2809
+ * The lowest value in the column.
2806
2810
  */
2807
2811
  MinimumValue?: DecimalNumber;
2808
2812
  /**
2809
- * Maximum value of the column.
2813
+ * The highest value in the column.
2810
2814
  */
2811
2815
  MaximumValue?: DecimalNumber;
2812
2816
  /**
2813
- * Number of nulls.
2817
+ * The number of null values in the column.
2814
2818
  */
2815
2819
  NumberOfNulls: NonNegativeLong;
2816
2820
  /**
2817
- * Number of distinct values.
2821
+ * The number of distinct values in a column.
2818
2822
  */
2819
2823
  NumberOfDistinctValues: NonNegativeLong;
2820
2824
  }
@@ -3182,19 +3186,19 @@ declare namespace Glue {
3182
3186
  export type Double = number;
3183
3187
  export interface DoubleColumnStatisticsData {
3184
3188
  /**
3185
- * Minimum value of the column.
3189
+ * The lowest value in the column.
3186
3190
  */
3187
3191
  MinimumValue?: Double;
3188
3192
  /**
3189
- * Maximum value of the column.
3193
+ * The highest value in the column.
3190
3194
  */
3191
3195
  MaximumValue?: Double;
3192
3196
  /**
3193
- * Number of nulls.
3197
+ * The number of null values in the column.
3194
3198
  */
3195
3199
  NumberOfNulls: NonNegativeLong;
3196
3200
  /**
3197
- * Number of distinct values.
3201
+ * The number of distinct values in a column.
3198
3202
  */
3199
3203
  NumberOfDistinctValues: NonNegativeLong;
3200
3204
  }
@@ -3927,6 +3931,10 @@ declare namespace Glue {
3927
3931
  * The maximum number of times to retry a task for this transform after a task run fails.
3928
3932
  */
3929
3933
  MaxRetries?: NullableInteger;
3934
+ /**
3935
+ * The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.
3936
+ */
3937
+ TransformEncryption?: TransformEncryption;
3930
3938
  }
3931
3939
  export interface GetMLTransformsRequest {
3932
3940
  /**
@@ -5134,19 +5142,19 @@ declare namespace Glue {
5134
5142
  export type Long = number;
5135
5143
  export interface LongColumnStatisticsData {
5136
5144
  /**
5137
- * Minimum value of the column.
5145
+ * The lowest value in the column.
5138
5146
  */
5139
5147
  MinimumValue?: Long;
5140
5148
  /**
5141
- * Maximum value of the column.
5149
+ * The highest value in the column.
5142
5150
  */
5143
5151
  MaximumValue?: Long;
5144
5152
  /**
5145
- * Number of nulls.
5153
+ * The number of null values in the column.
5146
5154
  */
5147
5155
  NumberOfNulls: NonNegativeLong;
5148
5156
  /**
5149
- * Number of distinct values.
5157
+ * The number of distinct values in a column.
5150
5158
  */
5151
5159
  NumberOfDistinctValues: NonNegativeLong;
5152
5160
  }
@@ -5223,7 +5231,22 @@ declare namespace Glue {
5223
5231
  * The maximum number of times to retry after an MLTaskRun of the machine learning transform fails.
5224
5232
  */
5225
5233
  MaxRetries?: NullableInteger;
5234
+ /**
5235
+ * The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.
5236
+ */
5237
+ TransformEncryption?: TransformEncryption;
5238
+ }
5239
+ export interface MLUserDataEncryption {
5240
+ /**
5241
+ * The encryption mode applied to user data. Valid values are: DISABLED: encryption is disabled SSEKMS: use of server-side encryption with AWS Key Management Service (SSE-KMS) for user data stored in Amazon S3.
5242
+ */
5243
+ MlUserDataEncryptionMode: MLUserDataEncryptionModeString;
5244
+ /**
5245
+ * The ID for the customer-provided KMS key.
5246
+ */
5247
+ KmsKeyId?: NameString;
5226
5248
  }
5249
+ export type MLUserDataEncryptionModeString = "DISABLED"|"SSE-KMS"|string;
5227
5250
  export type MapValue = {[key: string]: GenericString};
5228
5251
  export interface MappingEntry {
5229
5252
  /**
@@ -6044,19 +6067,19 @@ declare namespace Glue {
6044
6067
  }
6045
6068
  export interface StringColumnStatisticsData {
6046
6069
  /**
6047
- * Maximum value of the column.
6070
+ * The size of the longest string in the column.
6048
6071
  */
6049
6072
  MaximumLength: NonNegativeLong;
6050
6073
  /**
6051
- * Average value of the column.
6074
+ * The average string length in the column.
6052
6075
  */
6053
6076
  AverageLength: NonNegativeDouble;
6054
6077
  /**
6055
- * Number of nulls.
6078
+ * The number of null values in the column.
6056
6079
  */
6057
6080
  NumberOfNulls: NonNegativeLong;
6058
6081
  /**
6059
- * Number of distinct values.
6082
+ * The number of distinct values in a column.
6060
6083
  */
6061
6084
  NumberOfDistinctValues: NonNegativeLong;
6062
6085
  }
@@ -6364,6 +6387,16 @@ declare namespace Glue {
6364
6387
  export type TimestampValue = Date;
6365
6388
  export type Token = string;
6366
6389
  export type TotalSegmentsInteger = number;
6390
+ export interface TransformEncryption {
6391
+ /**
6392
+ * An MLUserDataEncryption object containing the encryption mode and customer-provided KMS key ID.
6393
+ */
6394
+ MlUserDataEncryption?: MLUserDataEncryption;
6395
+ /**
6396
+ * The name of the security configuration.
6397
+ */
6398
+ TaskRunSecurityConfigurationName?: NameString;
6399
+ }
6367
6400
  export interface TransformFilterCriteria {
6368
6401
  /**
6369
6402
  * A unique transform name that is used to filter the machine learning transforms.