cdk-comprehend-s3olap 2.0.82 → 2.0.85

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.
Files changed (31) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +9 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
  8. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
  9. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
  11. package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
  12. package/node_modules/aws-sdk/clients/fsx.d.ts +1 -1
  13. package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
  14. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
  15. package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
  16. package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
  17. package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
  18. package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -16
  19. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  20. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +6 -6
  21. package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
  22. package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
  23. package/node_modules/aws-sdk/lib/core.js +1 -1
  24. package/node_modules/aws-sdk/package.json +1 -1
  25. package/node_modules/esbuild/bin/esbuild +12 -6
  26. package/node_modules/esbuild/install.js +4 -4
  27. package/node_modules/esbuild/lib/main.js +19 -13
  28. package/node_modules/esbuild/package.json +22 -22
  29. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  30. package/node_modules/esbuild-linux-64/package.json +1 -1
  31. package/package.json +10 -10
@@ -57,7 +57,8 @@
57
57
  "members": {
58
58
  "DomainId": {}
59
59
  }
60
- }
60
+ },
61
+ "idempotent": true
61
62
  },
62
63
  "DeleteFraudster": {
63
64
  "input": {
@@ -279,7 +280,8 @@
279
280
  "RiskDetails": {
280
281
  "type": "structure",
281
282
  "required": [
282
- "KnownFraudsterRisk"
283
+ "KnownFraudsterRisk",
284
+ "VoiceSpoofingRisk"
283
285
  ],
284
286
  "members": {
285
287
  "KnownFraudsterRisk": {
@@ -293,6 +295,17 @@
293
295
  "type": "integer"
294
296
  }
295
297
  }
298
+ },
299
+ "VoiceSpoofingRisk": {
300
+ "type": "structure",
301
+ "required": [
302
+ "RiskScore"
303
+ ],
304
+ "members": {
305
+ "RiskScore": {
306
+ "type": "integer"
307
+ }
308
+ }
296
309
  }
297
310
  }
298
311
  }
