aws-sdk 2.1635.0 → 2.1637.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.
- package/README.md +1 -1
- package/apis/account-2021-02-01.min.json +101 -19
- package/apis/auditmanager-2017-07-25.min.json +57 -38
- package/apis/b2bi-2022-06-23.min.json +8 -1
- package/apis/codepipeline-2015-07-09.min.json +4 -1
- package/apis/firehose-2015-08-04.min.json +205 -159
- package/apis/fsx-2018-03-01.min.json +199 -163
- package/apis/glue-2017-03-31.min.json +176 -143
- package/apis/iotwireless-2020-11-22.min.json +3 -0
- package/apis/location-2020-11-19.min.json +1036 -754
- package/apis/location-2020-11-19.paginators.json +6 -0
- package/apis/sagemaker-2017-07-24.min.json +731 -730
- package/apis/sns-2010-03-31.min.json +7 -1
- package/apis/sqs-2012-11-05.min.json +3 -0
- package/apis/storagegateway-2013-06-30.min.json +30 -14
- package/apis/verifiedpermissions-2021-12-01.min.json +321 -84
- package/clients/account.d.ts +84 -9
- package/clients/auditmanager.d.ts +45 -33
- package/clients/b2bi.d.ts +1 -1
- package/clients/codepipeline.d.ts +4 -4
- package/clients/firehose.d.ts +73 -10
- package/clients/fsx.d.ts +62 -18
- package/clients/glue.d.ts +58 -0
- package/clients/iotwireless.d.ts +1 -1
- package/clients/location.d.ts +981 -677
- package/clients/sagemaker.d.ts +9 -4
- package/clients/sns.d.ts +7 -7
- package/clients/sqs.d.ts +5 -5
- package/clients/storagegateway.d.ts +31 -16
- package/clients/verifiedpermissions.d.ts +260 -8
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +16 -16
- package/dist/aws-sdk.js +1278 -916
- package/dist/aws-sdk.min.js +61 -61
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/firehose.d.ts
CHANGED
@@ -68,11 +68,11 @@ declare class Firehose extends Service {
|
|
68
68
|
*/
|
69
69
|
putRecordBatch(callback?: (err: AWSError, data: Firehose.Types.PutRecordBatchOutput) => void): Request<Firehose.Types.PutRecordBatchOutput, AWSError>;
|
70
70
|
/**
|
71
|
-
* Enables server-side encryption (SSE) for the delivery stream. This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to ENABLING, and then to ENABLED. The encryption status of a delivery stream is the Status property in DeliveryStreamEncryptionConfiguration. If the operation fails, the encryption status changes to ENABLING_FAILED. You can continue to read and write data to your delivery stream while the encryption status is ENABLING, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to ENABLED before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted, respectively. To check the encryption status of a delivery stream, use DescribeDeliveryStream. Even if encryption is currently enabled for a delivery stream, you can still invoke this operation on it to change the ARN of the CMK or both its type and ARN. If you invoke this method to change the CMK, and the old CMK is of type CUSTOMER_MANAGED_CMK, Firehose schedules the grant it had on the old CMK for retirement. If the new CMK is of type CUSTOMER_MANAGED_CMK, Firehose creates a grant that enables it to use the new CMK to encrypt and decrypt data and to manage the grant. For the KMS grant creation to be successful, Firehose
|
71
|
+
* Enables server-side encryption (SSE) for the delivery stream. This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to ENABLING, and then to ENABLED. The encryption status of a delivery stream is the Status property in DeliveryStreamEncryptionConfiguration. If the operation fails, the encryption status changes to ENABLING_FAILED. You can continue to read and write data to your delivery stream while the encryption status is ENABLING, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to ENABLED before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted, respectively. To check the encryption status of a delivery stream, use DescribeDeliveryStream. Even if encryption is currently enabled for a delivery stream, you can still invoke this operation on it to change the ARN of the CMK or both its type and ARN. If you invoke this method to change the CMK, and the old CMK is of type CUSTOMER_MANAGED_CMK, Firehose schedules the grant it had on the old CMK for retirement. If the new CMK is of type CUSTOMER_MANAGED_CMK, Firehose creates a grant that enables it to use the new CMK to encrypt and decrypt data and to manage the grant. For the KMS grant creation to be successful, the Firehose API operations StartDeliveryStreamEncryption and CreateDeliveryStream should not be called with session credentials that are more than 6 hours old. If a delivery stream already has encryption enabled and then you invoke this operation to change the ARN of the CMK or both its type and ARN and you get ENABLING_FAILED, this only means that the attempt to change the CMK failed. In this case, encryption remains enabled with the old CMK. If the encryption status of your delivery stream is ENABLING_FAILED, you can invoke this operation again with a valid CMK. The CMK must be enabled and the key policy mustn't explicitly deny the permission for Firehose to invoke KMS encrypt and decrypt operations. You can enable SSE for a delivery stream only if it's a delivery stream that uses DirectPut as its source. The StartDeliveryStreamEncryption and StopDeliveryStreamEncryption operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call StartDeliveryStreamEncryption 13 times and StopDeliveryStreamEncryption 12 times for the same delivery stream in a 24-hour period.
|
72
72
|
*/
|
73
73
|
startDeliveryStreamEncryption(params: Firehose.Types.StartDeliveryStreamEncryptionInput, callback?: (err: AWSError, data: Firehose.Types.StartDeliveryStreamEncryptionOutput) => void): Request<Firehose.Types.StartDeliveryStreamEncryptionOutput, AWSError>;
|
74
74
|
/**
|
75
|
-
* Enables server-side encryption (SSE) for the delivery stream. This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to ENABLING, and then to ENABLED. The encryption status of a delivery stream is the Status property in DeliveryStreamEncryptionConfiguration. If the operation fails, the encryption status changes to ENABLING_FAILED. You can continue to read and write data to your delivery stream while the encryption status is ENABLING, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to ENABLED before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted, respectively. To check the encryption status of a delivery stream, use DescribeDeliveryStream. Even if encryption is currently enabled for a delivery stream, you can still invoke this operation on it to change the ARN of the CMK or both its type and ARN. If you invoke this method to change the CMK, and the old CMK is of type CUSTOMER_MANAGED_CMK, Firehose schedules the grant it had on the old CMK for retirement. If the new CMK is of type CUSTOMER_MANAGED_CMK, Firehose creates a grant that enables it to use the new CMK to encrypt and decrypt data and to manage the grant. For the KMS grant creation to be successful, Firehose
|
75
|
+
* Enables server-side encryption (SSE) for the delivery stream. This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to ENABLING, and then to ENABLED. The encryption status of a delivery stream is the Status property in DeliveryStreamEncryptionConfiguration. If the operation fails, the encryption status changes to ENABLING_FAILED. You can continue to read and write data to your delivery stream while the encryption status is ENABLING, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to ENABLED before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted, respectively. To check the encryption status of a delivery stream, use DescribeDeliveryStream. Even if encryption is currently enabled for a delivery stream, you can still invoke this operation on it to change the ARN of the CMK or both its type and ARN. If you invoke this method to change the CMK, and the old CMK is of type CUSTOMER_MANAGED_CMK, Firehose schedules the grant it had on the old CMK for retirement. If the new CMK is of type CUSTOMER_MANAGED_CMK, Firehose creates a grant that enables it to use the new CMK to encrypt and decrypt data and to manage the grant. For the KMS grant creation to be successful, the Firehose API operations StartDeliveryStreamEncryption and CreateDeliveryStream should not be called with session credentials that are more than 6 hours old. If a delivery stream already has encryption enabled and then you invoke this operation to change the ARN of the CMK or both its type and ARN and you get ENABLING_FAILED, this only means that the attempt to change the CMK failed. In this case, encryption remains enabled with the old CMK. If the encryption status of your delivery stream is ENABLING_FAILED, you can invoke this operation again with a valid CMK. The CMK must be enabled and the key policy mustn't explicitly deny the permission for Firehose to invoke KMS encrypt and decrypt operations. You can enable SSE for a delivery stream only if it's a delivery stream that uses DirectPut as its source. The StartDeliveryStreamEncryption and StopDeliveryStreamEncryption operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call StartDeliveryStreamEncryption 13 times and StopDeliveryStreamEncryption 12 times for the same delivery stream in a 24-hour period.
|
76
76
|
*/
|
77
77
|
startDeliveryStreamEncryption(callback?: (err: AWSError, data: Firehose.Types.StartDeliveryStreamEncryptionOutput) => void): Request<Firehose.Types.StartDeliveryStreamEncryptionOutput, AWSError>;
|
78
78
|
/**
|
@@ -1182,7 +1182,7 @@ declare namespace Firehose {
|
|
1182
1182
|
BufferingHints?: HttpEndpointBufferingHints;
|
1183
1183
|
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
1184
1184
|
/**
|
1185
|
-
* The configuration of the
|
1185
|
+
* The configuration of the request sent to the HTTP endpoint that is specified as the destination.
|
1186
1186
|
*/
|
1187
1187
|
RequestConfiguration?: HttpEndpointRequestConfiguration;
|
1188
1188
|
ProcessingConfiguration?: ProcessingConfiguration;
|
@@ -1199,6 +1199,10 @@ declare namespace Firehose {
|
|
1199
1199
|
*/
|
1200
1200
|
S3BackupMode?: HttpEndpointS3BackupMode;
|
1201
1201
|
S3Configuration: S3DestinationConfiguration;
|
1202
|
+
/**
|
1203
|
+
* The configuration that defines how you access secrets for HTTP Endpoint destination.
|
1204
|
+
*/
|
1205
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
1202
1206
|
}
|
1203
1207
|
export interface HttpEndpointDestinationDescription {
|
1204
1208
|
/**
|
@@ -1228,6 +1232,10 @@ declare namespace Firehose {
|
|
1228
1232
|
*/
|
1229
1233
|
S3BackupMode?: HttpEndpointS3BackupMode;
|
1230
1234
|
S3DestinationDescription?: S3DestinationDescription;
|
1235
|
+
/**
|
1236
|
+
* The configuration that defines how you access secrets for HTTP Endpoint destination.
|
1237
|
+
*/
|
1238
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
1231
1239
|
}
|
1232
1240
|
export interface HttpEndpointDestinationUpdate {
|
1233
1241
|
/**
|
@@ -1257,6 +1265,10 @@ declare namespace Firehose {
|
|
1257
1265
|
*/
|
1258
1266
|
S3BackupMode?: HttpEndpointS3BackupMode;
|
1259
1267
|
S3Update?: S3DestinationUpdate;
|
1268
|
+
/**
|
1269
|
+
* The configuration that defines how you access secrets for HTTP Endpoint destination.
|
1270
|
+
*/
|
1271
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
1260
1272
|
}
|
1261
1273
|
export type HttpEndpointName = string;
|
1262
1274
|
export interface HttpEndpointRequestConfiguration {
|
@@ -1625,11 +1637,11 @@ declare namespace Firehose {
|
|
1625
1637
|
/**
|
1626
1638
|
* The name of the user.
|
1627
1639
|
*/
|
1628
|
-
Username
|
1640
|
+
Username?: Username;
|
1629
1641
|
/**
|
1630
1642
|
* The user password.
|
1631
1643
|
*/
|
1632
|
-
Password
|
1644
|
+
Password?: Password;
|
1633
1645
|
/**
|
1634
1646
|
* The retry behavior in case Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).
|
1635
1647
|
*/
|
@@ -1654,6 +1666,10 @@ declare namespace Firehose {
|
|
1654
1666
|
* The CloudWatch logging options for your delivery stream.
|
1655
1667
|
*/
|
1656
1668
|
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
1669
|
+
/**
|
1670
|
+
* The configuration that defines how you access secrets for Amazon Redshift.
|
1671
|
+
*/
|
1672
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
1657
1673
|
}
|
1658
1674
|
export interface RedshiftDestinationDescription {
|
1659
1675
|
/**
|
@@ -1671,7 +1687,7 @@ declare namespace Firehose {
|
|
1671
1687
|
/**
|
1672
1688
|
* The name of the user.
|
1673
1689
|
*/
|
1674
|
-
Username
|
1690
|
+
Username?: Username;
|
1675
1691
|
/**
|
1676
1692
|
* The retry behavior in case Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).
|
1677
1693
|
*/
|
@@ -1696,6 +1712,10 @@ declare namespace Firehose {
|
|
1696
1712
|
* The Amazon CloudWatch logging options for your delivery stream.
|
1697
1713
|
*/
|
1698
1714
|
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
1715
|
+
/**
|
1716
|
+
* The configuration that defines how you access secrets for Amazon Redshift.
|
1717
|
+
*/
|
1718
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
1699
1719
|
}
|
1700
1720
|
export interface RedshiftDestinationUpdate {
|
1701
1721
|
/**
|
@@ -1742,6 +1762,10 @@ declare namespace Firehose {
|
|
1742
1762
|
* The Amazon CloudWatch logging options for your delivery stream.
|
1743
1763
|
*/
|
1744
1764
|
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
1765
|
+
/**
|
1766
|
+
* The configuration that defines how you access secrets for Amazon Redshift.
|
1767
|
+
*/
|
1768
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
1745
1769
|
}
|
1746
1770
|
export type RedshiftRetryDurationInSeconds = number;
|
1747
1771
|
export interface RedshiftRetryOptions {
|
@@ -1888,6 +1912,21 @@ declare namespace Firehose {
|
|
1888
1912
|
*/
|
1889
1913
|
VersionId?: NonEmptyStringWithoutWhitespace;
|
1890
1914
|
}
|
1915
|
+
export type SecretARN = string;
|
1916
|
+
export interface SecretsManagerConfiguration {
|
1917
|
+
/**
|
1918
|
+
* The ARN of the secret that stores your credentials. It must be in the same region as the Firehose stream and the role. The secret ARN can reside in a different account than the delivery stream and role as Firehose supports cross-account secret access. This parameter is required when Enabled is set to True.
|
1919
|
+
*/
|
1920
|
+
SecretARN?: SecretARN;
|
1921
|
+
/**
|
1922
|
+
* Specifies the role that Firehose assumes when calling the Secrets Manager API operation. When you provide the role, it overrides any destination specific role defined in the destination configuration. If you do not provide the then we use the destination specific role. This parameter is required for Splunk.
|
1923
|
+
*/
|
1924
|
+
RoleARN?: RoleARN;
|
1925
|
+
/**
|
1926
|
+
* Specifies whether you want to use the the secrets manager feature. When set as True the secrets manager configuration overwrites the existing secrets in the destination configuration. When it's set to False Firehose falls back to the credentials in the destination configuration.
|
1927
|
+
*/
|
1928
|
+
Enabled: BooleanObject;
|
1929
|
+
}
|
1891
1930
|
export type SecurityGroupIdList = NonEmptyStringWithoutWhitespace[];
|
1892
1931
|
export interface Serializer {
|
1893
1932
|
/**
|
@@ -1912,7 +1951,7 @@ declare namespace Firehose {
|
|
1912
1951
|
/**
|
1913
1952
|
* The private key used to encrypt your Snowflake client. For information, see Using Key Pair Authentication & Key Rotation.
|
1914
1953
|
*/
|
1915
|
-
PrivateKey
|
1954
|
+
PrivateKey?: SnowflakePrivateKey;
|
1916
1955
|
/**
|
1917
1956
|
* Passphrase to decrypt the private key when the key is encrypted. For information, see Using Key Pair Authentication & Key Rotation.
|
1918
1957
|
*/
|
@@ -1920,7 +1959,7 @@ declare namespace Firehose {
|
|
1920
1959
|
/**
|
1921
1960
|
* User login name for the Snowflake account.
|
1922
1961
|
*/
|
1923
|
-
User
|
1962
|
+
User?: SnowflakeUser;
|
1924
1963
|
/**
|
1925
1964
|
* All data in Snowflake is maintained in databases.
|
1926
1965
|
*/
|
@@ -1968,6 +2007,10 @@ declare namespace Firehose {
|
|
1968
2007
|
*/
|
1969
2008
|
S3BackupMode?: SnowflakeS3BackupMode;
|
1970
2009
|
S3Configuration: S3DestinationConfiguration;
|
2010
|
+
/**
|
2011
|
+
* The configuration that defines how you access secrets for Snowflake.
|
2012
|
+
*/
|
2013
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
1971
2014
|
}
|
1972
2015
|
export interface SnowflakeDestinationDescription {
|
1973
2016
|
/**
|
@@ -2025,6 +2068,10 @@ declare namespace Firehose {
|
|
2025
2068
|
*/
|
2026
2069
|
S3BackupMode?: SnowflakeS3BackupMode;
|
2027
2070
|
S3DestinationDescription?: S3DestinationDescription;
|
2071
|
+
/**
|
2072
|
+
* The configuration that defines how you access secrets for Snowflake.
|
2073
|
+
*/
|
2074
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
2028
2075
|
}
|
2029
2076
|
export interface SnowflakeDestinationUpdate {
|
2030
2077
|
/**
|
@@ -2086,6 +2133,10 @@ declare namespace Firehose {
|
|
2086
2133
|
*/
|
2087
2134
|
S3BackupMode?: SnowflakeS3BackupMode;
|
2088
2135
|
S3Update?: S3DestinationUpdate;
|
2136
|
+
/**
|
2137
|
+
* Describes the Secrets Manager configuration in Snowflake.
|
2138
|
+
*/
|
2139
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
2089
2140
|
}
|
2090
2141
|
export type SnowflakeKeyPassphrase = string;
|
2091
2142
|
export type SnowflakeMetaDataColumnName = string;
|
@@ -2153,7 +2204,7 @@ declare namespace Firehose {
|
|
2153
2204
|
/**
|
2154
2205
|
* This is a GUID that you obtain from your Splunk cluster when you create a new HEC endpoint.
|
2155
2206
|
*/
|
2156
|
-
HECToken
|
2207
|
+
HECToken?: HECToken;
|
2157
2208
|
/**
|
2158
2209
|
* The amount of time that Firehose waits to receive an acknowledgment from Splunk after it sends it data. At the end of the timeout period, Firehose either tries to send the data again or considers it an error, based on your retry settings.
|
2159
2210
|
*/
|
@@ -2182,6 +2233,10 @@ declare namespace Firehose {
|
|
2182
2233
|
* The buffering options. If no value is specified, the default values for Splunk are used.
|
2183
2234
|
*/
|
2184
2235
|
BufferingHints?: SplunkBufferingHints;
|
2236
|
+
/**
|
2237
|
+
* The configuration that defines how you access secrets for Splunk.
|
2238
|
+
*/
|
2239
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
2185
2240
|
}
|
2186
2241
|
export interface SplunkDestinationDescription {
|
2187
2242
|
/**
|
@@ -2224,6 +2279,10 @@ declare namespace Firehose {
|
|
2224
2279
|
* The buffering options. If no value is specified, the default values for Splunk are used.
|
2225
2280
|
*/
|
2226
2281
|
BufferingHints?: SplunkBufferingHints;
|
2282
|
+
/**
|
2283
|
+
* The configuration that defines how you access secrets for Splunk.
|
2284
|
+
*/
|
2285
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
2227
2286
|
}
|
2228
2287
|
export interface SplunkDestinationUpdate {
|
2229
2288
|
/**
|
@@ -2266,6 +2325,10 @@ declare namespace Firehose {
|
|
2266
2325
|
* The buffering options. If no value is specified, the default values for Splunk are used.
|
2267
2326
|
*/
|
2268
2327
|
BufferingHints?: SplunkBufferingHints;
|
2328
|
+
/**
|
2329
|
+
* The configuration that defines how you access secrets for Splunk.
|
2330
|
+
*/
|
2331
|
+
SecretsManagerConfiguration?: SecretsManagerConfiguration;
|
2269
2332
|
}
|
2270
2333
|
export type SplunkRetryDurationInSeconds = number;
|
2271
2334
|
export interface SplunkRetryOptions {
|
@@ -2382,7 +2445,7 @@ declare namespace Firehose {
|
|
2382
2445
|
*/
|
2383
2446
|
AmazonOpenSearchServerlessDestinationUpdate?: AmazonOpenSearchServerlessDestinationUpdate;
|
2384
2447
|
/**
|
2385
|
-
* Update to the Snowflake destination
|
2448
|
+
* Update to the Snowflake destination configuration settings.
|
2386
2449
|
*/
|
2387
2450
|
SnowflakeDestinationUpdate?: SnowflakeDestinationUpdate;
|
2388
2451
|
}
|
package/clients/fsx.d.ts
CHANGED
@@ -76,11 +76,11 @@ declare class FSx extends Service {
|
|
76
76
|
*/
|
77
77
|
createFileCache(callback?: (err: AWSError, data: FSx.Types.CreateFileCacheResponse) => void): Request<FSx.Types.CreateFileCacheResponse, AWSError>;
|
78
78
|
/**
|
79
|
-
* Creates a new, empty Amazon FSx file system. You can create the following supported Amazon FSx file systems using the CreateFileSystem API operation: Amazon FSx for Lustre Amazon FSx for NetApp ONTAP Amazon FSx for OpenZFS Amazon FSx for Windows File Server This operation requires a client request token in the request that Amazon FSx uses to ensure idempotent creation. This means that calling the operation multiple times with the same client request token has no effect. By using the idempotent operation, you can retry a CreateFileSystem operation without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same. If a file system with the specified client request token exists and the parameters match, CreateFileSystem returns the description of the existing file system. If a file system with the specified client request token exists and the parameters don't match, this call returns IncompatibleParameterError. If a file system with the specified client request token doesn't exist, CreateFileSystem does the following:
|
79
|
+
* Creates a new, empty Amazon FSx file system. You can create the following supported Amazon FSx file systems using the CreateFileSystem API operation: Amazon FSx for Lustre Amazon FSx for NetApp ONTAP Amazon FSx for OpenZFS Amazon FSx for Windows File Server This operation requires a client request token in the request that Amazon FSx uses to ensure idempotent creation. This means that calling the operation multiple times with the same client request token has no effect. By using the idempotent operation, you can retry a CreateFileSystem operation without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same. If a file system with the specified client request token exists and the parameters match, CreateFileSystem returns the description of the existing file system. If a file system with the specified client request token exists and the parameters don't match, this call returns IncompatibleParameterError. If a file system with the specified client request token doesn't exist, CreateFileSystem does the following: Creates a new, empty Amazon FSx file system with an assigned ID, and an initial lifecycle state of CREATING. Returns the description of the file system in JSON format. The CreateFileSystem call returns while the file system's lifecycle state is still CREATING. You can check the file-system creation status by calling the DescribeFileSystems operation, which returns the file system state along with other information.
|
80
80
|
*/
|
81
81
|
createFileSystem(params: FSx.Types.CreateFileSystemRequest, callback?: (err: AWSError, data: FSx.Types.CreateFileSystemResponse) => void): Request<FSx.Types.CreateFileSystemResponse, AWSError>;
|
82
82
|
/**
|
83
|
-
* Creates a new, empty Amazon FSx file system. You can create the following supported Amazon FSx file systems using the CreateFileSystem API operation: Amazon FSx for Lustre Amazon FSx for NetApp ONTAP Amazon FSx for OpenZFS Amazon FSx for Windows File Server This operation requires a client request token in the request that Amazon FSx uses to ensure idempotent creation. This means that calling the operation multiple times with the same client request token has no effect. By using the idempotent operation, you can retry a CreateFileSystem operation without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same. If a file system with the specified client request token exists and the parameters match, CreateFileSystem returns the description of the existing file system. If a file system with the specified client request token exists and the parameters don't match, this call returns IncompatibleParameterError. If a file system with the specified client request token doesn't exist, CreateFileSystem does the following:
|
83
|
+
* Creates a new, empty Amazon FSx file system. You can create the following supported Amazon FSx file systems using the CreateFileSystem API operation: Amazon FSx for Lustre Amazon FSx for NetApp ONTAP Amazon FSx for OpenZFS Amazon FSx for Windows File Server This operation requires a client request token in the request that Amazon FSx uses to ensure idempotent creation. This means that calling the operation multiple times with the same client request token has no effect. By using the idempotent operation, you can retry a CreateFileSystem operation without the risk of creating an extra file system. This approach can be useful when an initial call fails in a way that makes it unclear whether a file system was created. Examples are if a transport level timeout occurred, or your connection was reset. If you use the same client request token and the initial call created a file system, the client receives success as long as the parameters are the same. If a file system with the specified client request token exists and the parameters match, CreateFileSystem returns the description of the existing file system. If a file system with the specified client request token exists and the parameters don't match, this call returns IncompatibleParameterError. If a file system with the specified client request token doesn't exist, CreateFileSystem does the following: Creates a new, empty Amazon FSx file system with an assigned ID, and an initial lifecycle state of CREATING. Returns the description of the file system in JSON format. The CreateFileSystem call returns while the file system's lifecycle state is still CREATING. You can check the file-system creation status by calling the DescribeFileSystems operation, which returns the file system state along with other information.
|
84
84
|
*/
|
85
85
|
createFileSystem(callback?: (err: AWSError, data: FSx.Types.CreateFileSystemResponse) => void): Request<FSx.Types.CreateFileSystemResponse, AWSError>;
|
86
86
|
/**
|
@@ -148,11 +148,11 @@ declare class FSx extends Service {
|
|
148
148
|
*/
|
149
149
|
deleteFileCache(callback?: (err: AWSError, data: FSx.Types.DeleteFileCacheResponse) => void): Request<FSx.Types.DeleteFileCacheResponse, AWSError>;
|
150
150
|
/**
|
151
|
-
* Deletes a file system. After deletion, the file system no longer exists, and its data is gone. Any existing automatic backups and snapshots are also deleted. To delete an Amazon FSx for NetApp ONTAP file system, first delete all the volumes and storage virtual machines (SVMs) on the file system. Then provide a FileSystemId value to the
|
151
|
+
* Deletes a file system. After deletion, the file system no longer exists, and its data is gone. Any existing automatic backups and snapshots are also deleted. To delete an Amazon FSx for NetApp ONTAP file system, first delete all the volumes and storage virtual machines (SVMs) on the file system. Then provide a FileSystemId value to the DeleteFileSystem operation. By default, when you delete an Amazon FSx for Windows File Server file system, a final backup is created upon deletion. This final backup isn't subject to the file system's retention policy, and must be manually deleted. To delete an Amazon FSx for Lustre file system, first unmount it from every connected Amazon EC2 instance, then provide a FileSystemId value to the DeleteFileSystem operation. By default, Amazon FSx will not take a final backup when the DeleteFileSystem operation is invoked. On file systems not linked to an Amazon S3 bucket, set SkipFinalBackup to false to take a final backup of the file system you are deleting. Backups cannot be enabled on S3-linked file systems. To ensure all of your data is written back to S3 before deleting your file system, you can either monitor for the AgeOfOldestQueuedMessage metric to be zero (if using automatic export) or you can run an export data repository task. If you have automatic export enabled and want to use an export data repository task, you have to disable automatic export before executing the export data repository task. The DeleteFileSystem operation returns while the file system has the DELETING status. You can check the file system deletion status by calling the DescribeFileSystems operation, which returns a list of file systems in your account. If you pass the file system ID for a deleted file system, the DescribeFileSystems operation returns a FileSystemNotFound error. If a data repository task is in a PENDING or EXECUTING state, deleting an Amazon FSx for Lustre file system will fail with an HTTP status code 400 (Bad Request). The data in a deleted file system is also deleted and can't be recovered by any means.
|
152
152
|
*/
|
153
153
|
deleteFileSystem(params: FSx.Types.DeleteFileSystemRequest, callback?: (err: AWSError, data: FSx.Types.DeleteFileSystemResponse) => void): Request<FSx.Types.DeleteFileSystemResponse, AWSError>;
|
154
154
|
/**
|
155
|
-
* Deletes a file system. After deletion, the file system no longer exists, and its data is gone. Any existing automatic backups and snapshots are also deleted. To delete an Amazon FSx for NetApp ONTAP file system, first delete all the volumes and storage virtual machines (SVMs) on the file system. Then provide a FileSystemId value to the
|
155
|
+
* Deletes a file system. After deletion, the file system no longer exists, and its data is gone. Any existing automatic backups and snapshots are also deleted. To delete an Amazon FSx for NetApp ONTAP file system, first delete all the volumes and storage virtual machines (SVMs) on the file system. Then provide a FileSystemId value to the DeleteFileSystem operation. By default, when you delete an Amazon FSx for Windows File Server file system, a final backup is created upon deletion. This final backup isn't subject to the file system's retention policy, and must be manually deleted. To delete an Amazon FSx for Lustre file system, first unmount it from every connected Amazon EC2 instance, then provide a FileSystemId value to the DeleteFileSystem operation. By default, Amazon FSx will not take a final backup when the DeleteFileSystem operation is invoked. On file systems not linked to an Amazon S3 bucket, set SkipFinalBackup to false to take a final backup of the file system you are deleting. Backups cannot be enabled on S3-linked file systems. To ensure all of your data is written back to S3 before deleting your file system, you can either monitor for the AgeOfOldestQueuedMessage metric to be zero (if using automatic export) or you can run an export data repository task. If you have automatic export enabled and want to use an export data repository task, you have to disable automatic export before executing the export data repository task. The DeleteFileSystem operation returns while the file system has the DELETING status. You can check the file system deletion status by calling the DescribeFileSystems operation, which returns a list of file systems in your account. If you pass the file system ID for a deleted file system, the DescribeFileSystems operation returns a FileSystemNotFound error. If a data repository task is in a PENDING or EXECUTING state, deleting an Amazon FSx for Lustre file system will fail with an HTTP status code 400 (Bad Request). The data in a deleted file system is also deleted and can't be recovered by any means.
|
156
156
|
*/
|
157
157
|
deleteFileSystem(callback?: (err: AWSError, data: FSx.Types.DeleteFileSystemResponse) => void): Request<FSx.Types.DeleteFileSystemResponse, AWSError>;
|
158
158
|
/**
|
@@ -332,11 +332,11 @@ declare class FSx extends Service {
|
|
332
332
|
*/
|
333
333
|
updateFileCache(callback?: (err: AWSError, data: FSx.Types.UpdateFileCacheResponse) => void): Request<FSx.Types.UpdateFileCacheResponse, AWSError>;
|
334
334
|
/**
|
335
|
-
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For FSx for Windows File Server file systems, you can update the following properties: AuditLogConfiguration AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity StorageType ThroughputCapacity DiskIopsConfiguration WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LogConfiguration LustreRootSquashConfiguration PerUnitStorageThroughput StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword HAPairs RemoveRouteTableIds StorageCapacity ThroughputCapacity ThroughputCapacityPerHAPair WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
335
|
+
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For FSx for Windows File Server file systems, you can update the following properties: AuditLogConfiguration AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity StorageType ThroughputCapacity DiskIopsConfiguration WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LogConfiguration LustreRootSquashConfiguration MetadataConfiguration PerUnitStorageThroughput StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword HAPairs RemoveRouteTableIds StorageCapacity ThroughputCapacity ThroughputCapacityPerHAPair WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
336
336
|
*/
|
337
337
|
updateFileSystem(params: FSx.Types.UpdateFileSystemRequest, callback?: (err: AWSError, data: FSx.Types.UpdateFileSystemResponse) => void): Request<FSx.Types.UpdateFileSystemResponse, AWSError>;
|
338
338
|
/**
|
339
|
-
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For FSx for Windows File Server file systems, you can update the following properties: AuditLogConfiguration AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity StorageType ThroughputCapacity DiskIopsConfiguration WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LogConfiguration LustreRootSquashConfiguration PerUnitStorageThroughput StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword HAPairs RemoveRouteTableIds StorageCapacity ThroughputCapacity ThroughputCapacityPerHAPair WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
339
|
+
* Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request. For FSx for Windows File Server file systems, you can update the following properties: AuditLogConfiguration AutomaticBackupRetentionDays DailyAutomaticBackupStartTime SelfManagedActiveDirectoryConfiguration StorageCapacity StorageType ThroughputCapacity DiskIopsConfiguration WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LogConfiguration LustreRootSquashConfiguration MetadataConfiguration PerUnitStorageThroughput StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword HAPairs RemoveRouteTableIds StorageCapacity ThroughputCapacity ThroughputCapacityPerHAPair WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
340
340
|
*/
|
341
341
|
updateFileSystem(callback?: (err: AWSError, data: FSx.Types.UpdateFileSystemResponse) => void): Request<FSx.Types.UpdateFileSystemResponse, AWSError>;
|
342
342
|
/**
|
@@ -873,7 +873,7 @@ declare namespace FSx {
|
|
873
873
|
*/
|
874
874
|
ImportedFileChunkSize?: Megabytes;
|
875
875
|
/**
|
876
|
-
* (Optional) Choose SCRATCH_1 and SCRATCH_2 deployment types when you need temporary storage and shorter-term processing of data. The SCRATCH_2 deployment type provides in-transit encryption of data and higher burst throughput capacity than SCRATCH_1. Choose PERSISTENT_1 for longer-term storage and for throughput-focused workloads that aren’t latency-sensitive. PERSISTENT_1 supports encryption of data in transit, and is available in all Amazon Web Services Regions in which FSx for Lustre is available. Choose PERSISTENT_2 for longer-term storage and for latency-sensitive workloads that require the highest levels of IOPS/throughput. PERSISTENT_2 supports SSD storage, and offers higher PerUnitStorageThroughput (up to 1000 MB/s/TiB). PERSISTENT_2 is available in a limited number of Amazon Web Services Regions. For more information, and an up-to-date list of Amazon Web Services Regions in which PERSISTENT_2 is available, see File system deployment options for FSx for Lustre in the Amazon FSx for Lustre User Guide. If you choose PERSISTENT_2, and you set FileSystemTypeVersion to 2.10, the CreateFileSystem operation fails. Encryption of data in transit is automatically turned on when you access SCRATCH_2, PERSISTENT_1 and PERSISTENT_2 file systems from Amazon EC2 instances that support automatic encryption in the Amazon Web Services Regions where they are available. For more information about encryption in transit for FSx for Lustre file systems, see Encrypting data in transit in the Amazon FSx for Lustre User Guide.
|
876
|
+
* (Optional) Choose SCRATCH_1 and SCRATCH_2 deployment types when you need temporary storage and shorter-term processing of data. The SCRATCH_2 deployment type provides in-transit encryption of data and higher burst throughput capacity than SCRATCH_1. Choose PERSISTENT_1 for longer-term storage and for throughput-focused workloads that aren’t latency-sensitive. PERSISTENT_1 supports encryption of data in transit, and is available in all Amazon Web Services Regions in which FSx for Lustre is available. Choose PERSISTENT_2 for longer-term storage and for latency-sensitive workloads that require the highest levels of IOPS/throughput. PERSISTENT_2 supports SSD storage, and offers higher PerUnitStorageThroughput (up to 1000 MB/s/TiB). You can optionally specify a metadata configuration mode for PERSISTENT_2 which supports increasing metadata performance. PERSISTENT_2 is available in a limited number of Amazon Web Services Regions. For more information, and an up-to-date list of Amazon Web Services Regions in which PERSISTENT_2 is available, see File system deployment options for FSx for Lustre in the Amazon FSx for Lustre User Guide. If you choose PERSISTENT_2, and you set FileSystemTypeVersion to 2.10, the CreateFileSystem operation fails. Encryption of data in transit is automatically turned on when you access SCRATCH_2, PERSISTENT_1, and PERSISTENT_2 file systems from Amazon EC2 instances that support automatic encryption in the Amazon Web Services Regions where they are available. For more information about encryption in transit for FSx for Lustre file systems, see Encrypting data in transit in the Amazon FSx for Lustre User Guide. (Default = SCRATCH_1)
|
877
877
|
*/
|
878
878
|
DeploymentType?: LustreDeploymentType;
|
879
879
|
/**
|
@@ -909,6 +909,20 @@ declare namespace FSx {
|
|
909
909
|
* The Lustre root squash configuration used when creating an Amazon FSx for Lustre file system. When enabled, root squash restricts root-level access from clients that try to access your file system as a root user.
|
910
910
|
*/
|
911
911
|
RootSquashConfiguration?: LustreRootSquashConfiguration;
|
912
|
+
/**
|
913
|
+
* The Lustre metadata performance configuration for the creation of an FSx for Lustre file system using a PERSISTENT_2 deployment type.
|
914
|
+
*/
|
915
|
+
MetadataConfiguration?: CreateFileSystemLustreMetadataConfiguration;
|
916
|
+
}
|
917
|
+
export interface CreateFileSystemLustreMetadataConfiguration {
|
918
|
+
/**
|
919
|
+
* (USER_PROVISIONED mode only) Specifies the number of Metadata IOPS to provision for the file system. This parameter sets the maximum rate of metadata disk IOPS supported by the file system. Valid values are 1500, 3000, 6000, 12000, and multiples of 12000 up to a maximum of 192000. Iops doesn’t have a default value. If you're using USER_PROVISIONED mode, you can choose to specify a valid value. If you're using AUTOMATIC mode, you cannot specify a value because FSx for Lustre automatically sets the value based on your file system storage capacity.
|
920
|
+
*/
|
921
|
+
Iops?: MetadataIops;
|
922
|
+
/**
|
923
|
+
* The metadata configuration mode for provisioning Metadata IOPS for an FSx for Lustre file system using a PERSISTENT_2 deployment type. In AUTOMATIC mode, FSx for Lustre automatically provisions and scales the number of Metadata IOPS for your file system based on your file system storage capacity. In USER_PROVISIONED mode, you specify the number of Metadata IOPS to provision for your file system.
|
924
|
+
*/
|
925
|
+
Mode: MetadataConfigurationMode;
|
912
926
|
}
|
913
927
|
export interface CreateFileSystemOntapConfiguration {
|
914
928
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
@@ -999,11 +1013,11 @@ declare namespace FSx {
|
|
999
1013
|
*/
|
1000
1014
|
FileSystemType: FileSystemType;
|
1001
1015
|
/**
|
1002
|
-
* Sets the storage capacity of the file system that you're creating, in gibibytes (GiB). FSx for Lustre file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType and the Lustre DeploymentType, as follows: For SCRATCH_2, PERSISTENT_2 and PERSISTENT_1 deployment types using SSD storage type, the valid values are 1200 GiB, 2400 GiB, and increments of 2400 GiB. For PERSISTENT_1 HDD file systems, valid values are increments of 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for 40 MB/s/TiB file systems. For SCRATCH_1 deployment type, valid values are 1200 GiB, 2400 GiB, and increments of 3600 GiB. FSx for ONTAP file systems - The amount of storage capacity that you can configure depends on the value of the HAPairs property. The minimum value is calculated as 1,024 * HAPairs and the maximum is calculated as 524,288 * HAPairs. FSx for OpenZFS file systems - The amount of storage capacity that you can configure is from 64 GiB up to 524,288 GiB (512 TiB). FSx for Windows File Server file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType as follows: For SSD storage, valid values are 32 GiB-65,536 GiB (64 TiB). For HDD storage, valid values are 2000 GiB-65,536 GiB (64 TiB).
|
1016
|
+
* Sets the storage capacity of the file system that you're creating, in gibibytes (GiB). FSx for Lustre file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType and the Lustre DeploymentType, as follows: For SCRATCH_2, PERSISTENT_2, and PERSISTENT_1 deployment types using SSD storage type, the valid values are 1200 GiB, 2400 GiB, and increments of 2400 GiB. For PERSISTENT_1 HDD file systems, valid values are increments of 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for 40 MB/s/TiB file systems. For SCRATCH_1 deployment type, valid values are 1200 GiB, 2400 GiB, and increments of 3600 GiB. FSx for ONTAP file systems - The amount of storage capacity that you can configure depends on the value of the HAPairs property. The minimum value is calculated as 1,024 * HAPairs and the maximum is calculated as 524,288 * HAPairs. FSx for OpenZFS file systems - The amount of storage capacity that you can configure is from 64 GiB up to 524,288 GiB (512 TiB). FSx for Windows File Server file systems - The amount of storage capacity that you can configure depends on the value that you set for StorageType as follows: For SSD storage, valid values are 32 GiB-65,536 GiB (64 TiB). For HDD storage, valid values are 2000 GiB-65,536 GiB (64 TiB).
|
1003
1017
|
*/
|
1004
1018
|
StorageCapacity: StorageCapacity;
|
1005
1019
|
/**
|
1006
|
-
* Sets the storage type for the file system that you're creating. Valid values are SSD and HDD. Set to SSD to use solid state drive storage. SSD is supported on all Windows, Lustre, ONTAP, and OpenZFS deployment types. Set to HDD to use hard disk drive storage. HDD is supported on SINGLE_AZ_2 and MULTI_AZ_1 Windows file system deployment types, and on PERSISTENT_1 Lustre file system deployment types.
|
1020
|
+
* Sets the storage type for the file system that you're creating. Valid values are SSD and HDD. Set to SSD to use solid state drive storage. SSD is supported on all Windows, Lustre, ONTAP, and OpenZFS deployment types. Set to HDD to use hard disk drive storage. HDD is supported on SINGLE_AZ_2 and MULTI_AZ_1 Windows file system deployment types, and on PERSISTENT_1 Lustre file system deployment types. Default value is SSD. For more information, see Storage type options in the FSx for Windows File Server User Guide and Multiple storage options in the FSx for Lustre User Guide.
|
1007
1021
|
*/
|
1008
1022
|
StorageType?: StorageType;
|
1009
1023
|
/**
|
@@ -1026,7 +1040,7 @@ declare namespace FSx {
|
|
1026
1040
|
LustreConfiguration?: CreateFileSystemLustreConfiguration;
|
1027
1041
|
OntapConfiguration?: CreateFileSystemOntapConfiguration;
|
1028
1042
|
/**
|
1029
|
-
*
|
1043
|
+
* For FSx for Lustre file systems, sets the Lustre version for the file system that you're creating. Valid values are 2.10, 2.12, and 2.15: 2.10 is supported by the Scratch and Persistent_1 Lustre deployment types. 2.12 is supported by all Lustre deployment types, except for PERSISTENT_2 with a metadata configuration mode. 2.15 is supported by all Lustre deployment types and is recommended for all new file systems. Default value is 2.10, except for the following deployments: Default value is 2.12 when DeploymentType is set to PERSISTENT_2 without a metadata configuration mode. Default value is 2.15 when DeploymentType is set to PERSISTENT_2 with a metadata configuration mode.
|
1030
1044
|
*/
|
1031
1045
|
FileSystemTypeVersion?: FileSystemTypeVersion;
|
1032
1046
|
/**
|
@@ -1093,7 +1107,7 @@ declare namespace FSx {
|
|
1093
1107
|
*/
|
1094
1108
|
JunctionPath?: JunctionPath;
|
1095
1109
|
/**
|
1096
|
-
* Specifies the security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. The security style determines the type of permissions that FSx for ONTAP uses to control data access.
|
1110
|
+
* Specifies the security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. The security style determines the type of permissions that FSx for ONTAP uses to control data access. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. MIXED This is an advanced setting. For more information, see the topic What the security styles and their effects are in the NetApp Documentation Center. For more information, see Volume security style in the FSx for ONTAP User Guide.
|
1097
1111
|
*/
|
1098
1112
|
SecurityStyle?: SecurityStyle;
|
1099
1113
|
/**
|
@@ -2088,7 +2102,7 @@ declare namespace FSx {
|
|
2088
2102
|
*/
|
2089
2103
|
FileCachePath: Namespace;
|
2090
2104
|
/**
|
2091
|
-
* The path to the S3 or NFS data repository that links to the cache. You must provide one of the following paths: The path can be an NFS data repository that links to the cache. The path can be in one of two formats: If you are not using the DataRepositorySubdirectories parameter, the path is to an NFS Export directory (or one of its subdirectories) in the format
|
2105
|
+
* The path to the S3 or NFS data repository that links to the cache. You must provide one of the following paths: The path can be an NFS data repository that links to the cache. The path can be in one of two formats: If you are not using the DataRepositorySubdirectories parameter, the path is to an NFS Export directory (or one of its subdirectories) in the format nfs://nfs-domain-name/exportpath. You can therefore link a single NFS Export to a single data repository association. If you are using the DataRepositorySubdirectories parameter, the path is the domain name of the NFS file system in the format nfs://filer-domain-name, which indicates the root of the subdirectories specified with the DataRepositorySubdirectories parameter. The path can be an S3 bucket or prefix in the format s3://myBucket/myPrefix/.
|
2092
2106
|
*/
|
2093
2107
|
DataRepositoryPath: ArchivePath;
|
2094
2108
|
/**
|
@@ -2258,6 +2272,16 @@ declare namespace FSx {
|
|
2258
2272
|
export type FileSystemId = string;
|
2259
2273
|
export type FileSystemIds = FileSystemId[];
|
2260
2274
|
export type FileSystemLifecycle = "AVAILABLE"|"CREATING"|"FAILED"|"DELETING"|"MISCONFIGURED"|"UPDATING"|"MISCONFIGURED_UNAVAILABLE"|string;
|
2275
|
+
export interface FileSystemLustreMetadataConfiguration {
|
2276
|
+
/**
|
2277
|
+
* The number of Metadata IOPS provisioned for the file system. Valid values are 1500, 3000, 6000, 12000, and multiples of 12000 up to a maximum of 192000.
|
2278
|
+
*/
|
2279
|
+
Iops?: MetadataIops;
|
2280
|
+
/**
|
2281
|
+
* The metadata configuration mode for provisioning Metadata IOPS for the file system. In AUTOMATIC mode, FSx for Lustre automatically provisions and scales the number of Metadata IOPS on your file system based on your file system storage capacity. In USER_PROVISIONED mode, you can choose to specify the number of Metadata IOPS to provision for your file system.
|
2282
|
+
*/
|
2283
|
+
Mode: MetadataConfigurationMode;
|
2284
|
+
}
|
2261
2285
|
export type FileSystemMaintenanceOperation = "PATCHING"|"BACKING_UP"|string;
|
2262
2286
|
export type FileSystemMaintenanceOperations = FileSystemMaintenanceOperation[];
|
2263
2287
|
export type FileSystemType = "WINDOWS"|"LUSTRE"|"ONTAP"|"OPENZFS"|string;
|
@@ -2362,6 +2386,10 @@ declare namespace FSx {
|
|
2362
2386
|
* The Lustre root squash configuration for an Amazon FSx for Lustre file system. When enabled, root squash restricts root-level access from clients that try to access your file system as a root user.
|
2363
2387
|
*/
|
2364
2388
|
RootSquashConfiguration?: LustreRootSquashConfiguration;
|
2389
|
+
/**
|
2390
|
+
* The Lustre metadata performance configuration for an Amazon FSx for Lustre file system using a PERSISTENT_2 deployment type.
|
2391
|
+
*/
|
2392
|
+
MetadataConfiguration?: FileSystemLustreMetadataConfiguration;
|
2365
2393
|
}
|
2366
2394
|
export type LustreFileSystemMountName = string;
|
2367
2395
|
export interface LustreLogConfiguration {
|
@@ -2400,6 +2428,8 @@ declare namespace FSx {
|
|
2400
2428
|
export type MaxResults = number;
|
2401
2429
|
export type Megabytes = number;
|
2402
2430
|
export type MegabytesPerSecond = number;
|
2431
|
+
export type MetadataConfigurationMode = "AUTOMATIC"|"USER_PROVISIONED"|string;
|
2432
|
+
export type MetadataIops = number;
|
2403
2433
|
export type MetadataStorageCapacity = number;
|
2404
2434
|
export interface NFSDataRepositoryConfiguration {
|
2405
2435
|
/**
|
@@ -2850,27 +2880,27 @@ declare namespace FSx {
|
|
2850
2880
|
}
|
2851
2881
|
export interface SelfManagedActiveDirectoryConfigurationUpdates {
|
2852
2882
|
/**
|
2853
|
-
* Specifies the updated user name for the service account on your self-managed
|
2883
|
+
* Specifies the updated user name for the service account on your self-managed Active Directory domain. Amazon FSx uses this account to join to your self-managed Active Directory domain. This account must have the permissions required to join computers to the domain in the organizational unit provided in OrganizationalUnitDistinguishedName.
|
2854
2884
|
*/
|
2855
2885
|
UserName?: DirectoryUserName;
|
2856
2886
|
/**
|
2857
|
-
* Specifies the updated password for the service account on your self-managed
|
2887
|
+
* Specifies the updated password for the service account on your self-managed Active Directory domain. Amazon FSx uses this account to join to your self-managed Active Directory domain.
|
2858
2888
|
*/
|
2859
2889
|
Password?: DirectoryPassword;
|
2860
2890
|
/**
|
2861
|
-
* A list of up to three DNS server or domain controller IP addresses in your self-managed
|
2891
|
+
* A list of up to three DNS server or domain controller IP addresses in your self-managed Active Directory domain.
|
2862
2892
|
*/
|
2863
2893
|
DnsIps?: DnsIps;
|
2864
2894
|
/**
|
2865
|
-
* Specifies an updated fully qualified domain name of your self-managed
|
2895
|
+
* Specifies an updated fully qualified domain name of your self-managed Active Directory configuration.
|
2866
2896
|
*/
|
2867
2897
|
DomainName?: ActiveDirectoryFullyQualifiedName;
|
2868
2898
|
/**
|
2869
|
-
* Specifies an updated fully qualified distinguished name of the organization unit within your self-managed
|
2899
|
+
* Specifies an updated fully qualified distinguished name of the organization unit within your self-managed Active Directory.
|
2870
2900
|
*/
|
2871
2901
|
OrganizationalUnitDistinguishedName?: OrganizationalUnitDistinguishedName;
|
2872
2902
|
/**
|
2873
|
-
* Specifies the updated name of the self-managed
|
2903
|
+
* For FSx for ONTAP file systems only - Specifies the updated name of the self-managed Active Directory domain group whose members are granted administrative privileges for the Amazon FSx resource.
|
2874
2904
|
*/
|
2875
2905
|
FileSystemAdministratorsGroup?: FileSystemAdministratorsGroupName;
|
2876
2906
|
}
|
@@ -3200,6 +3230,20 @@ declare namespace FSx {
|
|
3200
3230
|
* The throughput of an Amazon FSx for Lustre Persistent SSD-based file system, measured in megabytes per second per tebibyte (MB/s/TiB). You can increase or decrease your file system's throughput. Valid values depend on the deployment type of the file system, as follows: For PERSISTENT_1 SSD-based deployment types, valid values are 50, 100, and 200 MB/s/TiB. For PERSISTENT_2 SSD-based deployment types, valid values are 125, 250, 500, and 1000 MB/s/TiB. For more information, see Managing throughput capacity.
|
3201
3231
|
*/
|
3202
3232
|
PerUnitStorageThroughput?: PerUnitStorageThroughput;
|
3233
|
+
/**
|
3234
|
+
* The Lustre metadata performance configuration for an Amazon FSx for Lustre file system using a PERSISTENT_2 deployment type. When this configuration is enabled, the file system supports increasing metadata performance.
|
3235
|
+
*/
|
3236
|
+
MetadataConfiguration?: UpdateFileSystemLustreMetadataConfiguration;
|
3237
|
+
}
|
3238
|
+
export interface UpdateFileSystemLustreMetadataConfiguration {
|
3239
|
+
/**
|
3240
|
+
* (USER_PROVISIONED mode only) Specifies the number of Metadata IOPS to provision for your file system. Valid values are 1500, 3000, 6000, 12000, and multiples of 12000 up to a maximum of 192000. The value you provide must be greater than or equal to the current number of Metadata IOPS provisioned for the file system.
|
3241
|
+
*/
|
3242
|
+
Iops?: MetadataIops;
|
3243
|
+
/**
|
3244
|
+
* The metadata configuration mode for provisioning Metadata IOPS for an FSx for Lustre file system using a PERSISTENT_2 deployment type. To increase the Metadata IOPS or to switch from AUTOMATIC mode, specify USER_PROVISIONED as the value for this parameter. Then use the Iops parameter to provide a Metadata IOPS value that is greater than or equal to the current number of Metadata IOPS provisioned for the file system. To switch from USER_PROVISIONED mode, specify AUTOMATIC as the value for this parameter, but do not input a value for Iops. If you request to switch from USER_PROVISIONED to AUTOMATIC mode and the current Metadata IOPS value is greater than the automated default, FSx for Lustre rejects the request because downscaling Metadata IOPS is not supported.
|
3245
|
+
*/
|
3246
|
+
Mode?: MetadataConfigurationMode;
|
3203
3247
|
}
|
3204
3248
|
export interface UpdateFileSystemOntapConfiguration {
|
3205
3249
|
AutomaticBackupRetentionDays?: AutomaticBackupRetentionDays;
|
package/clients/glue.d.ts
CHANGED
@@ -13344,6 +13344,10 @@ declare namespace Glue {
|
|
13344
13344
|
* A TableIdentifier structure that describes a target table for resource linking.
|
13345
13345
|
*/
|
13346
13346
|
TargetTable?: TableIdentifier;
|
13347
|
+
/**
|
13348
|
+
* A structure that contains all the information that defines the view, including the dialect or dialects for the view, and the query.
|
13349
|
+
*/
|
13350
|
+
ViewDefinition?: ViewDefinitionInput;
|
13347
13351
|
}
|
13348
13352
|
export type TableList = Table[];
|
13349
13353
|
export type TableName = string;
|
@@ -14390,6 +14394,14 @@ declare namespace Glue {
|
|
14390
14394
|
* The version ID at which to update the table contents.
|
14391
14395
|
*/
|
14392
14396
|
VersionId?: VersionString;
|
14397
|
+
/**
|
14398
|
+
* The operation to be performed when updating the view.
|
14399
|
+
*/
|
14400
|
+
ViewUpdateAction?: ViewUpdateAction;
|
14401
|
+
/**
|
14402
|
+
* A flag that can be set to true to ignore matching storage descriptor and subobject matching requirements.
|
14403
|
+
*/
|
14404
|
+
Force?: Boolean;
|
14393
14405
|
}
|
14394
14406
|
export interface UpdateTableResponse {
|
14395
14407
|
}
|
@@ -14565,6 +14577,24 @@ declare namespace Glue {
|
|
14565
14577
|
*/
|
14566
14578
|
Representations?: ViewRepresentationList;
|
14567
14579
|
}
|
14580
|
+
export interface ViewDefinitionInput {
|
14581
|
+
/**
|
14582
|
+
* You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
|
14583
|
+
*/
|
14584
|
+
IsProtected?: NullableBoolean;
|
14585
|
+
/**
|
14586
|
+
* The definer of a view in SQL.
|
14587
|
+
*/
|
14588
|
+
Definer?: ArnString;
|
14589
|
+
/**
|
14590
|
+
* A list of structures that contains the dialect of the view, and the query that defines the view.
|
14591
|
+
*/
|
14592
|
+
Representations?: ViewRepresentationInputList;
|
14593
|
+
/**
|
14594
|
+
* A list of base table ARNs that make up the view.
|
14595
|
+
*/
|
14596
|
+
SubObjects?: ViewSubObjectsList;
|
14597
|
+
}
|
14568
14598
|
export type ViewDialect = "REDSHIFT"|"ATHENA"|"SPARK"|string;
|
14569
14599
|
export type ViewDialectVersionString = string;
|
14570
14600
|
export interface ViewRepresentation {
|
@@ -14584,14 +14614,42 @@ declare namespace Glue {
|
|
14584
14614
|
* The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform ViewOriginalText to ViewExpandedText. For example: Fully qualified identifiers: SELECT * from table1 -> SELECT * from db1.table1
|
14585
14615
|
*/
|
14586
14616
|
ViewExpandedText?: ViewTextString;
|
14617
|
+
/**
|
14618
|
+
* The name of the connection to be used to validate the specific representation of the view.
|
14619
|
+
*/
|
14620
|
+
ValidationConnection?: NameString;
|
14587
14621
|
/**
|
14588
14622
|
* Dialects marked as stale are no longer valid and must be updated before they can be queried in their respective query engines.
|
14589
14623
|
*/
|
14590
14624
|
IsStale?: NullableBoolean;
|
14591
14625
|
}
|
14626
|
+
export interface ViewRepresentationInput {
|
14627
|
+
/**
|
14628
|
+
* A parameter that specifies the engine type of a specific representation.
|
14629
|
+
*/
|
14630
|
+
Dialect?: ViewDialect;
|
14631
|
+
/**
|
14632
|
+
* A parameter that specifies the version of the engine of a specific representation.
|
14633
|
+
*/
|
14634
|
+
DialectVersion?: ViewDialectVersionString;
|
14635
|
+
/**
|
14636
|
+
* A string that represents the original SQL query that describes the view.
|
14637
|
+
*/
|
14638
|
+
ViewOriginalText?: ViewTextString;
|
14639
|
+
/**
|
14640
|
+
* The name of the connection to be used to validate the specific representation of the view.
|
14641
|
+
*/
|
14642
|
+
ValidationConnection?: NameString;
|
14643
|
+
/**
|
14644
|
+
* A string that represents the SQL query that describes the view with expanded resource ARNs
|
14645
|
+
*/
|
14646
|
+
ViewExpandedText?: ViewTextString;
|
14647
|
+
}
|
14648
|
+
export type ViewRepresentationInputList = ViewRepresentationInput[];
|
14592
14649
|
export type ViewRepresentationList = ViewRepresentation[];
|
14593
14650
|
export type ViewSubObjectsList = ArnString[];
|
14594
14651
|
export type ViewTextString = string;
|
14652
|
+
export type ViewUpdateAction = "ADD"|"REPLACE"|"ADD_OR_REPLACE"|"DROP"|string;
|
14595
14653
|
export type WorkerType = "Standard"|"G.1X"|"G.2X"|"G.025X"|"G.4X"|"G.8X"|"Z.2X"|string;
|
14596
14654
|
export interface Workflow {
|
14597
14655
|
/**
|
package/clients/iotwireless.d.ts
CHANGED
@@ -1875,7 +1875,7 @@ declare namespace IoTWireless {
|
|
1875
1875
|
export type FirmwareUpdateRole = string;
|
1876
1876
|
export type FragmentIntervalMS = number;
|
1877
1877
|
export type FragmentSizeBytes = number;
|
1878
|
-
export type FuotaDeviceStatus = "Initial"|"Package_Not_Supported"|"FragAlgo_unsupported"|"Not_enough_memory"|"FragIndex_unsupported"|"Wrong_descriptor"|"SessionCnt_replay"|"MissingFrag"|"MemoryError"|"MICError"|"Successful"|string;
|
1878
|
+
export type FuotaDeviceStatus = "Initial"|"Package_Not_Supported"|"FragAlgo_unsupported"|"Not_enough_memory"|"FragIndex_unsupported"|"Wrong_descriptor"|"SessionCnt_replay"|"MissingFrag"|"MemoryError"|"MICError"|"Successful"|"Device_exist_in_conflict_fuota_task"|string;
|
1879
1879
|
export interface FuotaTask {
|
1880
1880
|
Id?: FuotaTaskId;
|
1881
1881
|
Arn?: FuotaTaskArn;
|