cdk-docker-image-deployment 0.0.51 → 0.0.53
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/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/accessanalyzer-2019-11-01.min.json +153 -80
- package/node_modules/aws-sdk/apis/acm-pca-2017-08-22.min.json +13 -11
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +383 -95
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +40 -28
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.examples.json +5 -0
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +674 -643
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.paginators.json +50 -50
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +286 -284
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +150 -84
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +111 -1
- package/node_modules/aws-sdk/clients/acmpca.d.ts +10 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +542 -157
- package/node_modules/aws-sdk/clients/datasync.d.ts +45 -28
- package/node_modules/aws-sdk/clients/location.d.ts +8 -8
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +256 -256
- package/node_modules/aws-sdk/clients/rds.d.ts +12 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +71 -1
- package/node_modules/aws-sdk/clients/workspaces.d.ts +11 -11
- 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 +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +290 -288
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +7 -7
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/model/api.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -12,19 +12,19 @@ declare class DataSync extends Service {
|
|
|
12
12
|
constructor(options?: DataSync.Types.ClientConfiguration)
|
|
13
13
|
config: Config & DataSync.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Stops an DataSync task execution that's in progress. The transfer of some files are abruptly interrupted. File contents that're transferred to the destination might be incomplete or inconsistent with the source files. However, if you start a new task execution using the same task and allow it to finish, file content on the destination will be complete and consistent. This applies to other unexpected failures that interrupt a task execution. In all of these cases, DataSync successfully completes the transfer when you start the next task execution.
|
|
16
16
|
*/
|
|
17
17
|
cancelTaskExecution(params: DataSync.Types.CancelTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.CancelTaskExecutionResponse) => void): Request<DataSync.Types.CancelTaskExecutionResponse, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Stops an DataSync task execution that's in progress. The transfer of some files are abruptly interrupted. File contents that're transferred to the destination might be incomplete or inconsistent with the source files. However, if you start a new task execution using the same task and allow it to finish, file content on the destination will be complete and consistent. This applies to other unexpected failures that interrupt a task execution. In all of these cases, DataSync successfully completes the transfer when you start the next task execution.
|
|
20
20
|
*/
|
|
21
21
|
cancelTaskExecution(callback?: (err: AWSError, data: DataSync.Types.CancelTaskExecutionResponse) => void): Request<DataSync.Types.CancelTaskExecutionResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Activates an DataSync agent that you have deployed
|
|
23
|
+
* Activates an DataSync agent that you have deployed in your storage environment. The activation process associates your agent with your account. In the activation process, you specify information such as the Amazon Web Services Region that you want to activate the agent in. You activate the agent in the Amazon Web Services Region where your target locations (in Amazon S3 or Amazon EFS) reside. Your tasks are created in this Amazon Web Services Region. You can activate the agent in a VPC (virtual private cloud) or provide the agent access to a VPC endpoint so you can run tasks without going over the public internet. You can use an agent for more than one location. If a task uses multiple agents, all of them need to have status AVAILABLE for the task to run. If you use multiple agents for a source location, the status of all the agents must be AVAILABLE for the task to run. Agents are automatically updated by Amazon Web Services on a regular basis, using a mechanism that ensures minimal interruption to your tasks.
|
|
24
24
|
*/
|
|
25
25
|
createAgent(params: DataSync.Types.CreateAgentRequest, callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Activates an DataSync agent that you have deployed
|
|
27
|
+
* Activates an DataSync agent that you have deployed in your storage environment. The activation process associates your agent with your account. In the activation process, you specify information such as the Amazon Web Services Region that you want to activate the agent in. You activate the agent in the Amazon Web Services Region where your target locations (in Amazon S3 or Amazon EFS) reside. Your tasks are created in this Amazon Web Services Region. You can activate the agent in a VPC (virtual private cloud) or provide the agent access to a VPC endpoint so you can run tasks without going over the public internet. You can use an agent for more than one location. If a task uses multiple agents, all of them need to have status AVAILABLE for the task to run. If you use multiple agents for a source location, the status of all the agents must be AVAILABLE for the task to run. Agents are automatically updated by Amazon Web Services on a regular basis, using a mechanism that ensures minimal interruption to your tasks.
|
|
28
28
|
*/
|
|
29
29
|
createAgent(callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
|
|
30
30
|
/**
|
|
@@ -52,11 +52,11 @@ declare class DataSync extends Service {
|
|
|
52
52
|
*/
|
|
53
53
|
createLocationFsxOntap(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOntapResponse) => void): Request<DataSync.Types.CreateLocationFsxOntapResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
|
55
|
+
* Creates an endpoint for an Amazon FSx for OpenZFS file system that DataSync can access for a transfer. For more information, see Creating a location for FSx for OpenZFS. Request parameters related to SMB aren't supported with the CreateLocationFsxOpenZfs operation.
|
|
56
56
|
*/
|
|
57
57
|
createLocationFsxOpenZfs(params: DataSync.Types.CreateLocationFsxOpenZfsRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.CreateLocationFsxOpenZfsResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
|
59
|
+
* Creates an endpoint for an Amazon FSx for OpenZFS file system that DataSync can access for a transfer. For more information, see Creating a location for FSx for OpenZFS. Request parameters related to SMB aren't supported with the CreateLocationFsxOpenZfs operation.
|
|
60
60
|
*/
|
|
61
61
|
createLocationFsxOpenZfs(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.CreateLocationFsxOpenZfsResponse, AWSError>;
|
|
62
62
|
/**
|
|
@@ -92,11 +92,11 @@ declare class DataSync extends Service {
|
|
|
92
92
|
*/
|
|
93
93
|
createLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.CreateLocationObjectStorageResponse) => void): Request<DataSync.Types.CreateLocationObjectStorageResponse, AWSError>;
|
|
94
94
|
/**
|
|
95
|
-
* Creates an endpoint for an Amazon S3 bucket. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
95
|
+
* Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
96
96
|
*/
|
|
97
97
|
createLocationS3(params: DataSync.Types.CreateLocationS3Request, callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
|
|
98
98
|
/**
|
|
99
|
-
* Creates an endpoint for an Amazon S3 bucket. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
99
|
+
* Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
100
100
|
*/
|
|
101
101
|
createLocationS3(callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
|
|
102
102
|
/**
|
|
@@ -156,27 +156,27 @@ declare class DataSync extends Service {
|
|
|
156
156
|
*/
|
|
157
157
|
describeLocationEfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationEfsResponse) => void): Request<DataSync.Types.DescribeLocationEfsResponse, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* Provides details about how an DataSync location for an Amazon FSx for Lustre file system is configured.
|
|
160
160
|
*/
|
|
161
161
|
describeLocationFsxLustre(params: DataSync.Types.DescribeLocationFsxLustreRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxLustreResponse) => void): Request<DataSync.Types.DescribeLocationFsxLustreResponse, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
*
|
|
163
|
+
* Provides details about how an DataSync location for an Amazon FSx for Lustre file system is configured.
|
|
164
164
|
*/
|
|
165
165
|
describeLocationFsxLustre(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxLustreResponse) => void): Request<DataSync.Types.DescribeLocationFsxLustreResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured.
|
|
167
|
+
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured. If your location uses SMB, the DescribeLocationFsxOntap operation doesn't actually return a Password.
|
|
168
168
|
*/
|
|
169
169
|
describeLocationFsxOntap(params: DataSync.Types.DescribeLocationFsxOntapRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOntapResponse) => void): Request<DataSync.Types.DescribeLocationFsxOntapResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured.
|
|
171
|
+
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured. If your location uses SMB, the DescribeLocationFsxOntap operation doesn't actually return a Password.
|
|
172
172
|
*/
|
|
173
173
|
describeLocationFsxOntap(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOntapResponse) => void): Request<DataSync.Types.DescribeLocationFsxOntapResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* Provides details about how an DataSync location for an Amazon FSx for OpenZFS file system is configured. Response elements related to SMB aren't supported with the DescribeLocationFsxOpenZfs operation.
|
|
176
176
|
*/
|
|
177
177
|
describeLocationFsxOpenZfs(params: DataSync.Types.DescribeLocationFsxOpenZfsRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.DescribeLocationFsxOpenZfsResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* Provides details about how an DataSync location for an Amazon FSx for OpenZFS file system is configured. Response elements related to SMB aren't supported with the DescribeLocationFsxOpenZfs operation.
|
|
180
180
|
*/
|
|
181
181
|
describeLocationFsxOpenZfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.DescribeLocationFsxOpenZfsResponse, AWSError>;
|
|
182
182
|
/**
|
|
@@ -332,11 +332,11 @@ declare class DataSync extends Service {
|
|
|
332
332
|
*/
|
|
333
333
|
updateLocationNfs(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationNfsResponse) => void): Request<DataSync.Types.UpdateLocationNfsResponse, AWSError>;
|
|
334
334
|
/**
|
|
335
|
-
* Updates some
|
|
335
|
+
* Updates some parameters of an existing object storage location that DataSync accesses for a transfer. For information about creating a self-managed object storage location, see Creating a location for object storage.
|
|
336
336
|
*/
|
|
337
337
|
updateLocationObjectStorage(params: DataSync.Types.UpdateLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
|
|
338
338
|
/**
|
|
339
|
-
* Updates some
|
|
339
|
+
* Updates some parameters of an existing object storage location that DataSync accesses for a transfer. For information about creating a self-managed object storage location, see Creating a location for object storage.
|
|
340
340
|
*/
|
|
341
341
|
updateLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
|
|
342
342
|
/**
|
|
@@ -388,7 +388,7 @@ declare namespace DataSync {
|
|
|
388
388
|
export type BytesPerSecond = number;
|
|
389
389
|
export interface CancelTaskExecutionRequest {
|
|
390
390
|
/**
|
|
391
|
-
* The Amazon Resource Name (ARN) of the task execution to
|
|
391
|
+
* The Amazon Resource Name (ARN) of the task execution to stop.
|
|
392
392
|
*/
|
|
393
393
|
TaskExecutionArn: TaskExecutionArn;
|
|
394
394
|
}
|
|
@@ -700,6 +700,10 @@ declare namespace DataSync {
|
|
|
700
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.
|
|
701
701
|
*/
|
|
702
702
|
Tags?: InputTagList;
|
|
703
|
+
/**
|
|
704
|
+
* Specifies a certificate to authenticate with an object storage system that uses a private or self-signed certificate authority (CA). You must specify a Base64-encoded .pem file (for example, file:///home/user/.ssh/storage_sys_certificate.pem). The certificate can be up to 32768 bytes (before Base64 encoding). To use this parameter, configure ServerProtocol to HTTPS.
|
|
705
|
+
*/
|
|
706
|
+
ServerCertificate?: ObjectStorageCertificate;
|
|
703
707
|
}
|
|
704
708
|
export interface CreateLocationObjectStorageResponse {
|
|
705
709
|
/**
|
|
@@ -1127,7 +1131,7 @@ declare namespace DataSync {
|
|
|
1127
1131
|
*/
|
|
1128
1132
|
LocationUri?: LocationUri;
|
|
1129
1133
|
/**
|
|
1130
|
-
* The access key (for example, a user name) required to authenticate with the object storage
|
|
1134
|
+
* The access key (for example, a user name) required to authenticate with the object storage system.
|
|
1131
1135
|
*/
|
|
1132
1136
|
AccessKey?: ObjectStorageAccessKey;
|
|
1133
1137
|
/**
|
|
@@ -1135,7 +1139,7 @@ declare namespace DataSync {
|
|
|
1135
1139
|
*/
|
|
1136
1140
|
ServerPort?: ObjectStorageServerPort;
|
|
1137
1141
|
/**
|
|
1138
|
-
* The protocol that your object storage
|
|
1142
|
+
* The protocol that your object storage system uses to communicate.
|
|
1139
1143
|
*/
|
|
1140
1144
|
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1141
1145
|
/**
|
|
@@ -1146,6 +1150,10 @@ declare namespace DataSync {
|
|
|
1146
1150
|
* The time that the location was created.
|
|
1147
1151
|
*/
|
|
1148
1152
|
CreationTime?: Time;
|
|
1153
|
+
/**
|
|
1154
|
+
* The self-signed certificate that DataSync uses to securely authenticate with your object storage system.
|
|
1155
|
+
*/
|
|
1156
|
+
ServerCertificate?: ObjectStorageCertificate;
|
|
1149
1157
|
}
|
|
1150
1158
|
export interface DescribeLocationS3Request {
|
|
1151
1159
|
/**
|
|
@@ -1229,11 +1237,11 @@ declare namespace DataSync {
|
|
|
1229
1237
|
Status?: TaskExecutionStatus;
|
|
1230
1238
|
Options?: Options;
|
|
1231
1239
|
/**
|
|
1232
|
-
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1240
|
+
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1233
1241
|
*/
|
|
1234
1242
|
Excludes?: FilterList;
|
|
1235
1243
|
/**
|
|
1236
|
-
* A list of filter rules that determines which files to include when running a task. The list should contain a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1244
|
+
* A list of filter rules that determines which files to include when running a task. The list should contain a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1237
1245
|
*/
|
|
1238
1246
|
Includes?: FilterList;
|
|
1239
1247
|
/**
|
|
@@ -1264,6 +1272,10 @@ declare namespace DataSync {
|
|
|
1264
1272
|
* The result of the task execution.
|
|
1265
1273
|
*/
|
|
1266
1274
|
Result?: TaskExecutionResultDetail;
|
|
1275
|
+
/**
|
|
1276
|
+
* The physical number of bytes transferred over the network after compression was applied. In most cases, this number is less than BytesTransferred.
|
|
1277
|
+
*/
|
|
1278
|
+
BytesCompressed?: long;
|
|
1267
1279
|
}
|
|
1268
1280
|
export interface DescribeTaskRequest {
|
|
1269
1281
|
/**
|
|
@@ -1594,6 +1606,7 @@ declare namespace DataSync {
|
|
|
1594
1606
|
export type NfsVersion = "AUTOMATIC"|"NFS3"|"NFS4_0"|"NFS4_1"|string;
|
|
1595
1607
|
export type ObjectStorageAccessKey = string;
|
|
1596
1608
|
export type ObjectStorageBucketName = string;
|
|
1609
|
+
export type ObjectStorageCertificate = Buffer|Uint8Array|Blob|string;
|
|
1597
1610
|
export type ObjectStorageSecretKey = string;
|
|
1598
1611
|
export type ObjectStorageServerPort = number;
|
|
1599
1612
|
export type ObjectStorageServerProtocol = "HTTPS"|"HTTP"|string;
|
|
@@ -1965,33 +1978,37 @@ declare namespace DataSync {
|
|
|
1965
1978
|
}
|
|
1966
1979
|
export interface UpdateLocationObjectStorageRequest {
|
|
1967
1980
|
/**
|
|
1968
|
-
*
|
|
1981
|
+
* Specifies the ARN of the object storage system location that you're updating.
|
|
1969
1982
|
*/
|
|
1970
1983
|
LocationArn: LocationArn;
|
|
1971
1984
|
/**
|
|
1972
|
-
*
|
|
1985
|
+
* Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
|
|
1973
1986
|
*/
|
|
1974
1987
|
ServerPort?: ObjectStorageServerPort;
|
|
1975
1988
|
/**
|
|
1976
|
-
*
|
|
1989
|
+
* Specifies the protocol that your object storage server uses to communicate.
|
|
1977
1990
|
*/
|
|
1978
1991
|
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1979
1992
|
/**
|
|
1980
|
-
*
|
|
1993
|
+
* 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.
|
|
1981
1994
|
*/
|
|
1982
1995
|
Subdirectory?: S3Subdirectory;
|
|
1983
1996
|
/**
|
|
1984
|
-
*
|
|
1997
|
+
* Specifies the access key (for example, a user name) if credentials are required to authenticate with the object storage server.
|
|
1985
1998
|
*/
|
|
1986
1999
|
AccessKey?: ObjectStorageAccessKey;
|
|
1987
2000
|
/**
|
|
1988
|
-
*
|
|
2001
|
+
* Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
|
|
1989
2002
|
*/
|
|
1990
2003
|
SecretKey?: ObjectStorageSecretKey;
|
|
1991
2004
|
/**
|
|
1992
|
-
*
|
|
2005
|
+
* Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can securely connect with your location.
|
|
1993
2006
|
*/
|
|
1994
2007
|
AgentArns?: AgentArnList;
|
|
2008
|
+
/**
|
|
2009
|
+
* Specifies a certificate to authenticate with an object storage system that uses a private or self-signed certificate authority (CA). You must specify a Base64-encoded .pem file (for example, file:///home/user/.ssh/storage_sys_certificate.pem). The certificate can be up to 32768 bytes (before Base64 encoding). To use this parameter, configure ServerProtocol to HTTPS. Updating the certificate doesn't interfere with tasks that you have in progress.
|
|
2010
|
+
*/
|
|
2011
|
+
ServerCertificate?: ObjectStorageCertificate;
|
|
1995
2012
|
}
|
|
1996
2013
|
export interface UpdateLocationObjectStorageResponse {
|
|
1997
2014
|
}
|
|
@@ -915,7 +915,7 @@ declare namespace Location {
|
|
|
915
915
|
}
|
|
916
916
|
export interface CreateMapRequest {
|
|
917
917
|
/**
|
|
918
|
-
* Specifies the map style
|
|
918
|
+
* Specifies the MapConfiguration, including the map style, for the map resource that you create. The map style defines the look of maps and the data provider for your map resource.
|
|
919
919
|
*/
|
|
920
920
|
Configuration: MapConfiguration;
|
|
921
921
|
/**
|
|
@@ -941,7 +941,7 @@ declare namespace Location {
|
|
|
941
941
|
*/
|
|
942
942
|
CreateTime: Timestamp;
|
|
943
943
|
/**
|
|
944
|
-
* The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all AWS. Format example: arn:aws:geo:region:account-id:
|
|
944
|
+
* The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all AWS. Format example: arn:aws:geo:region:account-id:map/ExampleMap
|
|
945
945
|
*/
|
|
946
946
|
MapArn: GeoArn;
|
|
947
947
|
/**
|
|
@@ -1183,7 +1183,7 @@ declare namespace Location {
|
|
|
1183
1183
|
*/
|
|
1184
1184
|
Description: ResourceDescription;
|
|
1185
1185
|
/**
|
|
1186
|
-
* The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all AWS. Format example: arn:aws:geo:region:account-id:
|
|
1186
|
+
* The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all AWS. Format example: arn:aws:geo:region:account-id:map/ExampleMap
|
|
1187
1187
|
*/
|
|
1188
1188
|
MapArn: GeoArn;
|
|
1189
1189
|
/**
|
|
@@ -1406,7 +1406,7 @@ declare namespace Location {
|
|
|
1406
1406
|
*/
|
|
1407
1407
|
Circle?: Circle;
|
|
1408
1408
|
/**
|
|
1409
|
-
*
|
|
1409
|
+
* A polygon is a list of linear rings which are each made up of a list of vertices. Each vertex is a 2-dimensional point of the form: [longitude, latitude]. This is represented as an array of doubles of length 2 (so [double, double]). An array of 4 or more vertices, where the first and last vertex are the same (to form a closed boundary), is called a linear ring. The linear ring vertices must be listed in counter-clockwise order around the ring’s interior. The linear ring is represented as an array of vertices, or an array of arrays of doubles ([[double, double], ...]). A geofence consists of a single linear ring. To allow for future expansion, the Polygon parameter takes an array of linear rings, which is represented as an array of arrays of arrays of doubles ([[[double, double], ...], ...]). A linear ring for use in geofences can consist of between 4 and 1,000 vertices.
|
|
1410
1410
|
*/
|
|
1411
1411
|
Polygon?: LinearRings;
|
|
1412
1412
|
}
|
|
@@ -1517,7 +1517,7 @@ declare namespace Location {
|
|
|
1517
1517
|
}
|
|
1518
1518
|
export interface GetMapGlyphsRequest {
|
|
1519
1519
|
/**
|
|
1520
|
-
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts stacks for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid font stacks for HERE Technologies styles: VectorHereContrast – Fira GO Regular | Fira GO Bold VectorHereExplore, VectorHereExploreTruck –
|
|
1520
|
+
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts stacks for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid font stacks for HERE Technologies styles: VectorHereContrast – Fira GO Regular | Fira GO Bold VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic | Fira GO Map | Fira GO Map Bold | Noto Sans CJK JP Bold | Noto Sans CJK JP Light | Noto Sans CJK JP Regular
|
|
1521
1521
|
*/
|
|
1522
1522
|
FontStack: String;
|
|
1523
1523
|
/**
|
|
@@ -2046,7 +2046,7 @@ declare namespace Location {
|
|
|
2046
2046
|
export type ListTrackersResponseEntryList = ListTrackersResponseEntry[];
|
|
2047
2047
|
export interface MapConfiguration {
|
|
2048
2048
|
/**
|
|
2049
|
-
* Specifies the map style selected from an available data provider. Valid Esri map styles: VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. RasterEsriImagery – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. VectorEsriTopographic – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. VectorEsriStreets – The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. VectorEsriNavigation – The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid HERE Technologies map styles: VectorHereContrast – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering.
|
|
2049
|
+
* Specifies the map style selected from an available data provider. Valid Esri map styles: VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. RasterEsriImagery – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. VectorEsriTopographic – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. VectorEsriStreets – The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. VectorEsriNavigation – The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid HERE Technologies map styles: VectorHereContrast – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering. The VectorHereContrast style has been renamed from VectorHereBerlin. VectorHereBerlin has been deprecated, but will continue to work in applications that use it. VectorHereExplore – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan. VectorHereExploreTruck – A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics. RasterHereExploreSatellite – A global map containing high resolution satellite imagery. HybridHereExploreSatellite – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved. Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved.
|
|
2050
2050
|
*/
|
|
2051
2051
|
Style: MapStyle;
|
|
2052
2052
|
}
|
|
@@ -2094,7 +2094,7 @@ declare namespace Location {
|
|
|
2094
2094
|
*/
|
|
2095
2095
|
SubRegion?: String;
|
|
2096
2096
|
/**
|
|
2097
|
-
* The time zone in which the Place is located. Returned only when using
|
|
2097
|
+
* The time zone in which the Place is located. Returned only when using HERE as the selected partner.
|
|
2098
2098
|
*/
|
|
2099
2099
|
TimeZone?: TimeZone;
|
|
2100
2100
|
/**
|
|
@@ -2576,7 +2576,7 @@ declare namespace Location {
|
|
|
2576
2576
|
}
|
|
2577
2577
|
export interface UpdateMapResponse {
|
|
2578
2578
|
/**
|
|
2579
|
-
* The Amazon Resource Name (ARN) of the updated map resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:
|
|
2579
|
+
* The Amazon Resource Name (ARN) of the updated map resource. Used to specify a resource across AWS. Format example: arn:aws:geo:region:account-id:map/ExampleMap
|
|
2580
2580
|
*/
|
|
2581
2581
|
MapArn: GeoArn;
|
|
2582
2582
|
/**
|