cdk-comprehend-s3olap 2.0.122 → 2.0.124

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.
@@ -2523,7 +2523,7 @@ declare namespace EventBridge {
2523
2523
  /**
2524
2524
  * The SQL statement text to run.
2525
2525
  */
2526
- Sql: Sql;
2526
+ Sql?: Sql;
2527
2527
  /**
2528
2528
  * The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
2529
2529
  */
@@ -2532,6 +2532,7 @@ declare namespace EventBridge {
2532
2532
  * Indicates whether to send an event back to EventBridge after the SQL statement runs.
2533
2533
  */
2534
2534
  WithEvent?: Boolean;
2535
+ Sqls?: Sqls;
2535
2536
  }
2536
2537
  export type RedshiftSecretManagerArn = string;
2537
2538
  export type ReferenceId = string;
@@ -2766,6 +2767,7 @@ declare namespace EventBridge {
2766
2767
  }
2767
2768
  export type SecretsManagerSecretArn = string;
2768
2769
  export type Sql = string;
2770
+ export type Sqls = Sql[];
2769
2771
  export interface SqsParameters {
2770
2772
  /**
2771
2773
  * The FIFO message group ID to use as the target.
@@ -101,11 +101,11 @@ declare class GroundStation extends Service {
101
101
  */
102
102
  describeEphemeris(callback?: (err: AWSError, data: GroundStation.Types.DescribeEphemerisResponse) => void): Request<GroundStation.Types.DescribeEphemerisResponse, AWSError>;
103
103
  /**
104
- * Gets the latest configuration information for a registered agent.
104
+ * For use by AWS Ground Station Agent and shouldn't be called directly. Gets the latest configuration information for a registered agent.
105
105
  */
106
106
  getAgentConfiguration(params: GroundStation.Types.GetAgentConfigurationRequest, callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
107
107
  /**
108
- * Gets the latest configuration information for a registered agent.
108
+ * For use by AWS Ground Station Agent and shouldn't be called directly. Gets the latest configuration information for a registered agent.
109
109
  */
110
110
  getAgentConfiguration(callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
111
111
  /**
@@ -213,11 +213,11 @@ declare class GroundStation extends Service {
213
213
  */
214
214
  listTagsForResource(callback?: (err: AWSError, data: GroundStation.Types.ListTagsForResourceResponse) => void): Request<GroundStation.Types.ListTagsForResourceResponse, AWSError>;
215
215
  /**
216
- * Registers a new agent with AWS Groundstation.
216
+ * For use by AWS Ground Station Agent and shouldn't be called directly. Registers a new agent with AWS Ground Station.
217
217
  */
218
218
  registerAgent(params: GroundStation.Types.RegisterAgentRequest, callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
219
219
  /**
220
- * Registers a new agent with AWS Groundstation.
220
+ * For use by AWS Ground Station Agent and shouldn't be called directly. Registers a new agent with AWS Ground Station.
221
221
  */
222
222
  registerAgent(callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
223
223
  /**
@@ -245,11 +245,11 @@ declare class GroundStation extends Service {
245
245
  */
246
246
  untagResource(callback?: (err: AWSError, data: GroundStation.Types.UntagResourceResponse) => void): Request<GroundStation.Types.UntagResourceResponse, AWSError>;
247
247
  /**
248
- * Update the status of the agent.
248
+ * For use by AWS Ground Station Agent and shouldn't be called directly. Update the status of the agent.
249
249
  */
250
250
  updateAgentStatus(params: GroundStation.Types.UpdateAgentStatusRequest, callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
251
251
  /**
252
- * Update the status of the agent.
252
+ * For use by AWS Ground Station Agent and shouldn't be called directly. Update the status of the agent.
253
253
  */
254
254
  updateAgentStatus(callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
255
255
  /**
@@ -287,7 +287,12 @@ declare class GroundStation extends Service {
287
287
  }
288
288
  declare namespace GroundStation {
289
289
  export type AWSRegion = string;
290
+ export type AgentCpuCoresList = Integer[];
290
291
  export interface AgentDetails {
292
+ /**
293
+ * List of CPU cores reserved for the agent.
294
+ */
295
+ agentCpuCores?: AgentCpuCoresList;
291
296
  /**
292
297
  * Current agent version.
293
298
  */
@@ -305,9 +310,9 @@ declare namespace GroundStation {
305
310
  */
306
311
  instanceType: InstanceType;
307
312
  /**
308
- * Number of Cpu cores reserved for agent.
313
+ * This field should not be used. Use agentCpuCores instead. List of CPU cores reserved for processes other than the agent running on the EC2 instance.
309
314
  */
310
- reservedCpuCores: ReservedCpuCoresList;
315
+ reservedCpuCores?: AgentCpuCoresList;
311
316
  }
312
317
  export type AgentStatus = "SUCCESS"|"FAILED"|"ACTIVE"|"INACTIVE"|string;
313
318
  export interface AggregateStatus {
@@ -396,6 +401,9 @@ declare namespace GroundStation {
396
401
  }
397
402
  export type CapabilityArn = string;
398
403
  export type CapabilityArnList = CapabilityArn[];
404
+ export type CapabilityHealth = "UNHEALTHY"|"HEALTHY"|string;
405
+ export type CapabilityHealthReason = "NO_REGISTERED_AGENT"|"INVALID_IP_OWNERSHIP"|"NOT_AUTHORIZED_TO_CREATE_SLR"|"UNVERIFIED_IP_OWNERSHIP"|"INITIALIZING_DATAPLANE"|"DATAPLANE_FAILURE"|"HEALTHY"|string;
406
+ export type CapabilityHealthReasonList = CapabilityHealthReason[];
399
407
  export interface ComponentStatusData {
400
408
  /**
401
409
  * Bytes received by the component.
@@ -412,7 +420,7 @@ declare namespace GroundStation {
412
420
  /**
413
421
  * The Component type.
414
422
  */
415
- componentType: ComponentType;
423
+ componentType: ComponentTypeString;
416
424
  /**
417
425
  * Dataflow UUID associated with the component.
418
426
  */
@@ -427,12 +435,12 @@ declare namespace GroundStation {
427
435
  status: AgentStatus;
428
436
  }
429
437
  export type ComponentStatusList = ComponentStatusData[];
430
- export type ComponentType = "LAMINAR_FLOW"|"PRISM"|"DIGITIZER"|string;
438
+ export type ComponentTypeString = string;
431
439
  export interface ComponentVersion {
432
440
  /**
433
441
  * Component type.
434
442
  */
435
- componentType: ComponentType;
443
+ componentType: ComponentTypeString;
436
444
  /**
437
445
  * List of versions.
438
446
  */
@@ -603,11 +611,11 @@ declare namespace GroundStation {
603
611
  }
604
612
  export interface CreateDataflowEndpointGroupRequest {
605
613
  /**
606
- * Amount of time, in seconds, after a contact ends for the contact to remain in a POSTPASS state. A CloudWatch event is emitted when the contact enters and exits the POSTPASS state.
614
+ * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
607
615
  */
608
616
  contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
609
617
  /**
610
- * Amount of time, in seconds, prior to contact start for the contact to remain in a PREPASS state. A CloudWatch event is emitted when the contact enters and exits the PREPASS state.
618
+ * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
611
619
  */
612
620
  contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
613
621
  /**
@@ -968,6 +976,14 @@ declare namespace GroundStation {
968
976
  * A dataflow endpoint.
969
977
  */
970
978
  endpoint?: DataflowEndpoint;
979
+ /**
980
+ * Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.
981
+ */
982
+ healthReasons?: CapabilityHealthReasonList;
983
+ /**
984
+ * A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.
985
+ */
986
+ healthStatus?: CapabilityHealth;
971
987
  /**
972
988
  * Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.
973
989
  */
@@ -1134,11 +1150,11 @@ declare namespace GroundStation {
1134
1150
  }
1135
1151
  export interface GetDataflowEndpointGroupResponse {
1136
1152
  /**
1137
- * Amount of time, in seconds, after a contact ends for the contact to remain in a POSTPASS state. A CloudWatch event is emitted when the contact enters and exits the POSTPASS state.
1153
+ * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
1138
1154
  */
1139
1155
  contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
1140
1156
  /**
1141
- * Amount of time, in seconds, prior to contact start for the contact to remain in a PREPASS state. A CloudWatch event is emitted when the contact enters and exits the PREPASS state.
1157
+ * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
1142
1158
  */
1143
1159
  contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
1144
1160
  /**
@@ -1584,7 +1600,7 @@ declare namespace GroundStation {
1584
1600
  */
1585
1601
  agentDetails: AgentDetails;
1586
1602
  /**
1587
- * Data for associating and agent with the capabilities it is managing.
1603
+ * Data for associating an agent with the capabilities it is managing.
1588
1604
  */
1589
1605
  discoveryData: DiscoveryData;
1590
1606
  }
@@ -1620,7 +1636,6 @@ declare namespace GroundStation {
1620
1636
  */
1621
1637
  tags?: TagsMap;
1622
1638
  }
1623
- export type ReservedCpuCoresList = Integer[];
1624
1639
  export type RoleArn = string;
1625
1640
  export type S3BucketName = string;
1626
1641
  export type S3KeyPrefix = string;
@@ -110,6 +110,10 @@ declare namespace IotData {
110
110
  * The Epoch date and time, in milliseconds, when the retained message was stored by IoT.
111
111
  */
112
112
  lastModifiedTime?: Timestamp;
113
+ /**
114
+ * A base64-encoded JSON string that includes an array of JSON objects, or null if the retained message doesn't include any user properties. The following example userProperties parameter is a JSON string that represents two user properties. Note that it will be base64-encoded: [{"deviceName": "alpha"}, {"deviceCnt": "45"}]
115
+ */
116
+ userProperties?: UserPropertiesBlob;
113
117
  }
114
118
  export interface GetThingShadowRequest {
115
119
  /**
@@ -273,6 +277,7 @@ declare namespace IotData {
273
277
  payload?: JsonDocument;
274
278
  }
275
279
  export type UserProperties = string;
280
+ export type UserPropertiesBlob = Buffer|Uint8Array|Blob|string;
276
281
  /**
277
282
  * 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.
278
283
  */
@@ -235,7 +235,7 @@ declare namespace ManagedBlockchain {
235
235
  */
236
236
  Id?: ResourceIdString;
237
237
  /**
238
- * The type of the accessor. Currently accessor type is restricted to BILLING_TOKEN.
238
+ * The type of the accessor. Currently, accessor type is restricted to BILLING_TOKEN.
239
239
  */
240
240
  Type?: AccessorType;
241
241
  /**
@@ -309,7 +309,7 @@ declare namespace ManagedBlockchain {
309
309
  */
310
310
  ClientRequestToken: ClientRequestTokenString;
311
311
  /**
312
- * The type of accessor. Currently accessor type is restricted to BILLING_TOKEN.
312
+ * The type of accessor. Currently, accessor type is restricted to BILLING_TOKEN.
313
313
  */
314
314
  AccessorType: AccessorType;
315
315
  /**
@@ -405,7 +405,7 @@ declare namespace ManagedBlockchain {
405
405
  */
406
406
  ClientRequestToken: ClientRequestTokenString;
407
407
  /**
408
- * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet n-ethereum-goerli n-ethereum-rinkeby n-ethereum-ropsten
408
+ * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet n-ethereum-goerli n-ethereum-rinkeby
409
409
  */
410
410
  NetworkId: ResourceIdString;
411
411
  /**
@@ -481,7 +481,7 @@ declare namespace ManagedBlockchain {
481
481
  }
482
482
  export interface DeleteNodeInput {
483
483
  /**
484
- * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet n-ethereum-goerli n-ethereum-rinkeby n-ethereum-ropsten
484
+ * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds: n-ethereum-mainnet n-ethereum-goerli n-ethereum-rinkeby
485
485
  */
486
486
  NetworkId: ResourceIdString;
487
487
  /**
@@ -915,7 +915,7 @@ declare namespace ManagedBlockchain {
915
915
  */
916
916
  AdminUsername: UsernameString;
917
917
  /**
918
- * The password for the member's initial administrative user. The AdminPassword must be at least eight characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(\), @, or a space.
918
+ * The password for the member's initial administrative user. The AdminPassword must be at least 8 characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(\), @, or a space.
919
919
  */
920
920
  AdminPassword: PasswordString;
921
921
  }
@@ -1007,7 +1007,7 @@ declare namespace ManagedBlockchain {
1007
1007
  */
1008
1008
  VpcEndpointServiceName?: String;
1009
1009
  /**
1010
- * The voting rules for the network to decide if a proposal is accepted.
1010
+ * The voting rules that the network uses to decide if a proposal is accepted.
1011
1011
  */
1012
1012
  VotingPolicy?: VotingPolicy;
1013
1013
  /**
@@ -1029,7 +1029,7 @@ declare namespace ManagedBlockchain {
1029
1029
  }
1030
1030
  export interface NetworkEthereumAttributes {
1031
1031
  /**
1032
- * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows: mainnet = 1 goerli = 5 rinkeby = 4 ropsten = 3
1032
+ * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows: mainnet = 1 goerli = 5 rinkeby = 4
1033
1033
  */
1034
1034
  ChainId?: String;
1035
1035
  }