cdk-comprehend-s3olap 2.0.83 → 2.0.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +148 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.min.json +732 -15
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.paginators.json +16 -2
- package/node_modules/aws-sdk/apis/iotthingsgraph-2018-09-06.min.json +105 -35
- package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +25 -19
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/rds-data-2018-08-01.min.json +132 -132
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +483 -459
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +7 -7
- package/node_modules/aws-sdk/clients/codegurureviewer.d.ts +134 -134
- package/node_modules/aws-sdk/clients/controltower.d.ts +169 -0
- package/node_modules/aws-sdk/clients/controltower.js +18 -0
- package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
- package/node_modules/aws-sdk/clients/identitystore.d.ts +806 -22
- package/node_modules/aws-sdk/clients/iotthingsgraph.d.ts +2 -2
- package/node_modules/aws-sdk/clients/ivs.d.ts +9 -0
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
- package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
- package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +130 -130
- package/node_modules/aws-sdk/clients/route53.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +63 -17
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +33 -33
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/es-abstract/2020/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2021/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2022/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/CHANGELOG.md +8 -0
- package/node_modules/es-abstract/package.json +9 -8
- package/package.json +5 -5
@@ -0,0 +1,169 @@
|
|
1
|
+
import {Request} from '../lib/request';
|
2
|
+
import {Response} from '../lib/response';
|
3
|
+
import {AWSError} from '../lib/error';
|
4
|
+
import {Service} from '../lib/service';
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
7
|
+
interface Blob {}
|
8
|
+
declare class ControlTower extends Service {
|
9
|
+
/**
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
11
|
+
*/
|
12
|
+
constructor(options?: ControlTower.Types.ClientConfiguration)
|
13
|
+
config: Config & ControlTower.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified organizational unit and the accounts it contains. The resources will vary according to the control that you specify.
|
16
|
+
*/
|
17
|
+
disableControl(params: ControlTower.Types.DisableControlInput, callback?: (err: AWSError, data: ControlTower.Types.DisableControlOutput) => void): Request<ControlTower.Types.DisableControlOutput, AWSError>;
|
18
|
+
/**
|
19
|
+
* This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified organizational unit and the accounts it contains. The resources will vary according to the control that you specify.
|
20
|
+
*/
|
21
|
+
disableControl(callback?: (err: AWSError, data: ControlTower.Types.DisableControlOutput) => void): Request<ControlTower.Types.DisableControlOutput, AWSError>;
|
22
|
+
/**
|
23
|
+
* This API call activates a control. It starts an asynchronous operation that creates AWS resources on the specified organizational unit and the accounts it contains. The resources created will vary according to the control that you specify.
|
24
|
+
*/
|
25
|
+
enableControl(params: ControlTower.Types.EnableControlInput, callback?: (err: AWSError, data: ControlTower.Types.EnableControlOutput) => void): Request<ControlTower.Types.EnableControlOutput, AWSError>;
|
26
|
+
/**
|
27
|
+
* This API call activates a control. It starts an asynchronous operation that creates AWS resources on the specified organizational unit and the accounts it contains. The resources created will vary according to the control that you specify.
|
28
|
+
*/
|
29
|
+
enableControl(callback?: (err: AWSError, data: ControlTower.Types.EnableControlOutput) => void): Request<ControlTower.Types.EnableControlOutput, AWSError>;
|
30
|
+
/**
|
31
|
+
* Returns the status of a particular EnableControl or DisableControl operation. Displays a message in case of error. Details for an operation are available for 90 days.
|
32
|
+
*/
|
33
|
+
getControlOperation(params: ControlTower.Types.GetControlOperationInput, callback?: (err: AWSError, data: ControlTower.Types.GetControlOperationOutput) => void): Request<ControlTower.Types.GetControlOperationOutput, AWSError>;
|
34
|
+
/**
|
35
|
+
* Returns the status of a particular EnableControl or DisableControl operation. Displays a message in case of error. Details for an operation are available for 90 days.
|
36
|
+
*/
|
37
|
+
getControlOperation(callback?: (err: AWSError, data: ControlTower.Types.GetControlOperationOutput) => void): Request<ControlTower.Types.GetControlOperationOutput, AWSError>;
|
38
|
+
/**
|
39
|
+
* Lists the controls enabled by AWS Control Tower on the specified organizational unit and the accounts it contains.
|
40
|
+
*/
|
41
|
+
listEnabledControls(params: ControlTower.Types.ListEnabledControlsInput, callback?: (err: AWSError, data: ControlTower.Types.ListEnabledControlsOutput) => void): Request<ControlTower.Types.ListEnabledControlsOutput, AWSError>;
|
42
|
+
/**
|
43
|
+
* Lists the controls enabled by AWS Control Tower on the specified organizational unit and the accounts it contains.
|
44
|
+
*/
|
45
|
+
listEnabledControls(callback?: (err: AWSError, data: ControlTower.Types.ListEnabledControlsOutput) => void): Request<ControlTower.Types.ListEnabledControlsOutput, AWSError>;
|
46
|
+
}
|
47
|
+
declare namespace ControlTower {
|
48
|
+
export type ControlIdentifier = string;
|
49
|
+
export interface ControlOperation {
|
50
|
+
/**
|
51
|
+
* The time that the operation finished.
|
52
|
+
*/
|
53
|
+
endTime?: SyntheticTimestamp_date_time;
|
54
|
+
/**
|
55
|
+
* One of ENABLE_CONTROL or DISABLE_CONTROL.
|
56
|
+
*/
|
57
|
+
operationType?: ControlOperationType;
|
58
|
+
/**
|
59
|
+
* The time that the operation began.
|
60
|
+
*/
|
61
|
+
startTime?: SyntheticTimestamp_date_time;
|
62
|
+
/**
|
63
|
+
* One of IN_PROGRESS, SUCEEDED, or FAILED.
|
64
|
+
*/
|
65
|
+
status?: ControlOperationStatus;
|
66
|
+
/**
|
67
|
+
* If the operation result is FAILED, this string contains a message explaining why the operation failed.
|
68
|
+
*/
|
69
|
+
statusMessage?: String;
|
70
|
+
}
|
71
|
+
export type ControlOperationStatus = "SUCCEEDED"|"FAILED"|"IN_PROGRESS"|string;
|
72
|
+
export type ControlOperationType = "ENABLE_CONTROL"|"DISABLE_CONTROL"|string;
|
73
|
+
export interface DisableControlInput {
|
74
|
+
/**
|
75
|
+
* The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny guardrail.
|
76
|
+
*/
|
77
|
+
controlIdentifier: ControlIdentifier;
|
78
|
+
/**
|
79
|
+
* The ARN of the organizational unit.
|
80
|
+
*/
|
81
|
+
targetIdentifier: TargetIdentifier;
|
82
|
+
}
|
83
|
+
export interface DisableControlOutput {
|
84
|
+
/**
|
85
|
+
* The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.
|
86
|
+
*/
|
87
|
+
operationIdentifier: OperationIdentifier;
|
88
|
+
}
|
89
|
+
export interface EnableControlInput {
|
90
|
+
/**
|
91
|
+
* The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny guardrail.
|
92
|
+
*/
|
93
|
+
controlIdentifier: ControlIdentifier;
|
94
|
+
/**
|
95
|
+
* The ARN of the organizational unit.
|
96
|
+
*/
|
97
|
+
targetIdentifier: TargetIdentifier;
|
98
|
+
}
|
99
|
+
export interface EnableControlOutput {
|
100
|
+
/**
|
101
|
+
* The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.
|
102
|
+
*/
|
103
|
+
operationIdentifier: OperationIdentifier;
|
104
|
+
}
|
105
|
+
export interface EnabledControlSummary {
|
106
|
+
/**
|
107
|
+
* The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny guardrail.
|
108
|
+
*/
|
109
|
+
controlIdentifier?: ControlIdentifier;
|
110
|
+
}
|
111
|
+
export type EnabledControls = EnabledControlSummary[];
|
112
|
+
export interface GetControlOperationInput {
|
113
|
+
/**
|
114
|
+
* The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.
|
115
|
+
*/
|
116
|
+
operationIdentifier: OperationIdentifier;
|
117
|
+
}
|
118
|
+
export interface GetControlOperationOutput {
|
119
|
+
/**
|
120
|
+
*
|
121
|
+
*/
|
122
|
+
controlOperation: ControlOperation;
|
123
|
+
}
|
124
|
+
export interface ListEnabledControlsInput {
|
125
|
+
/**
|
126
|
+
* How many results to return per API call.
|
127
|
+
*/
|
128
|
+
maxResults?: MaxResults;
|
129
|
+
/**
|
130
|
+
* The token to continue the list from a previous API call with the same parameters.
|
131
|
+
*/
|
132
|
+
nextToken?: String;
|
133
|
+
/**
|
134
|
+
* The ARN of the organizational unit.
|
135
|
+
*/
|
136
|
+
targetIdentifier: TargetIdentifier;
|
137
|
+
}
|
138
|
+
export interface ListEnabledControlsOutput {
|
139
|
+
/**
|
140
|
+
* Lists the controls enabled by AWS Control Tower on the specified organizational unit and the accounts it contains.
|
141
|
+
*/
|
142
|
+
enabledControls: EnabledControls;
|
143
|
+
/**
|
144
|
+
* Retrieves the next page of results. If the string is empty, the current response is the end of the results.
|
145
|
+
*/
|
146
|
+
nextToken?: String;
|
147
|
+
}
|
148
|
+
export type MaxResults = number;
|
149
|
+
export type OperationIdentifier = string;
|
150
|
+
export type String = string;
|
151
|
+
export type SyntheticTimestamp_date_time = Date;
|
152
|
+
export type TargetIdentifier = string;
|
153
|
+
/**
|
154
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
155
|
+
*/
|
156
|
+
export type apiVersion = "2018-05-10"|"latest"|string;
|
157
|
+
export interface ClientApiVersions {
|
158
|
+
/**
|
159
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
160
|
+
*/
|
161
|
+
apiVersion?: apiVersion;
|
162
|
+
}
|
163
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
164
|
+
/**
|
165
|
+
* Contains interfaces for use with the ControlTower client.
|
166
|
+
*/
|
167
|
+
export import Types = ControlTower;
|
168
|
+
}
|
169
|
+
export = ControlTower;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['controltower'] = {};
|
7
|
+
AWS.ControlTower = Service.defineService('controltower', ['2018-05-10']);
|
8
|
+
Object.defineProperty(apiLoader.services['controltower'], '2018-05-10', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/controltower-2018-05-10.min.json');
|
11
|
+
model.paginators = require('../apis/controltower-2018-05-10.paginators.json').pagination;
|
12
|
+
return model;
|
13
|
+
},
|
14
|
+
enumerable: true,
|
15
|
+
configurable: true
|
16
|
+
});
|
17
|
+
|
18
|
+
module.exports = AWS.ControlTower;
|
@@ -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.
|
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.
|
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.
|
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.
|
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
|
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?:
|
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:
|
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
|
/**
|