@@ -853,7 +853,7 @@ declare namespace FSx {
853
853
  */
854
854
  JunctionPath: JunctionPath;
855
855
  /**
856
- * The security style for the volume. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. UNIX is the default. NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. MIXED if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients.
856
+ * The security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. MIXED if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients.
857
857
  */
858
858
  SecurityStyle?: SecurityStyle;
859
859
  /**
@@ -100,11 +100,11 @@ declare class GreengrassV2 extends Service {
100
100
  */
101
101
  disassociateServiceRoleFromAccount(callback?: (err: AWSError, data: GreengrassV2.Types.DisassociateServiceRoleFromAccountResponse) => void): Request<GreengrassV2.Types.DisassociateServiceRoleFromAccountResponse, AWSError>;
102
102
  /**
103
- * Gets the recipe for a version of a component. Core devices can call this operation to identify the artifacts and requirements to install a component.
103
+ * Gets the recipe for a version of a component.
104
104
  */
105
105
  getComponent(params: GreengrassV2.Types.GetComponentRequest, callback?: (err: AWSError, data: GreengrassV2.Types.GetComponentResponse) => void): Request<GreengrassV2.Types.GetComponentResponse, AWSError>;
106
106
  /**
107
- * Gets the recipe for a version of a component. Core devices can call this operation to identify the artifacts and requirements to install a component.
107
+ * Gets the recipe for a version of a component.
108
108
  */
109
109
  getComponent(callback?: (err: AWSError, data: GreengrassV2.Types.GetComponentResponse) => void): Request<GreengrassV2.Types.GetComponentResponse, AWSError>;
110
110
  /**
@@ -124,11 +124,11 @@ declare class GreengrassV2 extends Service {
124
124
  */
125
125
  getConnectivityInfo(callback?: (err: AWSError, data: GreengrassV2.Types.GetConnectivityInfoResponse) => void): Request<GreengrassV2.Types.GetConnectivityInfoResponse, AWSError>;
126
126
  /**
127
- * Retrieves metadata for a Greengrass core device. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours
127
+ * Retrieves metadata for a Greengrass core device. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours For IoT Greengrass Core v2.7.0, the core device sends status updates upon local deployment and cloud deployment
128
128
  */
129
129
  getCoreDevice(params: GreengrassV2.Types.GetCoreDeviceRequest, callback?: (err: AWSError, data: GreengrassV2.Types.GetCoreDeviceResponse) => void): Request<GreengrassV2.Types.GetCoreDeviceResponse, AWSError>;
130
130
  /**
131
- * Retrieves metadata for a Greengrass core device. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours
131
+ * Retrieves metadata for a Greengrass core device. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours For IoT Greengrass Core v2.7.0, the core device sends status updates upon local deployment and cloud deployment
132
132
  */
133
133
  getCoreDevice(callback?: (err: AWSError, data: GreengrassV2.Types.GetCoreDeviceResponse) => void): Request<GreengrassV2.Types.GetCoreDeviceResponse, AWSError>;
134
134
  /**
@@ -172,11 +172,11 @@ declare class GreengrassV2 extends Service {
172
172
  */
173
173
  listComponents(callback?: (err: AWSError, data: GreengrassV2.Types.ListComponentsResponse) => void): Request<GreengrassV2.Types.ListComponentsResponse, AWSError>;
174
174
  /**
175
- * Retrieves a paginated list of Greengrass core devices. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours
175
+ * Retrieves a paginated list of Greengrass core devices. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours For IoT Greengrass Core v2.7.0, the core device sends status updates upon local deployment and cloud deployment
176
176
  */
177
177
  listCoreDevices(params: GreengrassV2.Types.ListCoreDevicesRequest, callback?: (err: AWSError, data: GreengrassV2.Types.ListCoreDevicesResponse) => void): Request<GreengrassV2.Types.ListCoreDevicesResponse, AWSError>;
178
178
  /**
179
- * Retrieves a paginated list of Greengrass core devices. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours
179
+ * Retrieves a paginated list of Greengrass core devices. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours For IoT Greengrass Core v2.7.0, the core device sends status updates upon local deployment and cloud deployment
180
180
  */
181
181
  listCoreDevices(callback?: (err: AWSError, data: GreengrassV2.Types.ListCoreDevicesResponse) => void): Request<GreengrassV2.Types.ListCoreDevicesResponse, AWSError>;
182
182
  /**
@@ -196,11 +196,11 @@ declare class GreengrassV2 extends Service {
196
196
  */
197
197
  listEffectiveDeployments(callback?: (err: AWSError, data: GreengrassV2.Types.ListEffectiveDeploymentsResponse) => void): Request<GreengrassV2.Types.ListEffectiveDeploymentsResponse, AWSError>;
198
198
  /**
199
- * Retrieves a paginated list of the components that a Greengrass core device runs. This list doesn't include components that are deployed from local deployments or components that are deployed as dependencies of other components. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours
199
+ * Retrieves a paginated list of the components that a Greengrass core device runs. By default, this list doesn't include components that are deployed as dependencies of other components. To include dependencies in the response, set the topologyFilter parameter to ALL. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours For IoT Greengrass Core v2.7.0, the core device sends status updates upon local deployment and cloud deployment
200
200
  */
201
201
  listInstalledComponents(params: GreengrassV2.Types.ListInstalledComponentsRequest, callback?: (err: AWSError, data: GreengrassV2.Types.ListInstalledComponentsResponse) => void): Request<GreengrassV2.Types.ListInstalledComponentsResponse, AWSError>;
202
202
  /**
203
- * Retrieves a paginated list of the components that a Greengrass core device runs. This list doesn't include components that are deployed from local deployments or components that are deployed as dependencies of other components. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours
203
+ * Retrieves a paginated list of the components that a Greengrass core device runs. By default, this list doesn't include components that are deployed as dependencies of other components. To include dependencies in the response, set the topologyFilter parameter to ALL. IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated. Core devices send status updates at the following times: When the IoT Greengrass Core software starts When the core device receives a deployment from the Amazon Web Services Cloud When the status of any component on the core device becomes BROKEN At a regular interval that you can configure, which defaults to 24 hours For IoT Greengrass Core v2.7.0, the core device sends status updates upon local deployment and cloud deployment
204
204
  */
205
205
  listInstalledComponents(callback?: (err: AWSError, data: GreengrassV2.Types.ListInstalledComponentsResponse) => void): Request<GreengrassV2.Types.ListInstalledComponentsResponse, AWSError>;
206
206
  /**
@@ -463,7 +463,7 @@ declare namespace GreengrassV2 {
463
463
  */
464
464
  name?: NonEmptyString;
465
465
  /**
466
- * A dictionary of attributes for the platform. The IoT Greengrass Core software defines the os and platform by default. You can specify additional platform attributes for a core device when you deploy the Greengrass nucleus component. For more information, see the Greengrass nucleus component in the IoT Greengrass V2 Developer Guide.
466
+ * A dictionary of attributes for the platform. The IoT Greengrass Core software defines the os and architecture by default. You can specify additional platform attributes for a core device when you deploy the Greengrass nucleus component. For more information, see the Greengrass nucleus component in the IoT Greengrass V2 Developer Guide.
467
467
  */
468
468
  attributes?: PlatformAttributesMap;
469
469
  }
