aws-sdk 2.1413.0 → 2.1415.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/CHANGELOG.md +18 -1
- package/README.md +1 -1
- package/apis/cognito-idp-2016-04-18.min.json +42 -13
- package/apis/connect-2017-08-08.min.json +223 -177
- package/apis/datasync-2018-11-09.min.json +11 -2
- package/apis/dms-2016-01-01.min.json +148 -146
- package/apis/fsx-2018-03-01.min.json +236 -131
- package/apis/mediatailor-2018-04-23.min.json +4 -3
- package/apis/personalize-2018-05-22.min.json +40 -6
- package/apis/proton-2020-07-20.min.json +400 -151
- package/apis/proton-2020-07-20.paginators.json +6 -0
- package/apis/s3-2006-03-01.examples.json +92 -92
- package/apis/sagemaker-2017-07-24.min.json +730 -723
- package/apis/secretsmanager-2017-10-17.examples.json +1 -1
- package/clients/connect.d.ts +38 -2
- package/clients/datasync.d.ts +24 -12
- package/clients/dms.d.ts +9 -0
- package/clients/ec2.d.ts +1 -1
- package/clients/fsx.d.ts +134 -4
- package/clients/iam.d.ts +27 -27
- package/clients/mediatailor.d.ts +6 -1
- package/clients/personalize.d.ts +52 -2
- package/clients/proton.d.ts +414 -0
- package/clients/s3.d.ts +4 -4
- package/clients/sagemaker.d.ts +21 -1
- package/clients/secretsmanager.d.ts +3 -3
- package/dist/aws-sdk-core-react-native.js +5 -4
- package/dist/aws-sdk-react-native.js +19 -17
- package/dist/aws-sdk.js +308 -199
- package/dist/aws-sdk.min.js +85 -84
- package/lib/core.js +1 -1
- package/lib/http/node.js +2 -1
- package/package.json +1 -1
@@ -51,7 +51,7 @@
|
|
51
51
|
"SecretId": "MyTestDatabaseSecret"
|
52
52
|
},
|
53
53
|
"output": {
|
54
|
-
"ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:
|
54
|
+
"ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
|
55
55
|
"Name": "MyTestDatabaseSecret"
|
56
56
|
},
|
57
57
|
"comments": {
|
package/clients/connect.d.ts
CHANGED
@@ -339,6 +339,14 @@ declare class Connect extends Service {
|
|
339
339
|
* Deletes a prompt.
|
340
340
|
*/
|
341
341
|
deletePrompt(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
342
|
+
/**
|
343
|
+
* Deletes a queue.
|
344
|
+
*/
|
345
|
+
deleteQueue(params: Connect.Types.DeleteQueueRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
346
|
+
/**
|
347
|
+
* Deletes a queue.
|
348
|
+
*/
|
349
|
+
deleteQueue(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
342
350
|
/**
|
343
351
|
* Deletes a quick connect.
|
344
352
|
*/
|
@@ -347,6 +355,14 @@ declare class Connect extends Service {
|
|
347
355
|
* Deletes a quick connect.
|
348
356
|
*/
|
349
357
|
deleteQuickConnect(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
358
|
+
/**
|
359
|
+
* Deletes a routing profile.
|
360
|
+
*/
|
361
|
+
deleteRoutingProfile(params: Connect.Types.DeleteRoutingProfileRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
362
|
+
/**
|
363
|
+
* Deletes a routing profile.
|
364
|
+
*/
|
365
|
+
deleteRoutingProfile(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
350
366
|
/**
|
351
367
|
* Deletes a rule for the specified Amazon Connect instance.
|
352
368
|
*/
|
@@ -3190,6 +3206,16 @@ declare namespace Connect {
|
|
3190
3206
|
*/
|
3191
3207
|
PromptId: PromptId;
|
3192
3208
|
}
|
3209
|
+
export interface DeleteQueueRequest {
|
3210
|
+
/**
|
3211
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
3212
|
+
*/
|
3213
|
+
InstanceId: InstanceId;
|
3214
|
+
/**
|
3215
|
+
* The identifier for the queue.
|
3216
|
+
*/
|
3217
|
+
QueueId: QueueId;
|
3218
|
+
}
|
3193
3219
|
export interface DeleteQuickConnectRequest {
|
3194
3220
|
/**
|
3195
3221
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -3200,6 +3226,16 @@ declare namespace Connect {
|
|
3200
3226
|
*/
|
3201
3227
|
QuickConnectId: QuickConnectId;
|
3202
3228
|
}
|
3229
|
+
export interface DeleteRoutingProfileRequest {
|
3230
|
+
/**
|
3231
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
3232
|
+
*/
|
3233
|
+
InstanceId: InstanceId;
|
3234
|
+
/**
|
3235
|
+
* The identifier of the routing profile.
|
3236
|
+
*/
|
3237
|
+
RoutingProfileId: RoutingProfileId;
|
3238
|
+
}
|
3203
3239
|
export interface DeleteRuleRequest {
|
3204
3240
|
/**
|
3205
3241
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -5052,7 +5088,7 @@ declare namespace Connect {
|
|
5052
5088
|
*/
|
5053
5089
|
OutboundCallsEnabled?: OutboundCallsEnabled;
|
5054
5090
|
/**
|
5055
|
-
* This URL allows contact center users to access Amazon Connect admin website.
|
5091
|
+
* This URL allows contact center users to access the Amazon Connect admin website.
|
5056
5092
|
*/
|
5057
5093
|
InstanceAccessUrl?: Url;
|
5058
5094
|
}
|
@@ -5134,7 +5170,7 @@ declare namespace Connect {
|
|
5134
5170
|
*/
|
5135
5171
|
OutboundCallsEnabled?: OutboundCallsEnabled;
|
5136
5172
|
/**
|
5137
|
-
* This URL allows contact center users to access Amazon Connect admin website.
|
5173
|
+
* This URL allows contact center users to access the Amazon Connect admin website.
|
5138
5174
|
*/
|
5139
5175
|
InstanceAccessUrl?: Url;
|
5140
5176
|
}
|
package/clients/datasync.d.ts
CHANGED
@@ -28,11 +28,11 @@ declare class DataSync extends Service {
|
|
28
28
|
*/
|
29
29
|
cancelTaskExecution(callback?: (err: AWSError, data: DataSync.Types.CancelTaskExecutionResponse) => void): Request<DataSync.Types.CancelTaskExecutionResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Activates an DataSync agent that you
|
31
|
+
* Activates an DataSync agent that you've deployed in your storage environment. The activation process associates the agent with your Amazon Web Services account. If you haven't deployed an agent yet, see the following topics to learn more: Agent requirements Create an agent If you're transferring between Amazon Web Services storage services, you don't need a DataSync agent.
|
32
32
|
*/
|
33
33
|
createAgent(params: DataSync.Types.CreateAgentRequest, callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Activates an DataSync agent that you
|
35
|
+
* Activates an DataSync agent that you've deployed in your storage environment. The activation process associates the agent with your Amazon Web Services account. If you haven't deployed an agent yet, see the following topics to learn more: Agent requirements Create an agent If you're transferring between Amazon Web Services storage services, you don't need a DataSync agent.
|
36
36
|
*/
|
37
37
|
createAgent(callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
|
38
38
|
/**
|
@@ -555,33 +555,33 @@ declare namespace DataSync {
|
|
555
555
|
export type CollectionDurationMinutes = number;
|
556
556
|
export interface CreateAgentRequest {
|
557
557
|
/**
|
558
|
-
*
|
558
|
+
* Specifies your DataSync agent's activation key. If you don't have an activation key, see Activate your agent.
|
559
559
|
*/
|
560
560
|
ActivationKey: ActivationKey;
|
561
561
|
/**
|
562
|
-
*
|
562
|
+
* Specifies a name for your agent. You can see this name in the DataSync console.
|
563
563
|
*/
|
564
564
|
AgentName?: TagValue;
|
565
565
|
/**
|
566
|
-
*
|
566
|
+
* Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least one tag for your agent.
|
567
567
|
*/
|
568
568
|
Tags?: InputTagList;
|
569
569
|
/**
|
570
|
-
*
|
570
|
+
* Specifies the ID of the VPC endpoint that you want your agent to connect to. For example, a VPC endpoint ID looks like vpce-01234d5aff67890e1. The VPC endpoint you use must include the DataSync service name (for example, com.amazonaws.us-east-2.datasync).
|
571
571
|
*/
|
572
572
|
VpcEndpointId?: VpcEndpointId;
|
573
573
|
/**
|
574
|
-
*
|
574
|
+
* Specifies the ARN of the subnet where you want to run your DataSync task when using a VPC endpoint. This is the subnet where DataSync creates and manages the network interfaces for your transfer.
|
575
575
|
*/
|
576
576
|
SubnetArns?: PLSubnetArnList;
|
577
577
|
/**
|
578
|
-
*
|
578
|
+
* Specifies the Amazon Resource Name (ARN) of the security group that protects your task's network interfaces when using a virtual private cloud (VPC) endpoint.
|
579
579
|
*/
|
580
580
|
SecurityGroupArns?: PLSecurityGroupArnList;
|
581
581
|
}
|
582
582
|
export interface CreateAgentResponse {
|
583
583
|
/**
|
584
|
-
* The
|
584
|
+
* The ARN of the agent that you just activated. Use the ListAgents operation to return a list of agents in your Amazon Web Services account and Amazon Web Services Region.
|
585
585
|
*/
|
586
586
|
AgentArn?: AgentArn;
|
587
587
|
}
|
@@ -716,7 +716,7 @@ declare namespace DataSync {
|
|
716
716
|
*/
|
717
717
|
Tags?: InputTagList;
|
718
718
|
/**
|
719
|
-
* Specifies the user who has the permissions to access files and
|
719
|
+
* Specifies the user who has the permissions to access files, folders, and metadata in your file system. For information about choosing a user with sufficient permissions, see Required permissions.
|
720
720
|
*/
|
721
721
|
User: SmbUser;
|
722
722
|
/**
|
@@ -860,7 +860,7 @@ declare namespace DataSync {
|
|
860
860
|
*/
|
861
861
|
Tags?: InputTagList;
|
862
862
|
/**
|
863
|
-
* Specifies a
|
863
|
+
* Specifies a file with the certificates that are used to sign the object storage server's certificate (for example, file:///home/user/.ssh/storage_sys_certificate.pem). The file you specify must include the following: The certificate of the signing certificate authority (CA) Any intermediate certificates base64 encoding A .pem extension The file can be up to 32768 bytes (before base64 encoding). To use this parameter, configure ServerProtocol to HTTPS.
|
864
864
|
*/
|
865
865
|
ServerCertificate?: ObjectStorageCertificate;
|
866
866
|
}
|
@@ -2135,6 +2135,10 @@ declare namespace DataSync {
|
|
2135
2135
|
* Indicates whether DataSync Discovery recommendations for the cluster are ready to view, incomplete, or can't be determined. For more information, see Recommendation statuses.
|
2136
2136
|
*/
|
2137
2137
|
RecommendationStatus?: RecommendationStatus;
|
2138
|
+
/**
|
2139
|
+
* The number of LUNs (logical unit numbers) in the cluster.
|
2140
|
+
*/
|
2141
|
+
LunCount?: NonNegativeLong;
|
2138
2142
|
}
|
2139
2143
|
export type NetAppONTAPClusters = NetAppONTAPCluster[];
|
2140
2144
|
export interface NetAppONTAPSVM {
|
@@ -2190,6 +2194,10 @@ declare namespace DataSync {
|
|
2190
2194
|
* The amount of storage in the SVM that's being used for snapshots.
|
2191
2195
|
*/
|
2192
2196
|
TotalSnapshotCapacityUsed?: NonNegativeLong;
|
2197
|
+
/**
|
2198
|
+
* The number of LUNs (logical unit numbers) in the SVM.
|
2199
|
+
*/
|
2200
|
+
LunCount?: NonNegativeLong;
|
2193
2201
|
}
|
2194
2202
|
export type NetAppONTAPSVMs = NetAppONTAPSVM[];
|
2195
2203
|
export interface NetAppONTAPVolume {
|
@@ -2249,6 +2257,10 @@ declare namespace DataSync {
|
|
2249
2257
|
* Indicates whether DataSync Discovery recommendations for the volume are ready to view, incomplete, or can't be determined. For more information, see Recommendation statuses.
|
2250
2258
|
*/
|
2251
2259
|
RecommendationStatus?: RecommendationStatus;
|
2260
|
+
/**
|
2261
|
+
* The number of LUNs (logical unit numbers) in the volume.
|
2262
|
+
*/
|
2263
|
+
LunCount?: NonNegativeLong;
|
2252
2264
|
}
|
2253
2265
|
export type NetAppONTAPVolumes = NetAppONTAPVolume[];
|
2254
2266
|
export type NetworkInterfaceArn = string;
|
@@ -2319,7 +2331,7 @@ declare namespace DataSync {
|
|
2319
2331
|
*/
|
2320
2332
|
BytesPerSecond?: BytesPerSecond;
|
2321
2333
|
/**
|
2322
|
-
* Specifies whether
|
2334
|
+
* Specifies whether your transfer tasks should be put into a queue during certain scenarios when running multiple tasks. This is ENABLED by default.
|
2323
2335
|
*/
|
2324
2336
|
TaskQueueing?: TaskQueueing;
|
2325
2337
|
/**
|
package/clients/dms.d.ts
CHANGED
@@ -1441,6 +1441,7 @@ declare namespace DMS {
|
|
1441
1441
|
Tooltip?: String;
|
1442
1442
|
}
|
1443
1443
|
export type DatabaseList = DatabaseResponse[];
|
1444
|
+
export type DatabaseMode = "default"|"babelfish"|string;
|
1444
1445
|
export interface DatabaseResponse {
|
1445
1446
|
/**
|
1446
1447
|
* The ID of a database in a Fleet Advisor collector inventory.
|
@@ -4045,6 +4046,14 @@ declare namespace DMS {
|
|
4045
4046
|
* When true, DMS migrates LONG values as VARCHAR.
|
4046
4047
|
*/
|
4047
4048
|
MapLongVarcharAs?: LongVarcharMappingType;
|
4049
|
+
/**
|
4050
|
+
* Specifies whether to use default or custom replication behavior for PostgreSQL-compatible endpoints. You can use this setting to specify replication behavior for endpoints that require additional configuration, such as Babelfish endpoints.
|
4051
|
+
*/
|
4052
|
+
DatabaseMode?: DatabaseMode;
|
4053
|
+
/**
|
4054
|
+
* The Babelfish for Aurora PostgreSQL database name for the endpoint.
|
4055
|
+
*/
|
4056
|
+
BabelfishDatabaseName?: String;
|
4048
4057
|
}
|
4049
4058
|
export interface ProvisionData {
|
4050
4059
|
/**
|
package/clients/ec2.d.ts
CHANGED
@@ -24157,7 +24157,7 @@ declare namespace EC2 {
|
|
24157
24157
|
*/
|
24158
24158
|
IncludeAllTagsOfInstance?: Boolean;
|
24159
24159
|
}
|
24160
|
-
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|"mac2.metal"|"c6id.large"|"c6id.xlarge"|"c6id.2xlarge"|"c6id.4xlarge"|"c6id.8xlarge"|"c6id.12xlarge"|"c6id.16xlarge"|"c6id.24xlarge"|"c6id.32xlarge"|"c6id.metal"|"m6id.large"|"m6id.xlarge"|"m6id.2xlarge"|"m6id.4xlarge"|"m6id.8xlarge"|"m6id.12xlarge"|"m6id.16xlarge"|"m6id.24xlarge"|"m6id.32xlarge"|"m6id.metal"|"r6id.large"|"r6id.xlarge"|"r6id.2xlarge"|"r6id.4xlarge"|"r6id.8xlarge"|"r6id.12xlarge"|"r6id.16xlarge"|"r6id.24xlarge"|"r6id.32xlarge"|"r6id.metal"|"r6a.large"|"r6a.xlarge"|"r6a.2xlarge"|"r6a.4xlarge"|"r6a.8xlarge"|"r6a.12xlarge"|"r6a.16xlarge"|"r6a.24xlarge"|"r6a.32xlarge"|"r6a.48xlarge"|"r6a.metal"|"p4de.24xlarge"|"u-3tb1.56xlarge"|"u-18tb1.112xlarge"|"u-24tb1.112xlarge"|"trn1.2xlarge"|"trn1.32xlarge"|"hpc6id.32xlarge"|"c6in.large"|"c6in.xlarge"|"c6in.2xlarge"|"c6in.4xlarge"|"c6in.8xlarge"|"c6in.12xlarge"|"c6in.16xlarge"|"c6in.24xlarge"|"c6in.32xlarge"|"m6in.large"|"m6in.xlarge"|"m6in.2xlarge"|"m6in.4xlarge"|"m6in.8xlarge"|"m6in.12xlarge"|"m6in.16xlarge"|"m6in.24xlarge"|"m6in.32xlarge"|"m6idn.large"|"m6idn.xlarge"|"m6idn.2xlarge"|"m6idn.4xlarge"|"m6idn.8xlarge"|"m6idn.12xlarge"|"m6idn.16xlarge"|"m6idn.24xlarge"|"m6idn.32xlarge"|"r6in.large"|"r6in.xlarge"|"r6in.2xlarge"|"r6in.4xlarge"|"r6in.8xlarge"|"r6in.12xlarge"|"r6in.16xlarge"|"r6in.24xlarge"|"r6in.32xlarge"|"r6idn.large"|"r6idn.xlarge"|"r6idn.2xlarge"|"r6idn.4xlarge"|"r6idn.8xlarge"|"r6idn.12xlarge"|"r6idn.16xlarge"|"r6idn.24xlarge"|"r6idn.32xlarge"|"c7g.metal"|"m7g.medium"|"m7g.large"|"m7g.xlarge"|"m7g.2xlarge"|"m7g.4xlarge"|"m7g.8xlarge"|"m7g.12xlarge"|"m7g.16xlarge"|"m7g.metal"|"r7g.medium"|"r7g.large"|"r7g.xlarge"|"r7g.2xlarge"|"r7g.4xlarge"|"r7g.8xlarge"|"r7g.12xlarge"|"r7g.16xlarge"|"r7g.metal"|"c6in.metal"|"m6in.metal"|"m6idn.metal"|"r6in.metal"|"r6idn.metal"|"inf2.xlarge"|"inf2.8xlarge"|"inf2.24xlarge"|"inf2.48xlarge"|"trn1n.32xlarge"|"i4g.large"|"i4g.xlarge"|"i4g.2xlarge"|"i4g.4xlarge"|"i4g.8xlarge"|"i4g.16xlarge"|string;
|
24160
|
+
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|"mac2.metal"|"c6id.large"|"c6id.xlarge"|"c6id.2xlarge"|"c6id.4xlarge"|"c6id.8xlarge"|"c6id.12xlarge"|"c6id.16xlarge"|"c6id.24xlarge"|"c6id.32xlarge"|"c6id.metal"|"m6id.large"|"m6id.xlarge"|"m6id.2xlarge"|"m6id.4xlarge"|"m6id.8xlarge"|"m6id.12xlarge"|"m6id.16xlarge"|"m6id.24xlarge"|"m6id.32xlarge"|"m6id.metal"|"r6id.large"|"r6id.xlarge"|"r6id.2xlarge"|"r6id.4xlarge"|"r6id.8xlarge"|"r6id.12xlarge"|"r6id.16xlarge"|"r6id.24xlarge"|"r6id.32xlarge"|"r6id.metal"|"r6a.large"|"r6a.xlarge"|"r6a.2xlarge"|"r6a.4xlarge"|"r6a.8xlarge"|"r6a.12xlarge"|"r6a.16xlarge"|"r6a.24xlarge"|"r6a.32xlarge"|"r6a.48xlarge"|"r6a.metal"|"p4de.24xlarge"|"u-3tb1.56xlarge"|"u-18tb1.112xlarge"|"u-24tb1.112xlarge"|"trn1.2xlarge"|"trn1.32xlarge"|"hpc6id.32xlarge"|"c6in.large"|"c6in.xlarge"|"c6in.2xlarge"|"c6in.4xlarge"|"c6in.8xlarge"|"c6in.12xlarge"|"c6in.16xlarge"|"c6in.24xlarge"|"c6in.32xlarge"|"m6in.large"|"m6in.xlarge"|"m6in.2xlarge"|"m6in.4xlarge"|"m6in.8xlarge"|"m6in.12xlarge"|"m6in.16xlarge"|"m6in.24xlarge"|"m6in.32xlarge"|"m6idn.large"|"m6idn.xlarge"|"m6idn.2xlarge"|"m6idn.4xlarge"|"m6idn.8xlarge"|"m6idn.12xlarge"|"m6idn.16xlarge"|"m6idn.24xlarge"|"m6idn.32xlarge"|"r6in.large"|"r6in.xlarge"|"r6in.2xlarge"|"r6in.4xlarge"|"r6in.8xlarge"|"r6in.12xlarge"|"r6in.16xlarge"|"r6in.24xlarge"|"r6in.32xlarge"|"r6idn.large"|"r6idn.xlarge"|"r6idn.2xlarge"|"r6idn.4xlarge"|"r6idn.8xlarge"|"r6idn.12xlarge"|"r6idn.16xlarge"|"r6idn.24xlarge"|"r6idn.32xlarge"|"c7g.metal"|"m7g.medium"|"m7g.large"|"m7g.xlarge"|"m7g.2xlarge"|"m7g.4xlarge"|"m7g.8xlarge"|"m7g.12xlarge"|"m7g.16xlarge"|"m7g.metal"|"r7g.medium"|"r7g.large"|"r7g.xlarge"|"r7g.2xlarge"|"r7g.4xlarge"|"r7g.8xlarge"|"r7g.12xlarge"|"r7g.16xlarge"|"r7g.metal"|"c6in.metal"|"m6in.metal"|"m6idn.metal"|"r6in.metal"|"r6idn.metal"|"inf2.xlarge"|"inf2.8xlarge"|"inf2.24xlarge"|"inf2.48xlarge"|"trn1n.32xlarge"|"i4g.large"|"i4g.xlarge"|"i4g.2xlarge"|"i4g.4xlarge"|"i4g.8xlarge"|"i4g.16xlarge"|"hpc7g.4xlarge"|"hpc7g.8xlarge"|"hpc7g.16xlarge"|"c7gn.medium"|"c7gn.large"|"c7gn.xlarge"|"c7gn.2xlarge"|"c7gn.4xlarge"|"c7gn.8xlarge"|"c7gn.12xlarge"|"c7gn.16xlarge"|string;
|
24161
24161
|
export type InstanceTypeHypervisor = "nitro"|"xen"|string;
|
24162
24162
|
export interface InstanceTypeInfo {
|
24163
24163
|
/**
|
package/clients/fsx.d.ts
CHANGED
@@ -308,11 +308,11 @@ declare class FSx extends Service {
|
|
308
308
|
*/
|
309
309
|
updateFileCache(callback?: (err: AWSError, data: FSx.Types.UpdateFileCacheResponse) => void): Request<FSx.Types.UpdateFileCacheResponse, AWSError>;
|
310
310
|
/**
|
311
|
-
* 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 ThroughputCapacity WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LustreRootSquashConfiguration StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
311
|
+
* 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 ThroughputCapacity WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LogConfiguration LustreRootSquashConfiguration StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
312
312
|
*/
|
313
313
|
updateFileSystem(params: FSx.Types.UpdateFileSystemRequest, callback?: (err: AWSError, data: FSx.Types.UpdateFileSystemResponse) => void): Request<FSx.Types.UpdateFileSystemResponse, AWSError>;
|
314
314
|
/**
|
315
|
-
* 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 ThroughputCapacity WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LustreRootSquashConfiguration StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
315
|
+
* 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 ThroughputCapacity WeeklyMaintenanceStartTime For FSx for Lustre file systems, you can update the following properties: AutoImportPolicy AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DataCompressionType LogConfiguration LustreRootSquashConfiguration StorageCapacity WeeklyMaintenanceStartTime For FSx for ONTAP file systems, you can update the following properties: AddRouteTableIds AutomaticBackupRetentionDays DailyAutomaticBackupStartTime DiskIopsConfiguration FsxAdminPassword RemoveRouteTableIds StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime For FSx for OpenZFS file systems, you can update the following properties: AutomaticBackupRetentionDays CopyTagsToBackups CopyTagsToVolumes DailyAutomaticBackupStartTime DiskIopsConfiguration StorageCapacity ThroughputCapacity WeeklyMaintenanceStartTime
|
316
316
|
*/
|
317
317
|
updateFileSystem(callback?: (err: AWSError, data: FSx.Types.UpdateFileSystemResponse) => void): Request<FSx.Types.UpdateFileSystemResponse, AWSError>;
|
318
318
|
/**
|
@@ -430,6 +430,18 @@ declare namespace FSx {
|
|
430
430
|
Events?: EventTypes;
|
431
431
|
}
|
432
432
|
export type AutoImportPolicyType = "NONE"|"NEW"|"NEW_CHANGED"|"NEW_CHANGED_DELETED"|string;
|
433
|
+
export interface AutocommitPeriod {
|
434
|
+
/**
|
435
|
+
* Defines the type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. The default value is NONE.
|
436
|
+
*/
|
437
|
+
Type: AutocommitPeriodType;
|
438
|
+
/**
|
439
|
+
* Defines the amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. The following ranges are valid: Minutes: 5 - 65,535 Hours: 1 - 65,535 Days: 1 - 3,650 Months: 1 - 120 Years: 1 - 10
|
440
|
+
*/
|
441
|
+
Value?: AutocommitPeriodValue;
|
442
|
+
}
|
443
|
+
export type AutocommitPeriodType = "MINUTES"|"HOURS"|"DAYS"|"MONTHS"|"YEARS"|"NONE"|string;
|
444
|
+
export type AutocommitPeriodValue = number;
|
433
445
|
export type AutomaticBackupRetentionDays = number;
|
434
446
|
export interface Backup {
|
435
447
|
/**
|
@@ -964,7 +976,7 @@ declare namespace FSx {
|
|
964
976
|
*/
|
965
977
|
SecurityStyle?: SecurityStyle;
|
966
978
|
/**
|
967
|
-
* Specifies the size of the volume, in megabytes (MB), that you are creating.
|
979
|
+
* Specifies the size of the volume, in megabytes (MB), that you are creating.
|
968
980
|
*/
|
969
981
|
SizeInMegabytes: VolumeCapacity;
|
970
982
|
/**
|
@@ -988,6 +1000,10 @@ declare namespace FSx {
|
|
988
1000
|
* A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false. If it's set to true, all tags for the volume are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the volume, regardless of this value.
|
989
1001
|
*/
|
990
1002
|
CopyTagsToBackups?: Flag;
|
1003
|
+
/**
|
1004
|
+
* Specifies the SnapLock configuration for an FSx for ONTAP volume.
|
1005
|
+
*/
|
1006
|
+
SnaplockConfiguration?: CreateSnaplockConfiguration;
|
991
1007
|
}
|
992
1008
|
export interface CreateOpenZFSOriginSnapshotConfiguration {
|
993
1009
|
SnapshotARN: ResourceARN;
|
@@ -1038,6 +1054,32 @@ declare namespace FSx {
|
|
1038
1054
|
*/
|
1039
1055
|
UserAndGroupQuotas?: OpenZFSUserAndGroupQuotas;
|
1040
1056
|
}
|
1057
|
+
export interface CreateSnaplockConfiguration {
|
1058
|
+
/**
|
1059
|
+
* Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false. If you set AuditLogVolume to true, the SnapLock volume is created as an audit log volume. The minimum retention period for an audit log volume is six months. For more information, see SnapLock audit log volumes.
|
1060
|
+
*/
|
1061
|
+
AuditLogVolume?: Flag;
|
1062
|
+
/**
|
1063
|
+
* The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume.
|
1064
|
+
*/
|
1065
|
+
AutocommitPeriod?: AutocommitPeriod;
|
1066
|
+
/**
|
1067
|
+
* Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Enabling privileged delete allows SnapLock administrators to delete WORM files even if they have active retention periods. PERMANENTLY_DISABLED is a terminal state. If privileged delete is permanently disabled on a SnapLock volume, you can't re-enable it. The default value is DISABLED. For more information, see Privileged delete.
|
1068
|
+
*/
|
1069
|
+
PrivilegedDelete?: PrivilegedDelete;
|
1070
|
+
/**
|
1071
|
+
* Specifies the retention period of an FSx for ONTAP SnapLock volume.
|
1072
|
+
*/
|
1073
|
+
RetentionPeriod?: SnaplockRetentionPeriod;
|
1074
|
+
/**
|
1075
|
+
* Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. You can choose one of the following retention modes: COMPLIANCE: Files transitioned to write once, read many (WORM) on a Compliance volume can't be deleted until their retention periods expire. This retention mode is used to address government or industry-specific mandates or to protect against ransomware attacks. For more information, see SnapLock Compliance. ENTERPRISE: Files transitioned to WORM on an Enterprise volume can be deleted by authorized users before their retention periods expire using privileged delete. This retention mode is used to advance an organization's data integrity and internal compliance or to test retention settings before using SnapLock Compliance. For more information, see SnapLock Enterprise.
|
1076
|
+
*/
|
1077
|
+
SnaplockType: SnaplockType;
|
1078
|
+
/**
|
1079
|
+
* Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. Volume-append mode allows you to create WORM-appendable files and write data to them incrementally. The default value is false. For more information, see Volume-append mode.
|
1080
|
+
*/
|
1081
|
+
VolumeAppendModeEnabled?: Flag;
|
1082
|
+
}
|
1041
1083
|
export interface CreateSnapshotRequest {
|
1042
1084
|
ClientRequestToken?: ClientRequestToken;
|
1043
1085
|
/**
|
@@ -1511,6 +1553,10 @@ declare namespace FSx {
|
|
1511
1553
|
*/
|
1512
1554
|
SkipFinalBackup?: Flag;
|
1513
1555
|
FinalBackupTags?: Tags;
|
1556
|
+
/**
|
1557
|
+
* Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. The IAM permission fsx:BypassSnaplockEnterpriseRetention is also required to delete SnapLock Enterprise volumes with unexpired WORM files. The default value is false. For more information, see Deleting a SnapLock volume .
|
1558
|
+
*/
|
1559
|
+
BypassSnaplockEnterpriseRetention?: Flag;
|
1514
1560
|
}
|
1515
1561
|
export interface DeleteVolumeOntapResponse {
|
1516
1562
|
FinalBackupId?: BackupId;
|
@@ -2296,6 +2342,10 @@ declare namespace FSx {
|
|
2296
2342
|
* A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false. If it's set to true, all tags for the volume are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the volume, regardless of this value.
|
2297
2343
|
*/
|
2298
2344
|
CopyTagsToBackups?: Flag;
|
2345
|
+
/**
|
2346
|
+
* The SnapLock configuration object for an FSx for ONTAP SnapLock volume.
|
2347
|
+
*/
|
2348
|
+
SnaplockConfiguration?: SnaplockConfiguration;
|
2299
2349
|
}
|
2300
2350
|
export type OntapVolumeType = "RW"|"DP"|"LS"|string;
|
2301
2351
|
export interface OpenZFSClientConfiguration {
|
@@ -2457,6 +2507,7 @@ declare namespace FSx {
|
|
2457
2507
|
}
|
2458
2508
|
export type OrganizationalUnitDistinguishedName = string;
|
2459
2509
|
export type PerUnitStorageThroughput = number;
|
2510
|
+
export type PrivilegedDelete = "DISABLED"|"ENABLED"|"PERMANENTLY_DISABLED"|string;
|
2460
2511
|
export type ProgressPercent = number;
|
2461
2512
|
export type ReadOnly = boolean;
|
2462
2513
|
export type Region = string;
|
@@ -2505,6 +2556,18 @@ declare namespace FSx {
|
|
2505
2556
|
*/
|
2506
2557
|
AdministrativeActions?: AdministrativeActions;
|
2507
2558
|
}
|
2559
|
+
export interface RetentionPeriod {
|
2560
|
+
/**
|
2561
|
+
* Defines the type of time for the retention period of an FSx for ONTAP SnapLock volume. Set it to one of the valid types. If you set it to INFINITE, the files are retained forever. If you set it to UNSPECIFIED, the files are retained until you set an explicit retention period.
|
2562
|
+
*/
|
2563
|
+
Type: RetentionPeriodType;
|
2564
|
+
/**
|
2565
|
+
* Defines the amount of time for the retention period of an FSx for ONTAP SnapLock volume. You can't set a value for INFINITE or UNSPECIFIED. For all other options, the following ranges are valid: Seconds: 0 - 65,535 Minutes: 0 - 65,535 Hours: 0 - 24 Days: 0 - 365 Months: 0 - 12 Years: 0 - 100
|
2566
|
+
*/
|
2567
|
+
Value?: RetentionPeriodValue;
|
2568
|
+
}
|
2569
|
+
export type RetentionPeriodType = "SECONDS"|"MINUTES"|"HOURS"|"DAYS"|"MONTHS"|"YEARS"|"INFINITE"|"UNSPECIFIED"|string;
|
2570
|
+
export type RetentionPeriodValue = number;
|
2508
2571
|
export type RouteTableId = string;
|
2509
2572
|
export type RouteTableIds = RouteTableId[];
|
2510
2573
|
export interface S3DataRepositoryConfiguration {
|
@@ -2594,6 +2657,47 @@ declare namespace FSx {
|
|
2594
2657
|
*/
|
2595
2658
|
FileSystemAdministratorsGroup?: FileSystemAdministratorsGroupName;
|
2596
2659
|
}
|
2660
|
+
export interface SnaplockConfiguration {
|
2661
|
+
/**
|
2662
|
+
* Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false. If you set AuditLogVolume to true, the SnapLock volume is created as an audit log volume. The minimum retention period for an audit log volume is six months. For more information, see SnapLock audit log volumes.
|
2663
|
+
*/
|
2664
|
+
AuditLogVolume?: Flag;
|
2665
|
+
/**
|
2666
|
+
* The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume.
|
2667
|
+
*/
|
2668
|
+
AutocommitPeriod?: AutocommitPeriod;
|
2669
|
+
/**
|
2670
|
+
* Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Enabling privileged delete allows SnapLock administrators to delete write once, read many (WORM) files even if they have active retention periods. PERMANENTLY_DISABLED is a terminal state. If privileged delete is permanently disabled on a SnapLock volume, you can't re-enable it. The default value is DISABLED. For more information, see Privileged delete.
|
2671
|
+
*/
|
2672
|
+
PrivilegedDelete?: PrivilegedDelete;
|
2673
|
+
/**
|
2674
|
+
* Specifies the retention period of an FSx for ONTAP SnapLock volume.
|
2675
|
+
*/
|
2676
|
+
RetentionPeriod?: SnaplockRetentionPeriod;
|
2677
|
+
/**
|
2678
|
+
* Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. You can choose one of the following retention modes: COMPLIANCE: Files transitioned to write once, read many (WORM) on a Compliance volume can't be deleted until their retention periods expire. This retention mode is used to address government or industry-specific mandates or to protect against ransomware attacks. For more information, see SnapLock Compliance. ENTERPRISE: Files transitioned to WORM on an Enterprise volume can be deleted by authorized users before their retention periods expire using privileged delete. This retention mode is used to advance an organization's data integrity and internal compliance or to test retention settings before using SnapLock Compliance. For more information, see SnapLock Enterprise.
|
2679
|
+
*/
|
2680
|
+
SnaplockType?: SnaplockType;
|
2681
|
+
/**
|
2682
|
+
* Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. Volume-append mode allows you to create WORM-appendable files and write data to them incrementally. The default value is false. For more information, see Volume-append mode.
|
2683
|
+
*/
|
2684
|
+
VolumeAppendModeEnabled?: Flag;
|
2685
|
+
}
|
2686
|
+
export interface SnaplockRetentionPeriod {
|
2687
|
+
/**
|
2688
|
+
* The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period.
|
2689
|
+
*/
|
2690
|
+
DefaultRetention: RetentionPeriod;
|
2691
|
+
/**
|
2692
|
+
* The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume.
|
2693
|
+
*/
|
2694
|
+
MinimumRetention: RetentionPeriod;
|
2695
|
+
/**
|
2696
|
+
* The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume.
|
2697
|
+
*/
|
2698
|
+
MaximumRetention: RetentionPeriod;
|
2699
|
+
}
|
2700
|
+
export type SnaplockType = "COMPLIANCE"|"ENTERPRISE"|string;
|
2597
2701
|
export interface Snapshot {
|
2598
2702
|
ResourceARN?: ResourceARN;
|
2599
2703
|
/**
|
@@ -2970,7 +3074,7 @@ declare namespace FSx {
|
|
2970
3074
|
*/
|
2971
3075
|
JunctionPath?: JunctionPath;
|
2972
3076
|
/**
|
2973
|
-
* The security style for the volume, which can be UNIX
|
3077
|
+
* The security style for the volume, which can be UNIX, NTFS, or MIXED.
|
2974
3078
|
*/
|
2975
3079
|
SecurityStyle?: SecurityStyle;
|
2976
3080
|
/**
|
@@ -2993,6 +3097,10 @@ declare namespace FSx {
|
|
2993
3097
|
* A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false. If it's set to true, all tags for the volume are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the volume, regardless of this value.
|
2994
3098
|
*/
|
2995
3099
|
CopyTagsToBackups?: Flag;
|
3100
|
+
/**
|
3101
|
+
* The configuration object for updating the SnapLock configuration of an FSx for ONTAP SnapLock volume.
|
3102
|
+
*/
|
3103
|
+
SnaplockConfiguration?: UpdateSnaplockConfiguration;
|
2996
3104
|
}
|
2997
3105
|
export interface UpdateOpenZFSVolumeConfiguration {
|
2998
3106
|
/**
|
@@ -3024,6 +3132,28 @@ declare namespace FSx {
|
|
3024
3132
|
*/
|
3025
3133
|
ReadOnly?: ReadOnly;
|
3026
3134
|
}
|
3135
|
+
export interface UpdateSnaplockConfiguration {
|
3136
|
+
/**
|
3137
|
+
* Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false. If you set AuditLogVolume to true, the SnapLock volume is created as an audit log volume. The minimum retention period for an audit log volume is six months. For more information, see SnapLock audit log volumes.
|
3138
|
+
*/
|
3139
|
+
AuditLogVolume?: Flag;
|
3140
|
+
/**
|
3141
|
+
* The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume.
|
3142
|
+
*/
|
3143
|
+
AutocommitPeriod?: AutocommitPeriod;
|
3144
|
+
/**
|
3145
|
+
* Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Enabling privileged delete allows SnapLock administrators to delete write once, read many (WORM) files even if they have active retention periods. PERMANENTLY_DISABLED is a terminal state. If privileged delete is permanently disabled on a SnapLock volume, you can't re-enable it. The default value is DISABLED. For more information, see Privileged delete.
|
3146
|
+
*/
|
3147
|
+
PrivilegedDelete?: PrivilegedDelete;
|
3148
|
+
/**
|
3149
|
+
* Specifies the retention period of an FSx for ONTAP SnapLock volume.
|
3150
|
+
*/
|
3151
|
+
RetentionPeriod?: SnaplockRetentionPeriod;
|
3152
|
+
/**
|
3153
|
+
* Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. Volume-append mode allows you to create WORM-appendable files and write data to them incrementally. The default value is false. For more information, see Volume-append mode.
|
3154
|
+
*/
|
3155
|
+
VolumeAppendModeEnabled?: Flag;
|
3156
|
+
}
|
3027
3157
|
export interface UpdateSnapshotRequest {
|
3028
3158
|
ClientRequestToken?: ClientRequestToken;
|
3029
3159
|
/**
|