cdk-comprehend-s3olap 2.0.20 → 2.0.23
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appstream-2016-12-01.min.json +39 -24
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +144 -69
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +711 -707
- package/node_modules/aws-sdk/apis/elasticmapreduce-2009-03-31.min.json +131 -128
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +58 -3
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +269 -234
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.examples.json +5 -0
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +1206 -0
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.paginators.json +40 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +253 -103
- package/node_modules/aws-sdk/apis/translate-2017-07-01.min.json +33 -0
- package/node_modules/aws-sdk/apis/translate-2017-07-01.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/appstream.d.ts +22 -3
- package/node_modules/aws-sdk/clients/datasync.d.ts +133 -38
- package/node_modules/aws-sdk/clients/ec2.d.ts +33 -21
- package/node_modules/aws-sdk/clients/elbv2.d.ts +10 -10
- package/node_modules/aws-sdk/clients/emr.d.ts +8 -3
- package/node_modules/aws-sdk/clients/finspacedata.d.ts +64 -3
- package/node_modules/aws-sdk/clients/medialive.d.ts +41 -3
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +1525 -0
- package/node_modules/aws-sdk/clients/redshiftserverless.js +18 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +245 -4
- package/node_modules/aws-sdk/clients/translate.d.ts +70 -18
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +888 -839
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +67 -67
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/s3/managed_upload.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -189,6 +189,39 @@
|
|
189
189
|
}
|
190
190
|
}
|
191
191
|
},
|
192
|
+
"ListLanguages": {
|
193
|
+
"input": {
|
194
|
+
"type": "structure",
|
195
|
+
"members": {
|
196
|
+
"DisplayLanguageCode": {},
|
197
|
+
"NextToken": {},
|
198
|
+
"MaxResults": {
|
199
|
+
"type": "integer"
|
200
|
+
}
|
201
|
+
}
|
202
|
+
},
|
203
|
+
"output": {
|
204
|
+
"type": "structure",
|
205
|
+
"members": {
|
206
|
+
"Languages": {
|
207
|
+
"type": "list",
|
208
|
+
"member": {
|
209
|
+
"type": "structure",
|
210
|
+
"required": [
|
211
|
+
"LanguageName",
|
212
|
+
"LanguageCode"
|
213
|
+
],
|
214
|
+
"members": {
|
215
|
+
"LanguageName": {},
|
216
|
+
"LanguageCode": {}
|
217
|
+
}
|
218
|
+
}
|
219
|
+
},
|
220
|
+
"DisplayLanguageCode": {},
|
221
|
+
"NextToken": {}
|
222
|
+
}
|
223
|
+
}
|
224
|
+
},
|
192
225
|
"ListParallelData": {
|
193
226
|
"input": {
|
194
227
|
"type": "structure",
|
@@ -307,3 +307,4 @@ export import ChimeSDKMediaPipelines = require('./chimesdkmediapipelines');
|
|
307
307
|
export import EMRServerless = require('./emrserverless');
|
308
308
|
export import M2 = require('./m2');
|
309
309
|
export import ConnectCampaigns = require('./connectcampaigns');
|
310
|
+
export import RedshiftServerless = require('./redshiftserverless');
|
@@ -308,5 +308,6 @@ module.exports = {
|
|
308
308
|
ChimeSDKMediaPipelines: require('./chimesdkmediapipelines'),
|
309
309
|
EMRServerless: require('./emrserverless'),
|
310
310
|
M2: require('./m2'),
|
311
|
-
ConnectCampaigns: require('./connectcampaigns')
|
311
|
+
ConnectCampaigns: require('./connectcampaigns'),
|
312
|
+
RedshiftServerless: require('./redshiftserverless')
|
312
313
|
};
|
@@ -509,11 +509,11 @@ declare class AppStream extends Service {
|
|
509
509
|
*/
|
510
510
|
updateEntitlement(callback?: (err: AWSError, data: AppStream.Types.UpdateEntitlementResult) => void): Request<AppStream.Types.UpdateEntitlementResult, AWSError>;
|
511
511
|
/**
|
512
|
-
* Updates the specified fleet. If the fleet is in the STOPPED state, you can update any attribute except the fleet name. If the fleet is in the RUNNING state, you can update the following based on the fleet type: Always-On and On-Demand fleet types You can update the DisplayName, ComputeCapacity, ImageARN, ImageName, IdleDisconnectTimeoutInSeconds, and DisconnectTimeoutInSeconds attributes. Elastic fleet type You can update the DisplayName, IdleDisconnectTimeoutInSeconds, DisconnectTimeoutInSeconds, MaxConcurrentSessions, and UsbDeviceFilterStrings attributes. If the fleet is in the STARTING or STOPPED state, you can't update it.
|
512
|
+
* Updates the specified fleet. If the fleet is in the STOPPED state, you can update any attribute except the fleet name. If the fleet is in the RUNNING state, you can update the following based on the fleet type: Always-On and On-Demand fleet types You can update the DisplayName, ComputeCapacity, ImageARN, ImageName, IdleDisconnectTimeoutInSeconds, and DisconnectTimeoutInSeconds attributes. Elastic fleet type You can update the DisplayName, IdleDisconnectTimeoutInSeconds, DisconnectTimeoutInSeconds, MaxConcurrentSessions, SessionScriptS3Location and UsbDeviceFilterStrings attributes. If the fleet is in the STARTING or STOPPED state, you can't update it.
|
513
513
|
*/
|
514
514
|
updateFleet(params: AppStream.Types.UpdateFleetRequest, callback?: (err: AWSError, data: AppStream.Types.UpdateFleetResult) => void): Request<AppStream.Types.UpdateFleetResult, AWSError>;
|
515
515
|
/**
|
516
|
-
* Updates the specified fleet. If the fleet is in the STOPPED state, you can update any attribute except the fleet name. If the fleet is in the RUNNING state, you can update the following based on the fleet type: Always-On and On-Demand fleet types You can update the DisplayName, ComputeCapacity, ImageARN, ImageName, IdleDisconnectTimeoutInSeconds, and DisconnectTimeoutInSeconds attributes. Elastic fleet type You can update the DisplayName, IdleDisconnectTimeoutInSeconds, DisconnectTimeoutInSeconds, MaxConcurrentSessions, and UsbDeviceFilterStrings attributes. If the fleet is in the STARTING or STOPPED state, you can't update it.
|
516
|
+
* Updates the specified fleet. If the fleet is in the STOPPED state, you can update any attribute except the fleet name. If the fleet is in the RUNNING state, you can update the following based on the fleet type: Always-On and On-Demand fleet types You can update the DisplayName, ComputeCapacity, ImageARN, ImageName, IdleDisconnectTimeoutInSeconds, and DisconnectTimeoutInSeconds attributes. Elastic fleet type You can update the DisplayName, IdleDisconnectTimeoutInSeconds, DisconnectTimeoutInSeconds, MaxConcurrentSessions, SessionScriptS3Location and UsbDeviceFilterStrings attributes. If the fleet is in the STARTING or STOPPED state, you can't update it.
|
517
517
|
*/
|
518
518
|
updateFleet(callback?: (err: AWSError, data: AppStream.Types.UpdateFleetResult) => void): Request<AppStream.Types.UpdateFleetResult, AWSError>;
|
519
519
|
/**
|
@@ -1167,6 +1167,10 @@ declare namespace AppStream {
|
|
1167
1167
|
* The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.
|
1168
1168
|
*/
|
1169
1169
|
EmbedHostDomains?: EmbedHostDomains;
|
1170
|
+
/**
|
1171
|
+
* The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
|
1172
|
+
*/
|
1173
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
1170
1174
|
}
|
1171
1175
|
export interface CreateStackResult {
|
1172
1176
|
/**
|
@@ -2315,6 +2319,7 @@ declare namespace AppStream {
|
|
2315
2319
|
export type Permission = "ENABLED"|"DISABLED"|string;
|
2316
2320
|
export type PlatformType = "WINDOWS"|"WINDOWS_SERVER_2016"|"WINDOWS_SERVER_2019"|"AMAZON_LINUX2"|string;
|
2317
2321
|
export type Platforms = PlatformType[];
|
2322
|
+
export type PreferredProtocol = "TCP"|"UDP"|string;
|
2318
2323
|
export type RedirectURL = string;
|
2319
2324
|
export type RegionName = string;
|
2320
2325
|
export interface ResourceError {
|
@@ -2484,8 +2489,12 @@ declare namespace AppStream {
|
|
2484
2489
|
* The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.
|
2485
2490
|
*/
|
2486
2491
|
EmbedHostDomains?: EmbedHostDomains;
|
2492
|
+
/**
|
2493
|
+
* The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
|
2494
|
+
*/
|
2495
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
2487
2496
|
}
|
2488
|
-
export type StackAttribute = "STORAGE_CONNECTORS"|"STORAGE_CONNECTOR_HOMEFOLDERS"|"STORAGE_CONNECTOR_GOOGLE_DRIVE"|"STORAGE_CONNECTOR_ONE_DRIVE"|"REDIRECT_URL"|"FEEDBACK_URL"|"THEME_NAME"|"USER_SETTINGS"|"EMBED_HOST_DOMAINS"|"IAM_ROLE_ARN"|"ACCESS_ENDPOINTS"|string;
|
2497
|
+
export type StackAttribute = "STORAGE_CONNECTORS"|"STORAGE_CONNECTOR_HOMEFOLDERS"|"STORAGE_CONNECTOR_GOOGLE_DRIVE"|"STORAGE_CONNECTOR_ONE_DRIVE"|"REDIRECT_URL"|"FEEDBACK_URL"|"THEME_NAME"|"USER_SETTINGS"|"EMBED_HOST_DOMAINS"|"IAM_ROLE_ARN"|"ACCESS_ENDPOINTS"|"STREAMING_EXPERIENCE_SETTINGS"|string;
|
2489
2498
|
export type StackAttributes = StackAttribute[];
|
2490
2499
|
export interface StackError {
|
2491
2500
|
/**
|
@@ -2561,6 +2570,12 @@ declare namespace AppStream {
|
|
2561
2570
|
export type StorageConnectorList = StorageConnector[];
|
2562
2571
|
export type StorageConnectorType = "HOMEFOLDERS"|"GOOGLE_DRIVE"|"ONE_DRIVE"|string;
|
2563
2572
|
export type StreamView = "APP"|"DESKTOP"|string;
|
2573
|
+
export interface StreamingExperienceSettings {
|
2574
|
+
/**
|
2575
|
+
* The preferred protocol that you want to use while streaming your application.
|
2576
|
+
*/
|
2577
|
+
PreferredProtocol?: PreferredProtocol;
|
2578
|
+
}
|
2564
2579
|
export type StreamingUrlUserId = string;
|
2565
2580
|
export type String = string;
|
2566
2581
|
export type StringList = String[];
|
@@ -2840,6 +2855,10 @@ declare namespace AppStream {
|
|
2840
2855
|
* The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.
|
2841
2856
|
*/
|
2842
2857
|
EmbedHostDomains?: EmbedHostDomains;
|
2858
|
+
/**
|
2859
|
+
* The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
|
2860
|
+
*/
|
2861
|
+
StreamingExperienceSettings?: StreamingExperienceSettings;
|
2843
2862
|
}
|
2844
2863
|
export interface UpdateStackResult {
|
2845
2864
|
/**
|
@@ -43,6 +43,14 @@ declare class DataSync extends Service {
|
|
43
43
|
* Creates an endpoint for an Amazon FSx for Lustre file system.
|
44
44
|
*/
|
45
45
|
createLocationFsxLustre(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxLustreResponse) => void): Request<DataSync.Types.CreateLocationFsxLustreResponse, AWSError>;
|
46
|
+
/**
|
47
|
+
* Creates an endpoint for an Amazon FSx for NetApp ONTAP file system that DataSync can access for a transfer. For more information, see Creating a location for FSx for ONTAP.
|
48
|
+
*/
|
49
|
+
createLocationFsxOntap(params: DataSync.Types.CreateLocationFsxOntapRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOntapResponse) => void): Request<DataSync.Types.CreateLocationFsxOntapResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Creates an endpoint for an Amazon FSx for NetApp ONTAP file system that DataSync can access for a transfer. For more information, see Creating a location for FSx for ONTAP.
|
52
|
+
*/
|
53
|
+
createLocationFsxOntap(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOntapResponse) => void): Request<DataSync.Types.CreateLocationFsxOntapResponse, AWSError>;
|
46
54
|
/**
|
47
55
|
* Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
48
56
|
*/
|
@@ -76,11 +84,11 @@ declare class DataSync extends Service {
|
|
76
84
|
*/
|
77
85
|
createLocationNfs(callback?: (err: AWSError, data: DataSync.Types.CreateLocationNfsResponse) => void): Request<DataSync.Types.CreateLocationNfsResponse, AWSError>;
|
78
86
|
/**
|
79
|
-
* Creates an endpoint for
|
87
|
+
* Creates an endpoint for an object storage system that DataSync can access for a transfer. For more information, see Creating a location for object storage.
|
80
88
|
*/
|
81
89
|
createLocationObjectStorage(params: DataSync.Types.CreateLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationObjectStorageResponse) => void): Request<DataSync.Types.CreateLocationObjectStorageResponse, AWSError>;
|
82
90
|
/**
|
83
|
-
* Creates an endpoint for
|
91
|
+
* Creates an endpoint for an object storage system that DataSync can access for a transfer. For more information, see Creating a location for object storage.
|
84
92
|
*/
|
85
93
|
createLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.CreateLocationObjectStorageResponse) => void): Request<DataSync.Types.CreateLocationObjectStorageResponse, AWSError>;
|
86
94
|
/**
|
@@ -155,6 +163,14 @@ declare class DataSync extends Service {
|
|
155
163
|
* Returns metadata about an Amazon FSx for Lustre location, such as information about its path.
|
156
164
|
*/
|
157
165
|
describeLocationFsxLustre(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxLustreResponse) => void): Request<DataSync.Types.DescribeLocationFsxLustreResponse, AWSError>;
|
166
|
+
/**
|
167
|
+
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured.
|
168
|
+
*/
|
169
|
+
describeLocationFsxOntap(params: DataSync.Types.DescribeLocationFsxOntapRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOntapResponse) => void): Request<DataSync.Types.DescribeLocationFsxOntapResponse, AWSError>;
|
170
|
+
/**
|
171
|
+
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured.
|
172
|
+
*/
|
173
|
+
describeLocationFsxOntap(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOntapResponse) => void): Request<DataSync.Types.DescribeLocationFsxOntapResponse, AWSError>;
|
158
174
|
/**
|
159
175
|
* Returns metadata about an Amazon FSx for OpenZFS location, such as information about its path.
|
160
176
|
*/
|
@@ -188,11 +204,11 @@ declare class DataSync extends Service {
|
|
188
204
|
*/
|
189
205
|
describeLocationNfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationNfsResponse) => void): Request<DataSync.Types.DescribeLocationNfsResponse, AWSError>;
|
190
206
|
/**
|
191
|
-
* Returns metadata about
|
207
|
+
* Returns metadata about your DataSync location for an object storage system.
|
192
208
|
*/
|
193
209
|
describeLocationObjectStorage(params: DataSync.Types.DescribeLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationObjectStorageResponse) => void): Request<DataSync.Types.DescribeLocationObjectStorageResponse, AWSError>;
|
194
210
|
/**
|
195
|
-
* Returns metadata about
|
211
|
+
* Returns metadata about your DataSync location for an object storage system.
|
196
212
|
*/
|
197
213
|
describeLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationObjectStorageResponse) => void): Request<DataSync.Types.DescribeLocationObjectStorageResponse, AWSError>;
|
198
214
|
/**
|
@@ -436,7 +452,7 @@ declare namespace DataSync {
|
|
436
452
|
*/
|
437
453
|
FileSystemAccessRoleArn?: IamRoleArn;
|
438
454
|
/**
|
439
|
-
* Specifies whether you want DataSync to use TLS encryption when
|
455
|
+
* Specifies whether you want DataSync to use Transport Layer Security (TLS) 1.2 encryption when it copies data to or from the Amazon EFS file system. If you specify an access point using AccessPointArn or an IAM role using FileSystemAccessRoleArn, you must set this parameter to TLS1_2.
|
440
456
|
*/
|
441
457
|
InTransitEncryption?: EfsInTransitEncryption;
|
442
458
|
}
|
@@ -470,6 +486,31 @@ declare namespace DataSync {
|
|
470
486
|
*/
|
471
487
|
LocationArn?: LocationArn;
|
472
488
|
}
|
489
|
+
export interface CreateLocationFsxOntapRequest {
|
490
|
+
Protocol: FsxProtocol;
|
491
|
+
/**
|
492
|
+
* Specifies the security groups that DataSync can use to access your FSx for ONTAP file system. You must configure the security groups to allow outbound traffic on the following ports (depending on the protocol that you're using): Network File System (NFS): TCP port 2049 Server Message Block (SMB): TCP port 445 Your file system's security groups must also allow inbound traffic on the same port.
|
493
|
+
*/
|
494
|
+
SecurityGroupArns: Ec2SecurityGroupArnList;
|
495
|
+
/**
|
496
|
+
* Specifies the ARN of the storage virtual machine (SVM) on your file system where you're copying data to or from.
|
497
|
+
*/
|
498
|
+
StorageVirtualMachineArn: StorageVirtualMachineArn;
|
499
|
+
/**
|
500
|
+
* Specifies the junction path (also known as a mount point) in the SVM volume where you're copying data to or from (for example, /vol1). Don't specify a junction path in the SVM's root volume. For more information, see Managing FSx for ONTAP storage virtual machines in the Amazon FSx for NetApp ONTAP User Guide.
|
501
|
+
*/
|
502
|
+
Subdirectory?: FsxOntapSubdirectory;
|
503
|
+
/**
|
504
|
+
* Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least a name tag for your location.
|
505
|
+
*/
|
506
|
+
Tags?: InputTagList;
|
507
|
+
}
|
508
|
+
export interface CreateLocationFsxOntapResponse {
|
509
|
+
/**
|
510
|
+
* Specifies the ARN of the FSx for ONTAP file system location that you create.
|
511
|
+
*/
|
512
|
+
LocationArn?: LocationArn;
|
513
|
+
}
|
473
514
|
export interface CreateLocationFsxOpenZfsRequest {
|
474
515
|
/**
|
475
516
|
* The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.
|
@@ -624,45 +665,45 @@ declare namespace DataSync {
|
|
624
665
|
}
|
625
666
|
export interface CreateLocationObjectStorageRequest {
|
626
667
|
/**
|
627
|
-
*
|
668
|
+
* Specifies the domain name or IP address of the object storage server. A DataSync agent uses this hostname to mount the object storage server in a network.
|
628
669
|
*/
|
629
670
|
ServerHostname: ServerHostname;
|
630
671
|
/**
|
631
|
-
*
|
672
|
+
* Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
|
632
673
|
*/
|
633
674
|
ServerPort?: ObjectStorageServerPort;
|
634
675
|
/**
|
635
|
-
*
|
676
|
+
* Specifies the protocol that your object storage server uses to communicate.
|
636
677
|
*/
|
637
678
|
ServerProtocol?: ObjectStorageServerProtocol;
|
638
679
|
/**
|
639
|
-
*
|
680
|
+
* Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
|
640
681
|
*/
|
641
682
|
Subdirectory?: S3Subdirectory;
|
642
683
|
/**
|
643
|
-
*
|
684
|
+
* Specifies the name of the object storage bucket involved in the transfer.
|
644
685
|
*/
|
645
686
|
BucketName: ObjectStorageBucketName;
|
646
687
|
/**
|
647
|
-
*
|
688
|
+
* Specifies the access key (for example, a user name) if credentials are required to authenticate with the object storage server.
|
648
689
|
*/
|
649
690
|
AccessKey?: ObjectStorageAccessKey;
|
650
691
|
/**
|
651
|
-
*
|
692
|
+
* Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
|
652
693
|
*/
|
653
694
|
SecretKey?: ObjectStorageSecretKey;
|
654
695
|
/**
|
655
|
-
*
|
696
|
+
* Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can securely connect with your location.
|
656
697
|
*/
|
657
698
|
AgentArns: AgentArnList;
|
658
699
|
/**
|
659
|
-
*
|
700
|
+
* Specifies the key-value pair that represents a tag that you want to add to the resource. Tags can help you manage, filter, and search for your resources. We recommend creating a name tag for your location.
|
660
701
|
*/
|
661
702
|
Tags?: InputTagList;
|
662
703
|
}
|
663
704
|
export interface CreateLocationObjectStorageResponse {
|
664
705
|
/**
|
665
|
-
*
|
706
|
+
* Specifies the ARN of the object storage system location that you create.
|
666
707
|
*/
|
667
708
|
LocationArn?: LocationArn;
|
668
709
|
}
|
@@ -705,7 +746,7 @@ declare namespace DataSync {
|
|
705
746
|
*/
|
706
747
|
ServerHostname: ServerHostname;
|
707
748
|
/**
|
708
|
-
* The user who can mount the share, has the permissions to access files and folders in the SMB share. For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see
|
749
|
+
* The user who can mount the share, has the permissions to access files and folders in the SMB share. For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see the User setting for SMB locations.
|
709
750
|
*/
|
710
751
|
User: SmbUser;
|
711
752
|
/**
|
@@ -868,7 +909,7 @@ declare namespace DataSync {
|
|
868
909
|
*/
|
869
910
|
FileSystemAccessRoleArn?: IamRoleArn;
|
870
911
|
/**
|
871
|
-
*
|
912
|
+
* Describes whether DataSync uses Transport Layer Security (TLS) encryption when copying data to or from the Amazon EFS file system.
|
872
913
|
*/
|
873
914
|
InTransitEncryption?: EfsInTransitEncryption;
|
874
915
|
}
|
@@ -896,6 +937,39 @@ declare namespace DataSync {
|
|
896
937
|
*/
|
897
938
|
CreationTime?: Time;
|
898
939
|
}
|
940
|
+
export interface DescribeLocationFsxOntapRequest {
|
941
|
+
/**
|
942
|
+
* Specifies the Amazon Resource Name (ARN) of the FSx for ONTAP file system location that you want information about.
|
943
|
+
*/
|
944
|
+
LocationArn: LocationArn;
|
945
|
+
}
|
946
|
+
export interface DescribeLocationFsxOntapResponse {
|
947
|
+
/**
|
948
|
+
* The time that the location was created.
|
949
|
+
*/
|
950
|
+
CreationTime?: Time;
|
951
|
+
/**
|
952
|
+
* The ARN of the FSx for ONTAP file system location.
|
953
|
+
*/
|
954
|
+
LocationArn?: LocationArn;
|
955
|
+
/**
|
956
|
+
* The uniform resource identifier (URI) of the FSx for ONTAP file system location.
|
957
|
+
*/
|
958
|
+
LocationUri?: LocationUri;
|
959
|
+
Protocol?: FsxProtocol;
|
960
|
+
/**
|
961
|
+
* The security groups that DataSync uses to access your FSx for ONTAP file system.
|
962
|
+
*/
|
963
|
+
SecurityGroupArns?: Ec2SecurityGroupArnList;
|
964
|
+
/**
|
965
|
+
* The ARN of the storage virtual machine (SVM) on your FSx for ONTAP file system where you're copying data to or from.
|
966
|
+
*/
|
967
|
+
StorageVirtualMachineArn?: StorageVirtualMachineArn;
|
968
|
+
/**
|
969
|
+
* The ARN of the FSx for ONTAP file system.
|
970
|
+
*/
|
971
|
+
FsxFilesystemArn?: FsxFilesystemArn;
|
972
|
+
}
|
899
973
|
export interface DescribeLocationFsxOpenZfsRequest {
|
900
974
|
/**
|
901
975
|
* The Amazon Resource Name (ARN) of the FSx for OpenZFS location to describe.
|
@@ -1039,37 +1113,37 @@ declare namespace DataSync {
|
|
1039
1113
|
}
|
1040
1114
|
export interface DescribeLocationObjectStorageRequest {
|
1041
1115
|
/**
|
1042
|
-
* The Amazon Resource Name (ARN) of the
|
1116
|
+
* The Amazon Resource Name (ARN) of the object storage system location that you want information about.
|
1043
1117
|
*/
|
1044
1118
|
LocationArn: LocationArn;
|
1045
1119
|
}
|
1046
1120
|
export interface DescribeLocationObjectStorageResponse {
|
1047
1121
|
/**
|
1048
|
-
* The
|
1122
|
+
* The ARN of the object storage system location.
|
1049
1123
|
*/
|
1050
1124
|
LocationArn?: LocationArn;
|
1051
1125
|
/**
|
1052
|
-
* The URL of the
|
1126
|
+
* The URL of the object storage system location.
|
1053
1127
|
*/
|
1054
1128
|
LocationUri?: LocationUri;
|
1055
1129
|
/**
|
1056
|
-
*
|
1130
|
+
* The access key (for example, a user name) required to authenticate with the object storage server.
|
1057
1131
|
*/
|
1058
1132
|
AccessKey?: ObjectStorageAccessKey;
|
1059
1133
|
/**
|
1060
|
-
* The port that your
|
1134
|
+
* The port that your object storage server accepts inbound network traffic on (for example, port 443).
|
1061
1135
|
*/
|
1062
1136
|
ServerPort?: ObjectStorageServerPort;
|
1063
1137
|
/**
|
1064
|
-
* The protocol that
|
1138
|
+
* The protocol that your object storage server uses to communicate.
|
1065
1139
|
*/
|
1066
1140
|
ServerProtocol?: ObjectStorageServerProtocol;
|
1067
1141
|
/**
|
1068
|
-
* The
|
1142
|
+
* The ARNs of the DataSync agents that can securely connect with your location.
|
1069
1143
|
*/
|
1070
1144
|
AgentArns?: AgentArnList;
|
1071
1145
|
/**
|
1072
|
-
* The time that the
|
1146
|
+
* The time that the location was created.
|
1073
1147
|
*/
|
1074
1148
|
CreationTime?: Time;
|
1075
1149
|
}
|
@@ -1301,16 +1375,36 @@ declare namespace DataSync {
|
|
1301
1375
|
export type FilterValues = FilterAttributeValue[];
|
1302
1376
|
export type FsxFilesystemArn = string;
|
1303
1377
|
export type FsxLustreSubdirectory = string;
|
1378
|
+
export type FsxOntapSubdirectory = string;
|
1304
1379
|
export type FsxOpenZfsSubdirectory = string;
|
1305
1380
|
export interface FsxProtocol {
|
1306
1381
|
/**
|
1307
|
-
*
|
1382
|
+
* Specifies the Network File System (NFS) protocol configuration that DataSync uses to access your FSx for OpenZFS file system or FSx for ONTAP file system's storage virtual machine (SVM).
|
1308
1383
|
*/
|
1309
1384
|
NFS?: FsxProtocolNfs;
|
1385
|
+
/**
|
1386
|
+
* Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your FSx for ONTAP file system's SVM.
|
1387
|
+
*/
|
1388
|
+
SMB?: FsxProtocolSmb;
|
1310
1389
|
}
|
1311
1390
|
export interface FsxProtocolNfs {
|
1312
1391
|
MountOptions?: NfsMountOptions;
|
1313
1392
|
}
|
1393
|
+
export interface FsxProtocolSmb {
|
1394
|
+
/**
|
1395
|
+
* Specifies the fully qualified domain name (FQDN) of the Microsoft Active Directory that your storage virtual machine (SVM) belongs to.
|
1396
|
+
*/
|
1397
|
+
Domain?: SmbDomain;
|
1398
|
+
MountOptions?: SmbMountOptions;
|
1399
|
+
/**
|
1400
|
+
* Specifies the password of a user who has permission to access your SVM.
|
1401
|
+
*/
|
1402
|
+
Password: SmbPassword;
|
1403
|
+
/**
|
1404
|
+
* Specifies a user who has permission to access your SVM.
|
1405
|
+
*/
|
1406
|
+
User: SmbUser;
|
1407
|
+
}
|
1314
1408
|
export type FsxWindowsSubdirectory = string;
|
1315
1409
|
export type Gid = "NONE"|"INT_VALUE"|"NAME"|"BOTH"|string;
|
1316
1410
|
export type HdfsAuthenticationType = "SIMPLE"|"KERBEROS"|string;
|
@@ -1492,7 +1586,7 @@ declare namespace DataSync {
|
|
1492
1586
|
export type NextToken = string;
|
1493
1587
|
export interface NfsMountOptions {
|
1494
1588
|
/**
|
1495
|
-
*
|
1589
|
+
* Specifies the NFS version that you want DataSync to use when mounting your NFS share. If the server refuses to use the version specified, the task fails. You can specify the following options: AUTOMATIC (default): DataSync chooses NFS version 4.1. NFS3: Stateless protocol version that allows for asynchronous writes on the server. NFSv4_0: Stateful, firewall-friendly protocol version that supports delegations and pseudo file systems. NFSv4_1: Stateful protocol version that supports sessions, directory delegations, and parallel data processing. NFS version 4.1 also includes all features available in version 4.0. DataSync currently only supports NFS version 3 with Amazon FSx for NetApp ONTAP locations.
|
1496
1590
|
*/
|
1497
1591
|
Version?: NfsVersion;
|
1498
1592
|
}
|
@@ -1513,7 +1607,7 @@ declare namespace DataSync {
|
|
1513
1607
|
export type Operator = "Equals"|"NotEquals"|"In"|"LessThanOrEqual"|"LessThan"|"GreaterThanOrEqual"|"GreaterThan"|"Contains"|"NotContains"|"BeginsWith"|string;
|
1514
1608
|
export interface Options {
|
1515
1609
|
/**
|
1516
|
-
* A value that determines whether a data integrity verification should be performed at the end of a task execution after all data and metadata have been transferred. For more information, see Configure task settings. Default value: POINT_IN_TIME_CONSISTENT
|
1610
|
+
* A value that determines whether a data integrity verification should be performed at the end of a task execution after all data and metadata have been transferred. For more information, see Configure task settings. Default value: POINT_IN_TIME_CONSISTENT ONLY_FILES_TRANSFERRED (recommended): Perform verification only on files that were transferred. POINT_IN_TIME_CONSISTENT: Scan the entire source and entire destination at the end of the transfer to verify that source and destination are fully synchronized. This option isn't supported when transferring to S3 Glacier Flexible Retrieval or S3 Glacier Deep Archive storage classes. NONE: No additional verification is done at the end of the transfer, but all data transmissions are integrity-checked with checksum verification during the transfer.
|
1517
1611
|
*/
|
1518
1612
|
VerifyMode?: VerifyMode;
|
1519
1613
|
/**
|
@@ -1521,31 +1615,31 @@ declare namespace DataSync {
|
|
1521
1615
|
*/
|
1522
1616
|
OverwriteMode?: OverwriteMode;
|
1523
1617
|
/**
|
1524
|
-
* A file metadata value that shows the last time a file was accessed (that is, when the file was read or written to). If you set Atime to BEST_EFFORT, DataSync attempts to preserve the original Atime attribute on all source files (that is, the version before the PREPARING phase). However, Atime's behavior is not fully standard across platforms, so DataSync can only do this on a best-effort basis. Default value: BEST_EFFORT
|
1618
|
+
* A file metadata value that shows the last time a file was accessed (that is, when the file was read or written to). If you set Atime to BEST_EFFORT, DataSync attempts to preserve the original Atime attribute on all source files (that is, the version before the PREPARING phase). However, Atime's behavior is not fully standard across platforms, so DataSync can only do this on a best-effort basis. Default value: BEST_EFFORT BEST_EFFORT: Attempt to preserve the per-file Atime value (recommended). NONE: Ignore Atime. If Atime is set to BEST_EFFORT, Mtime must be set to PRESERVE. If Atime is set to NONE, Mtime must also be NONE.
|
1525
1619
|
*/
|
1526
1620
|
Atime?: Atime;
|
1527
1621
|
/**
|
1528
|
-
* A value that indicates the last time that a file was modified (that is, a file was written to) before the PREPARING phase. This option is required for cases when you need to run the same task more than one time. Default Value: PRESERVE
|
1622
|
+
* A value that indicates the last time that a file was modified (that is, a file was written to) before the PREPARING phase. This option is required for cases when you need to run the same task more than one time. Default Value: PRESERVE PRESERVE: Preserve original Mtime (recommended) NONE: Ignore Mtime. If Mtime is set to PRESERVE, Atime must be set to BEST_EFFORT. If Mtime is set to NONE, Atime must also be set to NONE.
|
1529
1623
|
*/
|
1530
1624
|
Mtime?: Mtime;
|
1531
1625
|
/**
|
1532
|
-
* The POSIX user ID (UID) of the file's owner.
|
1626
|
+
* The POSIX user ID (UID) of the file's owner. For more information, see Metadata copied by DataSync. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of UID and group ID (GID) (recommended). NONE: Ignore UID and GID.
|
1533
1627
|
*/
|
1534
1628
|
Uid?: Uid;
|
1535
1629
|
/**
|
1536
|
-
* The POSIX group ID (GID) of the file's owners.
|
1630
|
+
* The POSIX group ID (GID) of the file's owners. For more information, see Metadata copied by DataSync. Default value: INT_VALUE. This preserves the integer value of the ID. INT_VALUE: Preserve the integer value of user ID (UID) and GID (recommended). NONE: Ignore UID and GID.
|
1537
1631
|
*/
|
1538
1632
|
Gid?: Gid;
|
1539
1633
|
/**
|
1540
|
-
* A value that specifies whether files in the destination that don't exist in the source file system should be preserved. This option can affect your storage cost. If your task deletes objects, you might incur minimum storage duration charges for certain storage classes. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync in the DataSync User Guide. Default value: PRESERVE
|
1634
|
+
* A value that specifies whether files in the destination that don't exist in the source file system should be preserved. This option can affect your storage cost. If your task deletes objects, you might incur minimum storage duration charges for certain storage classes. For detailed information, see Considerations when working with Amazon S3 storage classes in DataSync in the DataSync User Guide. Default value: PRESERVE PRESERVE: Ignore such destination files (recommended). REMOVE: Delete destination files that aren’t present in the source.
|
1541
1635
|
*/
|
1542
1636
|
PreserveDeletedFiles?: PreserveDeletedFiles;
|
1543
1637
|
/**
|
1544
|
-
* A value that determines whether DataSync should preserve the metadata of block and character devices in the source file system, and re-create the files with that device name and metadata on the destination. DataSync does not copy the contents of such devices, only the name and metadata. DataSync can't sync the actual contents of such devices, because they are nonterminal and don't return an end-of-file (EOF) marker. Default value: NONE
|
1638
|
+
* A value that determines whether DataSync should preserve the metadata of block and character devices in the source file system, and re-create the files with that device name and metadata on the destination. DataSync does not copy the contents of such devices, only the name and metadata. DataSync can't sync the actual contents of such devices, because they are nonterminal and don't return an end-of-file (EOF) marker. Default value: NONE NONE: Ignore special devices (recommended). PRESERVE: Preserve character and block device metadata. This option isn't currently supported for Amazon EFS.
|
1545
1639
|
*/
|
1546
1640
|
PreserveDevices?: PreserveDevices;
|
1547
1641
|
/**
|
1548
|
-
* A value that determines which users or groups can access a file for a specific purpose such as reading, writing, or execution of the file.
|
1642
|
+
* A value that determines which users or groups can access a file for a specific purpose such as reading, writing, or execution of the file. For more information, see Metadata copied by DataSync. Default value: PRESERVE PRESERVE: Preserve POSIX-style permissions (recommended). NONE: Ignore permissions. DataSync can preserve extant permissions of a source location.
|
1549
1643
|
*/
|
1550
1644
|
PosixPermissions?: PosixPermissions;
|
1551
1645
|
/**
|
@@ -1561,11 +1655,11 @@ declare namespace DataSync {
|
|
1561
1655
|
*/
|
1562
1656
|
LogLevel?: LogLevel;
|
1563
1657
|
/**
|
1564
|
-
* A value that determines whether DataSync transfers only the data and metadata that differ between the source and the destination location, or whether DataSync transfers all the content from the source, without comparing to the destination location.
|
1658
|
+
* A value that determines whether DataSync transfers only the data and metadata that differ between the source and the destination location, or whether DataSync transfers all the content from the source, without comparing to the destination location. CHANGED: DataSync copies only data or metadata that is new or different content from the source location to the destination location. ALL: DataSync copies all source location content to the destination, without comparing to existing content on the destination.
|
1565
1659
|
*/
|
1566
1660
|
TransferMode?: TransferMode;
|
1567
1661
|
/**
|
1568
|
-
* A value that determines which components of the SMB security descriptor are copied from source to destination objects. This value is only used for transfers between SMB and Amazon FSx for Windows File Server locations, or between two Amazon FSx for Windows File Server locations. For more information about how DataSync handles metadata, see How DataSync Handles Metadata and Special Files. Default value: OWNER_DACL
|
1662
|
+
* A value that determines which components of the SMB security descriptor are copied from source to destination objects. This value is only used for transfers between SMB and Amazon FSx for Windows File Server locations, or between two Amazon FSx for Windows File Server locations. For more information about how DataSync handles metadata, see How DataSync Handles Metadata and Special Files. Default value: OWNER_DACL OWNER_DACL: For each copied object, DataSync copies the following metadata: Object owner. NTFS discretionary access control lists (DACLs), which determine whether to grant access to an object. When choosing this option, DataSync does NOT copy the NTFS system access control lists (SACLs), which are used by administrators to log attempts to access a secured object. OWNER_DACL_SACL: For each copied object, DataSync copies the following metadata: Object owner. NTFS discretionary access control lists (DACLs), which determine whether to grant access to an object. NTFS system access control lists (SACLs), which are used by administrators to log attempts to access a secured object. Copying SACLs requires granting additional permissions to the Windows user that DataSync uses to access your SMB location. For information about choosing a user that ensures sufficient permissions to files, folders, and metadata, see user. NONE: None of the SMB security descriptor components are copied. Destination objects are owned by the user that was provided for accessing the destination location. DACLs and SACLs are set based on the destination server’s configuration.
|
1569
1663
|
*/
|
1570
1664
|
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags;
|
1571
1665
|
/**
|
@@ -1623,7 +1717,7 @@ declare namespace DataSync {
|
|
1623
1717
|
export type SmbDomain = string;
|
1624
1718
|
export interface SmbMountOptions {
|
1625
1719
|
/**
|
1626
|
-
*
|
1720
|
+
* Specifies the SMB version that you want DataSync to use when mounting your SMB share. If you don't specify a version, DataSync defaults to AUTOMATIC and chooses a version based on negotiation with the SMB server.
|
1627
1721
|
*/
|
1628
1722
|
Version?: SmbVersion;
|
1629
1723
|
}
|
@@ -1654,6 +1748,7 @@ declare namespace DataSync {
|
|
1654
1748
|
*/
|
1655
1749
|
TaskExecutionArn?: TaskExecutionArn;
|
1656
1750
|
}
|
1751
|
+
export type StorageVirtualMachineArn = string;
|
1657
1752
|
export type TagKey = string;
|
1658
1753
|
export type TagKeyList = TagKey[];
|
1659
1754
|
export interface TagListEntry {
|