@@ -586,7 +586,7 @@ declare namespace GreengrassV2 {
586
586
  /**
587
587
  * The name of the deployment.
588
588
  */
589
- deploymentName?: NonEmptyString;
589
+ deploymentName?: DeploymentNameString;
590
590
  /**
591
591
  * The components to deploy. This is a dictionary, where each key is the name of a component, and each key's value is the version and configuration to deploy for that component.
592
592
  */
@@ -707,6 +707,7 @@ declare namespace GreengrassV2 {
707
707
  }
708
708
  export type DeploymentList = Deployment[];
709
709
  export type DeploymentName = string;
710
+ export type DeploymentNameString = string;
710
711
  export interface DeploymentPolicies {
711
712
  /**
712
713
  * The failure handling policy for the configuration deployment. This policy defines what to do if the deployment fails. Default: ROLLBACK
@@ -1030,9 +1031,14 @@ declare namespace GreengrassV2 {
1030
1031
  * Whether or not the component is a root component.
1031
1032
  */
1032
1033
  isRoot?: IsRoot;
1034
+ /**
1035
+ * The status of how current the data is. This response is based off of component state changes. The status reflects component disruptions and deployments. If a component only sees a configuration update during a deployment, it might not undergo a state change and this status would not be updated.
1036
+ */
1037
+ lastStatusChangeTimestamp?: Timestamp;
1033
1038
  }
1034
1039
  export type InstalledComponentLifecycleState = "NEW"|"INSTALLED"|"STARTING"|"RUNNING"|"STOPPING"|"ERRORED"|"BROKEN"|"FINISHED"|string;
1035
1040
  export type InstalledComponentList = InstalledComponent[];
1041
+ export type InstalledComponentTopologyFilter = "ALL"|"ROOT"|string;
1036
1042
  export type IoTJobARN = string;
1037
1043
  export type IoTJobAbortAction = "CANCEL"|string;
1038
1044
  export interface IoTJobAbortConfig {
@@ -1207,12 +1213,11 @@ declare namespace GreengrassV2 {
1207
1213
  linuxProcessParams?: LambdaLinuxProcessParams;
1208
1214
  }
1209
1215
  export type LambdaFilesystemPermission = "ro"|"rw"|string;
1210
- export type LambdaFunctionARNWithVersionNumber = string;
1211
1216
  export interface LambdaFunctionRecipeSource {
1212
1217
  /**
1213
1218
  * The ARN of the Lambda function. The ARN must include the version of the function to import. You can't use version aliases like $LATEST.
1214
1219
  */
1215
- lambdaArn: LambdaFunctionARNWithVersionNumber;
1220
+ lambdaArn: NonEmptyString;
1216
1221
  /**
1217
1222
  * The name of the component. Defaults to the name of the Lambda function.
1218
1223
  */
@@ -1431,10 +1436,14 @@ declare namespace GreengrassV2 {
1431
1436
  * The token to be used for the next set of paginated results.
1432
1437
  */
1433
1438
  nextToken?: NextTokenString;
1439
+ /**
1440
+ * The filter for the list of components. Choose from the following options: ALL – The list includes all components installed on the core device. ROOT – The list includes only root components, which are components that you specify in a deployment. When you choose this option, the list doesn't include components that the core device installs as dependencies of other components. Default: ROOT
1441
+ */
1442
+ topologyFilter?: InstalledComponentTopologyFilter;
1434
1443
  }
1435
1444
  export interface ListInstalledComponentsResponse {
1436
1445
  /**
1437
- * A list that summarizes each component on the core device.
1446
+ * A list that summarizes each component on the core device. Accuracy of the lastStatusChangeTimestamp response depends on Greengrass nucleus v2.7.0. It performs best on Greengrass nucleus v2.7.0 and can be inaccurate on earlier versions.
1438
1447
  */
1439
1448
  installedComponents?: InstalledComponentList;
1440
1449
  /**