cdk-lambda-subminute 2.0.249 → 2.0.251
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 +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +16 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.examples.json +83 -0
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +241 -32
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.paginators.json +31 -1
- package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +50 -49
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.examples.json +0 -77
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +8 -2
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +298 -238
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +81 -60
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
- package/node_modules/aws-sdk/apis/firehose-2015-08-04.min.json +69 -30
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +142 -128
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +141 -36
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +126 -126
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +255 -1
- package/node_modules/aws-sdk/clients/apprunner.d.ts +6 -1
- package/node_modules/aws-sdk/clients/codedeploy.d.ts +34 -34
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +1 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +64 -6
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +40 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +11 -3
- package/node_modules/aws-sdk/clients/firehose.d.ts +59 -9
- package/node_modules/aws-sdk/clients/iot.d.ts +46 -29
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +95 -1
- package/node_modules/aws-sdk/clients/pinpoint.d.ts +2 -2
- package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
- package/node_modules/aws-sdk/clients/textract.d.ts +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +13 -13
- package/node_modules/aws-sdk/dist/aws-sdk.js +614 -461
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +84 -84
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +38 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/xml2js/node_modules/sax/LICENSE +2 -2
- package/node_modules/xml2js/node_modules/sax/lib/sax.js +13 -4
- package/node_modules/xml2js/node_modules/sax/package.json +8 -4
- package/package.json +3 -3
@@ -164,11 +164,11 @@ declare class Iot extends Service {
|
|
164
164
|
*/
|
165
165
|
createBillingGroup(callback?: (err: AWSError, data: Iot.Types.CreateBillingGroupResponse) => void): Request<Iot.Types.CreateBillingGroupResponse, AWSError>;
|
166
166
|
/**
|
167
|
-
* Creates an X.509 certificate using the specified certificate signing request. Requires permission to access the CreateCertificateFromCsr action. The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256 or NIST P-
|
167
|
+
* Creates an X.509 certificate using the specified certificate signing request. Requires permission to access the CreateCertificateFromCsr action. The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256, NIST P-384, or NIST P-521 curves. For supported certificates, consult Certificate signing algorithms supported by IoT. Reusing the same certificate signing request (CSR) results in a distinct certificate. You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. In the following commands, we assume that a set of CSRs are located inside of the directory my-csr-directory: On Linux and OS X, the command is: $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR. You can also run the aws iot create-certificate-from-csr part of the command in parallel to speed up the certificate creation process: $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is: > ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is: > forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
|
168
168
|
*/
|
169
169
|
createCertificateFromCsr(params: Iot.Types.CreateCertificateFromCsrRequest, callback?: (err: AWSError, data: Iot.Types.CreateCertificateFromCsrResponse) => void): Request<Iot.Types.CreateCertificateFromCsrResponse, AWSError>;
|
170
170
|
/**
|
171
|
-
* Creates an X.509 certificate using the specified certificate signing request. Requires permission to access the CreateCertificateFromCsr action. The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256 or NIST P-
|
171
|
+
* Creates an X.509 certificate using the specified certificate signing request. Requires permission to access the CreateCertificateFromCsr action. The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256, NIST P-384, or NIST P-521 curves. For supported certificates, consult Certificate signing algorithms supported by IoT. Reusing the same certificate signing request (CSR) results in a distinct certificate. You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. In the following commands, we assume that a set of CSRs are located inside of the directory my-csr-directory: On Linux and OS X, the command is: $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR. You can also run the aws iot create-certificate-from-csr part of the command in parallel to speed up the certificate creation process: $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is: > ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is: > forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
|
172
172
|
*/
|
173
173
|
createCertificateFromCsr(callback?: (err: AWSError, data: Iot.Types.CreateCertificateFromCsrResponse) => void): Request<Iot.Types.CreateCertificateFromCsrResponse, AWSError>;
|
174
174
|
/**
|
@@ -516,11 +516,11 @@ declare class Iot extends Service {
|
|
516
516
|
*/
|
517
517
|
deletePackage(callback?: (err: AWSError, data: Iot.Types.DeletePackageResponse) => void): Request<Iot.Types.DeletePackageResponse, AWSError>;
|
518
518
|
/**
|
519
|
-
* Deletes a specific version from a software package. Note: If a package version is designated as default, you must remove the designation from the package using the UpdatePackage action.
|
519
|
+
* Deletes a specific version from a software package. Note: If a package version is designated as default, you must remove the designation from the software package using the UpdatePackage action.
|
520
520
|
*/
|
521
521
|
deletePackageVersion(params: Iot.Types.DeletePackageVersionRequest, callback?: (err: AWSError, data: Iot.Types.DeletePackageVersionResponse) => void): Request<Iot.Types.DeletePackageVersionResponse, AWSError>;
|
522
522
|
/**
|
523
|
-
* Deletes a specific version from a software package. Note: If a package version is designated as default, you must remove the designation from the package using the UpdatePackage action.
|
523
|
+
* Deletes a specific version from a software package. Note: If a package version is designated as default, you must remove the designation from the software package using the UpdatePackage action.
|
524
524
|
*/
|
525
525
|
deletePackageVersion(callback?: (err: AWSError, data: Iot.Types.DeletePackageVersionResponse) => void): Request<Iot.Types.DeletePackageVersionResponse, AWSError>;
|
526
526
|
/**
|
@@ -1908,19 +1908,19 @@ declare class Iot extends Service {
|
|
1908
1908
|
*/
|
1909
1909
|
updateMitigationAction(callback?: (err: AWSError, data: Iot.Types.UpdateMitigationActionResponse) => void): Request<Iot.Types.UpdateMitigationActionResponse, AWSError>;
|
1910
1910
|
/**
|
1911
|
-
* Updates the supported fields for a specific package. Requires permission to access the UpdatePackage and GetIndexingConfiguration actions.
|
1911
|
+
* Updates the supported fields for a specific software package. Requires permission to access the UpdatePackage and GetIndexingConfiguration actions.
|
1912
1912
|
*/
|
1913
1913
|
updatePackage(params: Iot.Types.UpdatePackageRequest, callback?: (err: AWSError, data: Iot.Types.UpdatePackageResponse) => void): Request<Iot.Types.UpdatePackageResponse, AWSError>;
|
1914
1914
|
/**
|
1915
|
-
* Updates the supported fields for a specific package. Requires permission to access the UpdatePackage and GetIndexingConfiguration actions.
|
1915
|
+
* Updates the supported fields for a specific software package. Requires permission to access the UpdatePackage and GetIndexingConfiguration actions.
|
1916
1916
|
*/
|
1917
1917
|
updatePackage(callback?: (err: AWSError, data: Iot.Types.UpdatePackageResponse) => void): Request<Iot.Types.UpdatePackageResponse, AWSError>;
|
1918
1918
|
/**
|
1919
|
-
* Updates the package configuration. Requires permission to access the UpdatePackageConfiguration and iam:PassRole actions.
|
1919
|
+
* Updates the software package configuration. Requires permission to access the UpdatePackageConfiguration and iam:PassRole actions.
|
1920
1920
|
*/
|
1921
1921
|
updatePackageConfiguration(params: Iot.Types.UpdatePackageConfigurationRequest, callback?: (err: AWSError, data: Iot.Types.UpdatePackageConfigurationResponse) => void): Request<Iot.Types.UpdatePackageConfigurationResponse, AWSError>;
|
1922
1922
|
/**
|
1923
|
-
* Updates the package configuration. Requires permission to access the UpdatePackageConfiguration and iam:PassRole actions.
|
1923
|
+
* Updates the software package configuration. Requires permission to access the UpdatePackageConfiguration and iam:PassRole actions.
|
1924
1924
|
*/
|
1925
1925
|
updatePackageConfiguration(callback?: (err: AWSError, data: Iot.Types.UpdatePackageConfigurationResponse) => void): Request<Iot.Types.UpdatePackageConfigurationResponse, AWSError>;
|
1926
1926
|
/**
|
@@ -2847,7 +2847,7 @@ declare namespace Iot {
|
|
2847
2847
|
*/
|
2848
2848
|
metricDimension?: MetricDimension;
|
2849
2849
|
/**
|
2850
|
-
* The criteria that determine if a device is behaving normally in regard to the metric.
|
2850
|
+
* The criteria that determine if a device is behaving normally in regard to the metric. In the IoT console, you can choose to be sent an alert through Amazon SNS when IoT Device Defender detects that a device is behaving anomalously.
|
2851
2851
|
*/
|
2852
2852
|
criteria?: BehaviorCriteria;
|
2853
2853
|
/**
|
@@ -3764,7 +3764,7 @@ declare namespace Iot {
|
|
3764
3764
|
*/
|
3765
3765
|
jobArn?: JobArn;
|
3766
3766
|
/**
|
3767
|
-
* An S3 link to the job document
|
3767
|
+
* An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for document. For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0 For more information, see Methods for accessing a bucket.
|
3768
3768
|
*/
|
3769
3769
|
documentSource?: JobDocumentSource;
|
3770
3770
|
/**
|
@@ -3904,7 +3904,7 @@ declare namespace Iot {
|
|
3904
3904
|
*/
|
3905
3905
|
roleArn: RoleArn;
|
3906
3906
|
/**
|
3907
|
-
* A list of additional OTA update parameters which are name-value pairs.
|
3907
|
+
* A list of additional OTA update parameters, which are name-value pairs. They won't be sent to devices as a part of the Job document.
|
3908
3908
|
*/
|
3909
3909
|
additionalParameters?: AdditionalParameterMap;
|
3910
3910
|
/**
|
@@ -3936,7 +3936,7 @@ declare namespace Iot {
|
|
3936
3936
|
}
|
3937
3937
|
export interface CreatePackageRequest {
|
3938
3938
|
/**
|
3939
|
-
* The name of the new package.
|
3939
|
+
* The name of the new software package.
|
3940
3940
|
*/
|
3941
3941
|
packageName: PackageName;
|
3942
3942
|
/**
|
@@ -3954,7 +3954,7 @@ declare namespace Iot {
|
|
3954
3954
|
}
|
3955
3955
|
export interface CreatePackageResponse {
|
3956
3956
|
/**
|
3957
|
-
* The name of the package.
|
3957
|
+
* The name of the software package.
|
3958
3958
|
*/
|
3959
3959
|
packageName?: PackageName;
|
3960
3960
|
/**
|
@@ -3968,7 +3968,7 @@ declare namespace Iot {
|
|
3968
3968
|
}
|
3969
3969
|
export interface CreatePackageVersionRequest {
|
3970
3970
|
/**
|
3971
|
-
* The name of the associated package.
|
3971
|
+
* The name of the associated software package.
|
3972
3972
|
*/
|
3973
3973
|
packageName: PackageName;
|
3974
3974
|
/**
|
@@ -3998,7 +3998,7 @@ declare namespace Iot {
|
|
3998
3998
|
*/
|
3999
3999
|
packageVersionArn?: PackageVersionArn;
|
4000
4000
|
/**
|
4001
|
-
* The name of the associated package.
|
4001
|
+
* The name of the associated software package.
|
4002
4002
|
*/
|
4003
4003
|
packageName?: PackageName;
|
4004
4004
|
/**
|
@@ -4647,7 +4647,7 @@ declare namespace Iot {
|
|
4647
4647
|
}
|
4648
4648
|
export interface DeletePackageRequest {
|
4649
4649
|
/**
|
4650
|
-
* The name of the target package.
|
4650
|
+
* The name of the target software package.
|
4651
4651
|
*/
|
4652
4652
|
packageName: PackageName;
|
4653
4653
|
/**
|
@@ -4659,7 +4659,7 @@ declare namespace Iot {
|
|
4659
4659
|
}
|
4660
4660
|
export interface DeletePackageVersionRequest {
|
4661
4661
|
/**
|
4662
|
-
* The name of the associated package.
|
4662
|
+
* The name of the associated software package.
|
4663
4663
|
*/
|
4664
4664
|
packageName: PackageName;
|
4665
4665
|
/**
|
@@ -5150,7 +5150,7 @@ declare namespace Iot {
|
|
5150
5150
|
}
|
5151
5151
|
export interface DescribeEndpointRequest {
|
5152
5152
|
/**
|
5153
|
-
* The endpoint type. Valid endpoint types include: iot:Data - Returns a VeriSign signed data endpoint. iot:Data-ATS - Returns an ATS signed data endpoint. iot:CredentialProvider - Returns an IoT credentials provider API endpoint. iot:Jobs - Returns an IoT device management Jobs API endpoint. We strongly recommend that customers use the newer iot:Data-ATS endpoint type to avoid issues related to the widespread distrust of Symantec certificate authorities.
|
5153
|
+
* The endpoint type. Valid endpoint types include: iot:Data - Returns a VeriSign signed data endpoint. iot:Data-ATS - Returns an ATS signed data endpoint. iot:CredentialProvider - Returns an IoT credentials provider API endpoint. iot:Jobs - Returns an IoT device management Jobs API endpoint. We strongly recommend that customers use the newer iot:Data-ATS endpoint type to avoid issues related to the widespread distrust of Symantec certificate authorities. ATS Signed Certificates are more secure and are trusted by most popular browsers.
|
5154
5154
|
*/
|
5155
5155
|
endpointType?: EndpointType;
|
5156
5156
|
}
|
@@ -6400,13 +6400,13 @@ declare namespace Iot {
|
|
6400
6400
|
}
|
6401
6401
|
export interface GetPackageRequest {
|
6402
6402
|
/**
|
6403
|
-
* The name of the target package.
|
6403
|
+
* The name of the target software package.
|
6404
6404
|
*/
|
6405
6405
|
packageName: PackageName;
|
6406
6406
|
}
|
6407
6407
|
export interface GetPackageResponse {
|
6408
6408
|
/**
|
6409
|
-
* The name of the package.
|
6409
|
+
* The name of the software package.
|
6410
6410
|
*/
|
6411
6411
|
packageName?: PackageName;
|
6412
6412
|
/**
|
@@ -6446,7 +6446,7 @@ declare namespace Iot {
|
|
6446
6446
|
*/
|
6447
6447
|
packageVersionArn?: PackageVersionArn;
|
6448
6448
|
/**
|
6449
|
-
* The name of the package.
|
6449
|
+
* The name of the software package.
|
6450
6450
|
*/
|
6451
6451
|
packageName?: PackageName;
|
6452
6452
|
/**
|
@@ -7181,7 +7181,24 @@ declare namespace Iot {
|
|
7181
7181
|
* Properties of the Apache Kafka producer client.
|
7182
7182
|
*/
|
7183
7183
|
clientProperties: ClientProperties;
|
7184
|
+
/**
|
7185
|
+
* The list of Kafka headers that you specify.
|
7186
|
+
*/
|
7187
|
+
headers?: KafkaHeaders;
|
7188
|
+
}
|
7189
|
+
export interface KafkaActionHeader {
|
7190
|
+
/**
|
7191
|
+
* The key of the Kafka header.
|
7192
|
+
*/
|
7193
|
+
key: KafkaHeaderKey;
|
7194
|
+
/**
|
7195
|
+
* The value of the Kafka header.
|
7196
|
+
*/
|
7197
|
+
value: KafkaHeaderValue;
|
7184
7198
|
}
|
7199
|
+
export type KafkaHeaderKey = string;
|
7200
|
+
export type KafkaHeaderValue = string;
|
7201
|
+
export type KafkaHeaders = KafkaActionHeader[];
|
7185
7202
|
export type Key = string;
|
7186
7203
|
export type KeyName = string;
|
7187
7204
|
export interface KeyPair {
|
@@ -8034,7 +8051,7 @@ declare namespace Iot {
|
|
8034
8051
|
}
|
8035
8052
|
export interface ListPackageVersionsRequest {
|
8036
8053
|
/**
|
8037
|
-
* The name of the target package.
|
8054
|
+
* The name of the target software package.
|
8038
8055
|
*/
|
8039
8056
|
packageName: PackageName;
|
8040
8057
|
/**
|
@@ -8886,7 +8903,7 @@ declare namespace Iot {
|
|
8886
8903
|
}
|
8887
8904
|
export type LogTargetConfigurations = LogTargetConfiguration[];
|
8888
8905
|
export type LogTargetName = string;
|
8889
|
-
export type LogTargetType = "DEFAULT"|"THING_GROUP"|"CLIENT_ID"|"SOURCE_IP"|"PRINCIPAL_ID"|string;
|
8906
|
+
export type LogTargetType = "DEFAULT"|"THING_GROUP"|"CLIENT_ID"|"SOURCE_IP"|"PRINCIPAL_ID"|"EVENT_TYPE"|"DEVICE_DEFENDER"|string;
|
8890
8907
|
export interface LoggingOptionsPayload {
|
8891
8908
|
/**
|
8892
8909
|
* The ARN of the IAM role that grants access.
|
@@ -9172,7 +9189,7 @@ declare namespace Iot {
|
|
9172
9189
|
*/
|
9173
9190
|
codeSigning?: CodeSigning;
|
9174
9191
|
/**
|
9175
|
-
* A list of name
|
9192
|
+
* A list of name-attribute pairs. They won't be sent to devices as a part of the Job document.
|
9176
9193
|
*/
|
9177
9194
|
attributes?: AttributesMap;
|
9178
9195
|
}
|
@@ -9318,7 +9335,7 @@ declare namespace Iot {
|
|
9318
9335
|
export type PackageName = string;
|
9319
9336
|
export interface PackageSummary {
|
9320
9337
|
/**
|
9321
|
-
* The name for the target package.
|
9338
|
+
* The name for the target software package.
|
9322
9339
|
*/
|
9323
9340
|
packageName?: PackageName;
|
9324
9341
|
/**
|
@@ -10020,11 +10037,11 @@ declare namespace Iot {
|
|
10020
10037
|
export type ScheduledJobRolloutList = ScheduledJobRollout[];
|
10021
10038
|
export interface SchedulingConfig {
|
10022
10039
|
/**
|
10023
|
-
* The time a job will begin rollout of the job document to all devices in the target group for a job. The startTime can be scheduled up to a year in advance and must be scheduled a minimum of thirty minutes from the current time. The date and time format for the startTime is YYYY-MM-DD for the date and HH:MM for the time.
|
10040
|
+
* The time a job will begin rollout of the job document to all devices in the target group for a job. The startTime can be scheduled up to a year in advance and must be scheduled a minimum of thirty minutes from the current time. The date and time format for the startTime is YYYY-MM-DD for the date and HH:MM for the time. For more information on the syntax for startTime when using an API command or the Command Line Interface, see Timestamp.
|
10024
10041
|
*/
|
10025
10042
|
startTime?: StringDateTime;
|
10026
10043
|
/**
|
10027
|
-
* The time a job will stop rollout of the job document to all devices in the target group for a job. The endTime must take place no later than two years from the current time and be scheduled a minimum of thirty minutes from the current time. The minimum duration between startTime and endTime is thirty minutes. The maximum duration between startTime and endTime is two years. The date and time format for the endTime is YYYY-MM-DD for the date and HH:MM for the time.
|
10044
|
+
* The time a job will stop rollout of the job document to all devices in the target group for a job. The endTime must take place no later than two years from the current time and be scheduled a minimum of thirty minutes from the current time. The minimum duration between startTime and endTime is thirty minutes. The maximum duration between startTime and endTime is two years. The date and time format for the endTime is YYYY-MM-DD for the date and HH:MM for the time. For more information on the syntax for endTime when using an API command or the Command Line Interface, see Timestamp.
|
10028
10045
|
*/
|
10029
10046
|
endTime?: StringDateTime;
|
10030
10047
|
/**
|
@@ -11625,7 +11642,7 @@ declare namespace Iot {
|
|
11625
11642
|
}
|
11626
11643
|
export interface UpdatePackageRequest {
|
11627
11644
|
/**
|
11628
|
-
* The name of the target package.
|
11645
|
+
* The name of the target software package.
|
11629
11646
|
*/
|
11630
11647
|
packageName: PackageName;
|
11631
11648
|
/**
|
@@ -11661,7 +11678,7 @@ declare namespace Iot {
|
|
11661
11678
|
*/
|
11662
11679
|
description?: ResourceDescription;
|
11663
11680
|
/**
|
11664
|
-
* Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet. Note: Attributes can be updated only when the package version is in a draft state. The combined size of all the attributes on a package version is limited to 3KB.
|
11681
|
+
* Metadata that can be used to define a package version’s configuration. For example, the Amazon S3 file location, configuration options that are being sent to the device or fleet. Note: Attributes can be updated only when the package version is in a draft state. The combined size of all the attributes on a package version is limited to 3KB.
|
11665
11682
|
*/
|
11666
11683
|
attributes?: ResourceAttributes;
|
11667
11684
|
/**
|
@@ -76,6 +76,14 @@ declare class LakeFormation extends Service {
|
|
76
76
|
* Creates an LF-tag with the specified name and values.
|
77
77
|
*/
|
78
78
|
createLFTag(callback?: (err: AWSError, data: LakeFormation.Types.CreateLFTagResponse) => void): Request<LakeFormation.Types.CreateLFTagResponse, AWSError>;
|
79
|
+
/**
|
80
|
+
* Enforce Lake Formation permissions for the given databases, tables, and principals.
|
81
|
+
*/
|
82
|
+
createLakeFormationOptIn(params: LakeFormation.Types.CreateLakeFormationOptInRequest, callback?: (err: AWSError, data: LakeFormation.Types.CreateLakeFormationOptInResponse) => void): Request<LakeFormation.Types.CreateLakeFormationOptInResponse, AWSError>;
|
83
|
+
/**
|
84
|
+
* Enforce Lake Formation permissions for the given databases, tables, and principals.
|
85
|
+
*/
|
86
|
+
createLakeFormationOptIn(callback?: (err: AWSError, data: LakeFormation.Types.CreateLakeFormationOptInResponse) => void): Request<LakeFormation.Types.CreateLakeFormationOptInResponse, AWSError>;
|
79
87
|
/**
|
80
88
|
* Deletes a data cell filter.
|
81
89
|
*/
|
@@ -92,6 +100,14 @@ declare class LakeFormation extends Service {
|
|
92
100
|
* Deletes the specified LF-tag given a key name. If the input parameter tag key was not found, then the operation will throw an exception. When you delete an LF-tag, the LFTagPolicy attached to the LF-tag becomes invalid. If the deleted LF-tag was still assigned to any resource, the tag policy attach to the deleted LF-tag will no longer be applied to the resource.
|
93
101
|
*/
|
94
102
|
deleteLFTag(callback?: (err: AWSError, data: LakeFormation.Types.DeleteLFTagResponse) => void): Request<LakeFormation.Types.DeleteLFTagResponse, AWSError>;
|
103
|
+
/**
|
104
|
+
* Remove the Lake Formation permissions enforcement of the given databases, tables, and principals.
|
105
|
+
*/
|
106
|
+
deleteLakeFormationOptIn(params: LakeFormation.Types.DeleteLakeFormationOptInRequest, callback?: (err: AWSError, data: LakeFormation.Types.DeleteLakeFormationOptInResponse) => void): Request<LakeFormation.Types.DeleteLakeFormationOptInResponse, AWSError>;
|
107
|
+
/**
|
108
|
+
* Remove the Lake Formation permissions enforcement of the given databases, tables, and principals.
|
109
|
+
*/
|
110
|
+
deleteLakeFormationOptIn(callback?: (err: AWSError, data: LakeFormation.Types.DeleteLakeFormationOptInResponse) => void): Request<LakeFormation.Types.DeleteLakeFormationOptInResponse, AWSError>;
|
95
111
|
/**
|
96
112
|
* For a specific governed table, provides a list of Amazon S3 objects that will be written during the current transaction and that can be automatically deleted if the transaction is canceled. Without this call, no Amazon S3 objects are automatically deleted when a transaction cancels. The Glue ETL library function write_dynamic_frame.from_catalog() includes an option to automatically call DeleteObjectsOnCancel before writes. For more information, see Rolling Back Amazon S3 Writes.
|
97
113
|
*/
|
@@ -252,6 +268,14 @@ declare class LakeFormation extends Service {
|
|
252
268
|
* Lists LF-tags that the requester has permission to view.
|
253
269
|
*/
|
254
270
|
listLFTags(callback?: (err: AWSError, data: LakeFormation.Types.ListLFTagsResponse) => void): Request<LakeFormation.Types.ListLFTagsResponse, AWSError>;
|
271
|
+
/**
|
272
|
+
* Retrieve the current list of resources and principals that are opt in to enforce Lake Formation permissions.
|
273
|
+
*/
|
274
|
+
listLakeFormationOptIns(params: LakeFormation.Types.ListLakeFormationOptInsRequest, callback?: (err: AWSError, data: LakeFormation.Types.ListLakeFormationOptInsResponse) => void): Request<LakeFormation.Types.ListLakeFormationOptInsResponse, AWSError>;
|
275
|
+
/**
|
276
|
+
* Retrieve the current list of resources and principals that are opt in to enforce Lake Formation permissions.
|
277
|
+
*/
|
278
|
+
listLakeFormationOptIns(callback?: (err: AWSError, data: LakeFormation.Types.ListLakeFormationOptInsResponse) => void): Request<LakeFormation.Types.ListLakeFormationOptInsResponse, AWSError>;
|
255
279
|
/**
|
256
280
|
* Returns a list of the principal permissions on the resource, filtered by the permissions of the caller. For example, if you are granted an ALTER permission, you are able to see only the principal permissions for ALTER. This operation returns only those permissions that have been explicitly granted. For information about permissions, see Security and Access Control to Metadata and Data.
|
257
281
|
*/
|
@@ -608,6 +632,12 @@ declare namespace LakeFormation {
|
|
608
632
|
}
|
609
633
|
export interface CreateLFTagResponse {
|
610
634
|
}
|
635
|
+
export interface CreateLakeFormationOptInRequest {
|
636
|
+
Principal: DataLakePrincipal;
|
637
|
+
Resource: Resource;
|
638
|
+
}
|
639
|
+
export interface CreateLakeFormationOptInResponse {
|
640
|
+
}
|
611
641
|
export type CredentialTimeoutDurationSecondInteger = number;
|
612
642
|
export interface DataCellsFilter {
|
613
643
|
/**
|
@@ -767,6 +797,12 @@ declare namespace LakeFormation {
|
|
767
797
|
}
|
768
798
|
export interface DeleteLFTagResponse {
|
769
799
|
}
|
800
|
+
export interface DeleteLakeFormationOptInRequest {
|
801
|
+
Principal: DataLakePrincipal;
|
802
|
+
Resource: Resource;
|
803
|
+
}
|
804
|
+
export interface DeleteLakeFormationOptInResponse {
|
805
|
+
}
|
770
806
|
export interface DeleteObjectInput {
|
771
807
|
/**
|
772
808
|
* The Amazon S3 location of the object to delete.
|
@@ -1264,7 +1300,7 @@ declare namespace LakeFormation {
|
|
1264
1300
|
*/
|
1265
1301
|
TagKey: LFTagKey;
|
1266
1302
|
/**
|
1267
|
-
* A list of possible values an attribute can take.
|
1303
|
+
* A list of possible values an attribute can take. The maximum number of values that can be defined for a LF-Tag is 1000. A single API call supports 50 values. You can use multiple API calls to add more values.
|
1268
1304
|
*/
|
1269
1305
|
TagValues: TagValueList;
|
1270
1306
|
}
|
@@ -1324,6 +1360,19 @@ declare namespace LakeFormation {
|
|
1324
1360
|
}
|
1325
1361
|
export type LFTagValue = string;
|
1326
1362
|
export type LFTagsList = LFTagPair[];
|
1363
|
+
export interface LakeFormationOptInsInfo {
|
1364
|
+
Resource?: Resource;
|
1365
|
+
Principal?: DataLakePrincipal;
|
1366
|
+
/**
|
1367
|
+
* The last modified date and time of the record.
|
1368
|
+
*/
|
1369
|
+
LastModified?: LastModifiedTimestamp;
|
1370
|
+
/**
|
1371
|
+
* The user who updated the record.
|
1372
|
+
*/
|
1373
|
+
LastUpdatedBy?: NameString;
|
1374
|
+
}
|
1375
|
+
export type LakeFormationOptInsInfoList = LakeFormationOptInsInfo[];
|
1327
1376
|
export type LastModifiedTimestamp = Date;
|
1328
1377
|
export interface ListDataCellsFilterRequest {
|
1329
1378
|
/**
|
@@ -1377,6 +1426,31 @@ declare namespace LakeFormation {
|
|
1377
1426
|
*/
|
1378
1427
|
NextToken?: Token;
|
1379
1428
|
}
|
1429
|
+
export interface ListLakeFormationOptInsRequest {
|
1430
|
+
Principal?: DataLakePrincipal;
|
1431
|
+
/**
|
1432
|
+
* A structure for the resource.
|
1433
|
+
*/
|
1434
|
+
Resource?: Resource;
|
1435
|
+
/**
|
1436
|
+
* The maximum number of results to return.
|
1437
|
+
*/
|
1438
|
+
MaxResults?: PageSize;
|
1439
|
+
/**
|
1440
|
+
* A continuation token, if this is not the first call to retrieve this list.
|
1441
|
+
*/
|
1442
|
+
NextToken?: Token;
|
1443
|
+
}
|
1444
|
+
export interface ListLakeFormationOptInsResponse {
|
1445
|
+
/**
|
1446
|
+
* A list of principal-resource pairs that have Lake Formation permissins enforced.
|
1447
|
+
*/
|
1448
|
+
LakeFormationOptInsInfoList?: LakeFormationOptInsInfoList;
|
1449
|
+
/**
|
1450
|
+
* A continuation token, if this is not the first call to retrieve this list.
|
1451
|
+
*/
|
1452
|
+
NextToken?: Token;
|
1453
|
+
}
|
1380
1454
|
export interface ListPermissionsRequest {
|
1381
1455
|
/**
|
1382
1456
|
* The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
|
@@ -1590,6 +1664,14 @@ declare namespace LakeFormation {
|
|
1590
1664
|
* This attribute can be used to return any additional details of PrincipalResourcePermissions. Currently returns only as a RAM resource share ARN.
|
1591
1665
|
*/
|
1592
1666
|
AdditionalDetails?: DetailsMap;
|
1667
|
+
/**
|
1668
|
+
* The date and time when the resource was last updated.
|
1669
|
+
*/
|
1670
|
+
LastUpdated?: LastModifiedTimestamp;
|
1671
|
+
/**
|
1672
|
+
* The user who updated the record.
|
1673
|
+
*/
|
1674
|
+
LastUpdatedBy?: NameString;
|
1593
1675
|
}
|
1594
1676
|
export type PrincipalResourcePermissionsList = PrincipalResourcePermissions[];
|
1595
1677
|
export interface PutDataLakeSettingsRequest {
|
@@ -1648,6 +1730,10 @@ declare namespace LakeFormation {
|
|
1648
1730
|
* Whether or not the resource is a federated resource.
|
1649
1731
|
*/
|
1650
1732
|
WithFederation?: NullableBoolean;
|
1733
|
+
/**
|
1734
|
+
* Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
|
1735
|
+
*/
|
1736
|
+
HybridAccessEnabled?: NullableBoolean;
|
1651
1737
|
}
|
1652
1738
|
export interface RegisterResourceResponse {
|
1653
1739
|
}
|
@@ -1723,6 +1809,10 @@ declare namespace LakeFormation {
|
|
1723
1809
|
* Whether or not the resource is a federated resource.
|
1724
1810
|
*/
|
1725
1811
|
WithFederation?: NullableBoolean;
|
1812
|
+
/**
|
1813
|
+
* Indicates whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
|
1814
|
+
*/
|
1815
|
+
HybridAccessEnabled?: NullableBoolean;
|
1726
1816
|
}
|
1727
1817
|
export type ResourceInfoList = ResourceInfo[];
|
1728
1818
|
export type ResourceShareList = RAMResourceShareArn[];
|
@@ -2041,6 +2131,10 @@ declare namespace LakeFormation {
|
|
2041
2131
|
* Whether or not the resource is a federated resource.
|
2042
2132
|
*/
|
2043
2133
|
WithFederation?: NullableBoolean;
|
2134
|
+
/**
|
2135
|
+
* Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
|
2136
|
+
*/
|
2137
|
+
HybridAccessEnabled?: NullableBoolean;
|
2044
2138
|
}
|
2045
2139
|
export interface UpdateResourceResponse {
|
2046
2140
|
}
|
@@ -740,11 +740,11 @@ declare class Pinpoint extends Service {
|
|
740
740
|
*/
|
741
741
|
putEvents(callback?: (err: AWSError, data: Pinpoint.Types.PutEventsResponse) => void): Request<Pinpoint.Types.PutEventsResponse, AWSError>;
|
742
742
|
/**
|
743
|
-
* Removes one or more attributes, of the same attribute type, from
|
743
|
+
* Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
|
744
744
|
*/
|
745
745
|
removeAttributes(params: Pinpoint.Types.RemoveAttributesRequest, callback?: (err: AWSError, data: Pinpoint.Types.RemoveAttributesResponse) => void): Request<Pinpoint.Types.RemoveAttributesResponse, AWSError>;
|
746
746
|
/**
|
747
|
-
* Removes one or more attributes, of the same attribute type, from
|
747
|
+
* Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
|
748
748
|
*/
|
749
749
|
removeAttributes(callback?: (err: AWSError, data: Pinpoint.Types.RemoveAttributesResponse) => void): Request<Pinpoint.Types.RemoveAttributesResponse, AWSError>;
|
750
750
|
/**
|
@@ -5696,7 +5696,7 @@ declare namespace S3 {
|
|
5696
5696
|
}
|
5697
5697
|
export type ReplicationRuleStatus = "Enabled"|"Disabled"|string;
|
5698
5698
|
export type ReplicationRules = ReplicationRule[];
|
5699
|
-
export type ReplicationStatus = "COMPLETE"|"PENDING"|"FAILED"|"REPLICA"|string;
|
5699
|
+
export type ReplicationStatus = "COMPLETE"|"PENDING"|"FAILED"|"REPLICA"|"COMPLETED"|string;
|
5700
5700
|
export interface ReplicationTime {
|
5701
5701
|
/**
|
5702
5702
|
* Specifies whether the replication time is enabled.
|
@@ -123,7 +123,7 @@ declare namespace Textract {
|
|
123
123
|
*/
|
124
124
|
Document: Document;
|
125
125
|
/**
|
126
|
-
* A list of the types of analysis to perform. Add TABLES to the list to return information about the tables that are detected in the input document. Add FORMS to return detected form data. Add SIGNATURES to return the locations of detected signatures. To perform both forms and table analysis, add TABLES and FORMS to FeatureTypes. To detect signatures within form data and table data, add SIGNATURES to either TABLES or FORMS. All lines and words detected in the document are included in the response (including text that isn't related to the value of FeatureTypes).
|
126
|
+
* A list of the types of analysis to perform. Add TABLES to the list to return information about the tables that are detected in the input document. Add FORMS to return detected form data. Add SIGNATURES to return the locations of detected signatures. Add LAYOUT to the list to return information about the layout of the document. To perform both forms and table analysis, add TABLES and FORMS to FeatureTypes. To detect signatures within the document and within form data and table data, add SIGNATURES to either TABLES or FORMS. All lines and words detected in the document are included in the response (including text that isn't related to the value of FeatureTypes).
|
127
127
|
*/
|
128
128
|
FeatureTypes: FeatureTypes;
|
129
129
|
/**
|
@@ -196,7 +196,7 @@ declare namespace Textract {
|
|
196
196
|
}
|
197
197
|
export interface Block {
|
198
198
|
/**
|
199
|
-
* The type of text item that's recognized. In operations for text detection, the following types are returned: PAGE - Contains a list of the LINE Block objects that are detected on a document page. WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces. LINE - A string of tab-delimited, contiguous words that are detected on a document page. In text analysis operations, the following types are returned: PAGE - Contains a list of child Block objects that are detected on a document page. KEY_VALUE_SET - Stores the KEY and VALUE Block objects for linked text that's detected on a document page. Use the EntityType field to determine if a KEY_VALUE_SET object is a KEY Block object or a VALUE Block object. WORD - A word that's detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces. LINE - A string of tab-delimited, contiguous words that are detected on a document page. TABLE - A table that's detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each. TABLE_TITLE - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table. TABLE_FOOTER - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table. CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell. MERGED_CELL - A cell in a table whose content spans more than one row or column. The Relationships array for this cell contain data from individual cells. SELECTION_ELEMENT - A selection element such as an option button (radio button) or a check box that's detected on a document page. Use the value of SelectionStatus to determine the status of the selection element. SIGNATURE - The location and
|
199
|
+
* The type of text item that's recognized. In operations for text detection, the following types are returned: PAGE - Contains a list of the LINE Block objects that are detected on a document page. WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces. LINE - A string of tab-delimited, contiguous words that are detected on a document page. In text analysis operations, the following types are returned: PAGE - Contains a list of child Block objects that are detected on a document page. KEY_VALUE_SET - Stores the KEY and VALUE Block objects for linked text that's detected on a document page. Use the EntityType field to determine if a KEY_VALUE_SET object is a KEY Block object or a VALUE Block object. WORD - A word that's detected on a document page. A word is one or more ISO basic Latin script characters that aren't separated by spaces. LINE - A string of tab-delimited, contiguous words that are detected on a document page. TABLE - A table that's detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each. TABLE_TITLE - The title of a table. A title is typically a line of text above or below a table, or embedded as the first row of a table. TABLE_FOOTER - The footer associated with a table. A footer is typically a line or lines of text below a table or embedded as the last row of a table. CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell. MERGED_CELL - A cell in a table whose content spans more than one row or column. The Relationships array for this cell contain data from individual cells. SELECTION_ELEMENT - A selection element such as an option button (radio button) or a check box that's detected on a document page. Use the value of SelectionStatus to determine the status of the selection element. SIGNATURE - The location and confidence score of a signature detected on a document page. Can be returned as part of a Key-Value pair or a detected cell. QUERY - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attaches it to its answer. QUERY_RESULT - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.
|
200
200
|
*/
|
201
201
|
BlockType?: BlockType;
|
202
202
|
/**
|
@@ -248,7 +248,7 @@ declare namespace Textract {
|
|
248
248
|
*/
|
249
249
|
SelectionStatus?: SelectionStatus;
|
250
250
|
/**
|
251
|
-
* The page on which a block was detected. Page is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of Page is always 1.
|
251
|
+
* The page on which a block was detected. Page is returned by synchronous and asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of Page is always 1.
|
252
252
|
*/
|
253
253
|
Page?: UInteger;
|
254
254
|
/**
|
@@ -257,7 +257,7 @@ declare namespace Textract {
|
|
257
257
|
Query?: Query;
|
258
258
|
}
|
259
259
|
export type BlockList = Block[];
|
260
|
-
export type BlockType = "KEY_VALUE_SET"|"PAGE"|"LINE"|"WORD"|"TABLE"|"CELL"|"SELECTION_ELEMENT"|"MERGED_CELL"|"TITLE"|"QUERY"|"QUERY_RESULT"|"SIGNATURE"|"TABLE_TITLE"|"TABLE_FOOTER"|string;
|
260
|
+
export type BlockType = "KEY_VALUE_SET"|"PAGE"|"LINE"|"WORD"|"TABLE"|"CELL"|"SELECTION_ELEMENT"|"MERGED_CELL"|"TITLE"|"QUERY"|"QUERY_RESULT"|"SIGNATURE"|"TABLE_TITLE"|"TABLE_FOOTER"|"LAYOUT_TEXT"|"LAYOUT_TITLE"|"LAYOUT_HEADER"|"LAYOUT_FOOTER"|"LAYOUT_SECTION_HEADER"|"LAYOUT_PAGE_NUMBER"|"LAYOUT_LIST"|"LAYOUT_FIGURE"|"LAYOUT_TABLE"|"LAYOUT_KEY_VALUE"|string;
|
261
261
|
export interface BoundingBox {
|
262
262
|
/**
|
263
263
|
* The width of the bounding box as a ratio of the overall document page width.
|
@@ -448,7 +448,7 @@ declare namespace Textract {
|
|
448
448
|
IdentityDocument?: IdentityDocument;
|
449
449
|
}
|
450
450
|
export type ExtractionList = Extraction[];
|
451
|
-
export type FeatureType = "TABLES"|"FORMS"|"QUERIES"|"SIGNATURES"|string;
|
451
|
+
export type FeatureType = "TABLES"|"FORMS"|"QUERIES"|"SIGNATURES"|"LAYOUT"|string;
|
452
452
|
export type FeatureTypes = FeatureType[];
|
453
453
|
export type Float = number;
|
454
454
|
export type FlowDefinitionArn = string;
|