cdk-comprehend-s3olap 2.0.144 → 2.0.146
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 +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +142 -0
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +40 -39
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +19 -15
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +66 -27
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +2136 -684
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +101 -90
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +115 -115
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.examples.json +45 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +71 -3
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +11 -6
- package/node_modules/aws-sdk/clients/configservice.d.ts +1 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +11 -11
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/inspector2.d.ts +202 -0
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +7 -2
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +4 -4
- package/node_modules/aws-sdk/clients/opensearch.d.ts +64 -5
- package/node_modules/aws-sdk/clients/quicksight.d.ts +1918 -96
- package/node_modules/aws-sdk/clients/rekognition.d.ts +22 -8
- package/node_modules/aws-sdk/clients/s3.d.ts +168 -168
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +1 -1
- package/node_modules/aws-sdk/clients/securityhub.d.ts +102 -15
- 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 +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +123 -108
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +20 -20
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -438,7 +438,11 @@ declare namespace MediaTailor {
|
|
438
438
|
}
|
439
439
|
export interface AvailSuppression {
|
440
440
|
/**
|
441
|
-
*
|
441
|
+
* Defines the policy to apply to the avail suppression mode. BEHIND_LIVE_EDGE will always use the full avail suppression policy. AFTER_LIVE_EDGE mode can be used to invoke partial ad break fills when a session starts mid-break.
|
442
|
+
*/
|
443
|
+
FillPolicy?: FillPolicy;
|
444
|
+
/**
|
445
|
+
* Sets the ad suppression mode. By default, ad suppression is off and all ad breaks are filled with ads or slate. When Mode is set to BEHIND_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks on or behind the ad suppression Value time in the manifest lookback window. When Mode is set to AFTER_LIVE_EDGE, ad suppression is active and MediaTailor won't fill ad breaks that are within the live edge plus the avail suppression value.
|
442
446
|
*/
|
443
447
|
Mode?: Mode;
|
444
448
|
/**
|
@@ -1273,6 +1277,7 @@ declare namespace MediaTailor {
|
|
1273
1277
|
*/
|
1274
1278
|
VodSourceName?: __string;
|
1275
1279
|
}
|
1280
|
+
export type FillPolicy = "FULL_AVAIL_ONLY"|"PARTIAL_AVAIL"|string;
|
1276
1281
|
export interface GetChannelPolicyRequest {
|
1277
1282
|
/**
|
1278
1283
|
* The name of the channel associated with this Channel Policy.
|
@@ -1702,7 +1707,7 @@ declare namespace MediaTailor {
|
|
1702
1707
|
}
|
1703
1708
|
export type MaxResults = number;
|
1704
1709
|
export type MessageType = "SPLICE_INSERT"|"TIME_SIGNAL"|string;
|
1705
|
-
export type Mode = "OFF"|"BEHIND_LIVE_EDGE"|string;
|
1710
|
+
export type Mode = "OFF"|"BEHIND_LIVE_EDGE"|"AFTER_LIVE_EDGE"|string;
|
1706
1711
|
export type Operator = "EQUALS"|string;
|
1707
1712
|
export type OriginManifestType = "SINGLE_PERIOD"|"MULTI_PERIOD"|string;
|
1708
1713
|
export interface PlaybackConfiguration {
|
@@ -406,7 +406,7 @@ declare namespace NetworkFirewall {
|
|
406
406
|
*/
|
407
407
|
StatusMessage?: StatusMessage;
|
408
408
|
}
|
409
|
-
export type AttachmentStatus = "CREATING"|"DELETING"|"
|
409
|
+
export type AttachmentStatus = "CREATING"|"DELETING"|"FAILED"|"ERROR"|"SCALING"|"READY"|string;
|
410
410
|
export type AvailabilityZone = string;
|
411
411
|
export type AzSubnet = string;
|
412
412
|
export type AzSubnets = AzSubnet[];
|
@@ -1612,13 +1612,13 @@ declare namespace NetworkFirewall {
|
|
1612
1612
|
*/
|
1613
1613
|
RuleOrder?: RuleOrder;
|
1614
1614
|
/**
|
1615
|
-
* Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself. DROP - Network Firewall fails closed and drops all subsequent traffic going to the firewall. This is the default behavior. CONTINUE - Network Firewall continues to apply rules to the subsequent traffic without context from traffic before the break. This impacts the behavior of rules that depend on this context. For example, if you have a stateful rule to drop http traffic, Network Firewall won't match the traffic for this rule because the service won't have the context from session initialization defining the application layer protocol as HTTP. However, this behavior is rule dependent—a TCP-layer rule using a flow:stateless rule would still match, as would the aws:drop_strict default action.
|
1615
|
+
* Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself. DROP - Network Firewall fails closed and drops all subsequent traffic going to the firewall. This is the default behavior. CONTINUE - Network Firewall continues to apply rules to the subsequent traffic without context from traffic before the break. This impacts the behavior of rules that depend on this context. For example, if you have a stateful rule to drop http traffic, Network Firewall won't match the traffic for this rule because the service won't have the context from session initialization defining the application layer protocol as HTTP. However, this behavior is rule dependent—a TCP-layer rule using a flow:stateless rule would still match, as would the aws:drop_strict default action. REJECT - Network Firewall fails closed and drops all subsequent traffic going to the firewall. Network Firewall also sends a TCP reject packet back to your client so that the client can immediately establish a new session. Network Firewall will have context about the new session and will apply rules to the subsequent traffic.
|
1616
1616
|
*/
|
1617
1617
|
StreamExceptionPolicy?: StreamExceptionPolicy;
|
1618
1618
|
}
|
1619
1619
|
export interface StatefulRule {
|
1620
1620
|
/**
|
1621
|
-
* Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: PASS - Permits the packets to go to the intended destination. DROP - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. ALERT - Permits the packets to go to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with ALERT action, verify in the logs that the rule is filtering as you want, then change the action to DROP.
|
1621
|
+
* Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: PASS - Permits the packets to go to the intended destination. DROP - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. ALERT - Permits the packets to go to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with ALERT action, verify in the logs that the rule is filtering as you want, then change the action to DROP. REJECT - Drops TCP traffic that matches the conditions of the stateful rule, and sends a TCP reset packet back to sender of the packet. A TCP reset packet is a packet with no payload and a RST bit contained in the TCP header flags. Also sends an alert log mesage if alert logging is configured in the Firewall LoggingConfiguration. REJECT isn't currently available for use with IMAP and FTP protocols.
|
1622
1622
|
*/
|
1623
1623
|
Action: StatefulAction;
|
1624
1624
|
/**
|
@@ -1695,7 +1695,7 @@ declare namespace NetworkFirewall {
|
|
1695
1695
|
}
|
1696
1696
|
export type StatusMessage = string;
|
1697
1697
|
export type StatusReason = string;
|
1698
|
-
export type StreamExceptionPolicy = "DROP"|"CONTINUE"|string;
|
1698
|
+
export type StreamExceptionPolicy = "DROP"|"CONTINUE"|"REJECT"|string;
|
1699
1699
|
export interface SubnetMapping {
|
1700
1700
|
/**
|
1701
1701
|
* The unique identifier for the subnet.
|
@@ -163,6 +163,14 @@ declare class OpenSearch extends Service {
|
|
163
163
|
* Returns information about domain and node health, the standby Availability Zone, number of nodes per Availability Zone, and shard count per node.
|
164
164
|
*/
|
165
165
|
describeDomainHealth(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainHealthResponse) => void): Request<OpenSearch.Types.DescribeDomainHealthResponse, AWSError>;
|
166
|
+
/**
|
167
|
+
* Returns information about domain and nodes, including data nodes, master nodes, ultrawarm nodes, Availability Zone(s), standby nodes, node configurations, and node states.
|
168
|
+
*/
|
169
|
+
describeDomainNodes(params: OpenSearch.Types.DescribeDomainNodesRequest, callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainNodesResponse) => void): Request<OpenSearch.Types.DescribeDomainNodesResponse, AWSError>;
|
170
|
+
/**
|
171
|
+
* Returns information about domain and nodes, including data nodes, master nodes, ultrawarm nodes, Availability Zone(s), standby nodes, node configurations, and node states.
|
172
|
+
*/
|
173
|
+
describeDomainNodes(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainNodesResponse) => void): Request<OpenSearch.Types.DescribeDomainNodesResponse, AWSError>;
|
166
174
|
/**
|
167
175
|
* Returns domain configuration information about the specified Amazon OpenSearch Service domains.
|
168
176
|
*/
|
@@ -396,11 +404,11 @@ declare class OpenSearch extends Service {
|
|
396
404
|
*/
|
397
405
|
startServiceSoftwareUpdate(callback?: (err: AWSError, data: OpenSearch.Types.StartServiceSoftwareUpdateResponse) => void): Request<OpenSearch.Types.StartServiceSoftwareUpdateResponse, AWSError>;
|
398
406
|
/**
|
399
|
-
* Modifies the cluster configuration of the specified Amazon OpenSearch Service domain.
|
407
|
+
* Modifies the cluster configuration of the specified Amazon OpenSearch Service domain.sl
|
400
408
|
*/
|
401
409
|
updateDomainConfig(params: OpenSearch.Types.UpdateDomainConfigRequest, callback?: (err: AWSError, data: OpenSearch.Types.UpdateDomainConfigResponse) => void): Request<OpenSearch.Types.UpdateDomainConfigResponse, AWSError>;
|
402
410
|
/**
|
403
|
-
* Modifies the cluster configuration of the specified Amazon OpenSearch Service domain.
|
411
|
+
* Modifies the cluster configuration of the specified Amazon OpenSearch Service domain.sl
|
404
412
|
*/
|
405
413
|
updateDomainConfig(callback?: (err: AWSError, data: OpenSearch.Types.UpdateDomainConfigResponse) => void): Request<OpenSearch.Types.UpdateDomainConfigResponse, AWSError>;
|
406
414
|
/**
|
@@ -993,7 +1001,7 @@ declare namespace OpenSearch {
|
|
993
1001
|
*/
|
994
1002
|
AdvancedOptions?: AdvancedOptions;
|
995
1003
|
/**
|
996
|
-
* Key-value pairs to configure
|
1004
|
+
* Key-value pairs to configure log publishing.
|
997
1005
|
*/
|
998
1006
|
LogPublishingOptions?: LogPublishingOptions;
|
999
1007
|
/**
|
@@ -1295,6 +1303,18 @@ declare namespace OpenSearch {
|
|
1295
1303
|
*/
|
1296
1304
|
EnvironmentInformation?: EnvironmentInfoList;
|
1297
1305
|
}
|
1306
|
+
export interface DescribeDomainNodesRequest {
|
1307
|
+
/**
|
1308
|
+
* The name of the domain.
|
1309
|
+
*/
|
1310
|
+
DomainName: DomainName;
|
1311
|
+
}
|
1312
|
+
export interface DescribeDomainNodesResponse {
|
1313
|
+
/**
|
1314
|
+
* Contains nodes information list DomainNodesStatusList with details about the all nodes on the requested domain.
|
1315
|
+
*/
|
1316
|
+
DomainNodesStatusList?: DomainNodesStatusList;
|
1317
|
+
}
|
1298
1318
|
export interface DescribeDomainRequest {
|
1299
1319
|
/**
|
1300
1320
|
* The name of the domain that you want information about.
|
@@ -1421,7 +1441,7 @@ declare namespace OpenSearch {
|
|
1421
1441
|
*/
|
1422
1442
|
Name?: DescribePackagesFilterName;
|
1423
1443
|
/**
|
1424
|
-
* A list of values for the specified filter field.
|
1444
|
+
* A non-empty list of values for the specified filter field.
|
1425
1445
|
*/
|
1426
1446
|
Value?: DescribePackagesFilterValues;
|
1427
1447
|
}
|
@@ -1578,7 +1598,7 @@ declare namespace OpenSearch {
|
|
1578
1598
|
*/
|
1579
1599
|
AdvancedOptions?: AdvancedOptionsStatus;
|
1580
1600
|
/**
|
1581
|
-
* Key-value pairs to configure
|
1601
|
+
* Key-value pairs to configure log publishing.
|
1582
1602
|
*/
|
1583
1603
|
LogPublishingOptions?: LogPublishingOptionsStatus;
|
1584
1604
|
/**
|
@@ -1660,6 +1680,41 @@ declare namespace OpenSearch {
|
|
1660
1680
|
export type DomainName = string;
|
1661
1681
|
export type DomainNameFqdn = string;
|
1662
1682
|
export type DomainNameList = DomainName[];
|
1683
|
+
export interface DomainNodesStatus {
|
1684
|
+
/**
|
1685
|
+
* The ID of the node.
|
1686
|
+
*/
|
1687
|
+
NodeId?: NodeId;
|
1688
|
+
/**
|
1689
|
+
* Indicates whether the nodes is a data, master, or ultrawarm node.
|
1690
|
+
*/
|
1691
|
+
NodeType?: NodeType;
|
1692
|
+
/**
|
1693
|
+
* The Availability Zone of the node.
|
1694
|
+
*/
|
1695
|
+
AvailabilityZone?: AvailabilityZone;
|
1696
|
+
/**
|
1697
|
+
* The instance type information of the node.
|
1698
|
+
*/
|
1699
|
+
InstanceType?: OpenSearchPartitionInstanceType;
|
1700
|
+
/**
|
1701
|
+
* Indicates if the node is active or in standby.
|
1702
|
+
*/
|
1703
|
+
NodeStatus?: NodeStatus;
|
1704
|
+
/**
|
1705
|
+
* Indicates if the node has EBS or instance storage.
|
1706
|
+
*/
|
1707
|
+
StorageType?: StorageTypeName;
|
1708
|
+
/**
|
1709
|
+
* If the nodes has EBS storage, indicates if the volume type is GP2 or GP3. Only applicable for data nodes.
|
1710
|
+
*/
|
1711
|
+
StorageVolumeType?: VolumeType;
|
1712
|
+
/**
|
1713
|
+
* The storage size of the node, in GiB.
|
1714
|
+
*/
|
1715
|
+
StorageSize?: VolumeSize;
|
1716
|
+
}
|
1717
|
+
export type DomainNodesStatusList = DomainNodesStatus[];
|
1663
1718
|
export interface DomainPackageDetails {
|
1664
1719
|
/**
|
1665
1720
|
* Internal ID of the package.
|
@@ -2393,6 +2448,8 @@ declare namespace OpenSearch {
|
|
2393
2448
|
export type Message = string;
|
2394
2449
|
export type MinimumInstanceCount = number;
|
2395
2450
|
export type NextToken = string;
|
2451
|
+
export type NodeId = string;
|
2452
|
+
export type NodeStatus = "Active"|"StandBy"|"NotAvailable"|string;
|
2396
2453
|
export interface NodeToNodeEncryptionOptions {
|
2397
2454
|
/**
|
2398
2455
|
* True to enable node-to-node encryption.
|
@@ -2409,6 +2466,7 @@ declare namespace OpenSearch {
|
|
2409
2466
|
*/
|
2410
2467
|
Status: OptionStatus;
|
2411
2468
|
}
|
2469
|
+
export type NodeType = "Data"|"Ultrawarm"|"Master"|string;
|
2412
2470
|
export type NonEmptyString = string;
|
2413
2471
|
export type NumberOfAZs = string;
|
2414
2472
|
export type NumberOfNodes = string;
|
@@ -3322,6 +3380,7 @@ declare namespace OpenSearch {
|
|
3322
3380
|
Status: OptionStatus;
|
3323
3381
|
}
|
3324
3382
|
export type VersionString = string;
|
3383
|
+
export type VolumeSize = string;
|
3325
3384
|
export type VolumeType = "standard"|"gp2"|"io1"|"gp3"|string;
|
3326
3385
|
export interface VpcEndpoint {
|
3327
3386
|
/**
|