@intentius/chant-lexicon-aws 0.15.3 → 0.17.0
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/dist/generated/index.d.ts +11 -0
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/live-attrs.d.ts +4 -0
- package/dist/live-attrs.d.ts.map +1 -0
- package/dist/manifest.json +1 -1
- package/dist/meta.json +118 -11
- package/dist/op/activities/aws-apply.d.ts +8 -1
- package/dist/op/activities/aws-apply.d.ts.map +1 -1
- package/dist/op/activities/floci.d.ts +11 -19
- package/dist/op/activities/floci.d.ts.map +1 -1
- package/dist/plugin.d.ts.map +1 -1
- package/dist/reference-catalog.d.ts +14 -0
- package/dist/reference-catalog.d.ts.map +1 -0
- package/dist/types/index.d.ts +170 -19
- package/package.json +2 -2
- package/src/generated/index.d.ts +170 -19
- package/src/generated/index.ts +13 -2
- package/src/generated/lexicon-aws.json +118 -11
- package/src/live-attrs.test.ts +54 -0
- package/src/live-attrs.ts +40 -0
- package/src/op/activities/aws-apply.ts +8 -1
- package/src/op/activities/floci.ts +49 -91
- package/src/plugin.ts +13 -0
- package/src/reference-catalog.test.ts +74 -0
- package/src/reference-catalog.ts +82 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -6472,12 +6472,16 @@ export declare class ConformancePack {
|
|
|
6472
6472
|
constructor(props: {
|
|
6473
6473
|
/** Name of the conformance pack which will be assigned as the unique identifier. */
|
|
6474
6474
|
ConformancePackName: string;
|
|
6475
|
+
/** Amazon Resource Name (ARN) of the conformance pack. */
|
|
6476
|
+
ConformancePackArn?: string;
|
|
6475
6477
|
/** A list of ConformancePackInputParameter objects. */
|
|
6476
6478
|
ConformancePackInputParameters?: ConformancePack_ConformancePackInputParameter[];
|
|
6477
6479
|
/** AWS Config stores intermediate files while processing conformance pack template. */
|
|
6478
6480
|
DeliveryS3Bucket?: string;
|
|
6479
6481
|
/** The prefix for delivery S3 bucket. */
|
|
6480
6482
|
DeliveryS3KeyPrefix?: string;
|
|
6483
|
+
/** The tags for the conformance pack. */
|
|
6484
|
+
Tags?: ConformancePack_Tag[];
|
|
6481
6485
|
/** A string containing full conformance pack template body. You can only specify one of the template body or template S3Uri fields. */
|
|
6482
6486
|
TemplateBody?: string;
|
|
6483
6487
|
/** Location of file containing the template body which points to the conformance pack template that is located in an Amazon S3 bucket. You can only specify one of the template body or template S3Uri fields. */
|
|
@@ -6485,6 +6489,7 @@ export declare class ConformancePack {
|
|
|
6485
6489
|
/** The TemplateSSMDocumentDetails object contains the name of the SSM document and the version of the SSM document. */
|
|
6486
6490
|
TemplateSSMDocumentDetails?: Record<string, unknown>;
|
|
6487
6491
|
}, attributes?: CFResourceAttributes);
|
|
6492
|
+
readonly ConformancePackArn: string;
|
|
6488
6493
|
}
|
|
6489
6494
|
|
|
6490
6495
|
export declare class ConnectAttachment {
|
|
@@ -6738,10 +6743,16 @@ export declare class ConnectorV2 {
|
|
|
6738
6743
|
/** The ID of the connector */
|
|
6739
6744
|
ConnectorId?: string;
|
|
6740
6745
|
/** The status of the connector */
|
|
6741
|
-
ConnectorStatus?:
|
|
6746
|
+
ConnectorStatus?: string;
|
|
6742
6747
|
CreatedAt?: string;
|
|
6743
6748
|
/** A description of the connector */
|
|
6744
6749
|
Description?: string;
|
|
6750
|
+
/** The enablement status of the connector */
|
|
6751
|
+
EnablementStatus?: string;
|
|
6752
|
+
/** The reason for the enablement status of the connector */
|
|
6753
|
+
EnablementStatusReason?: string;
|
|
6754
|
+
/** The list of health issues associated with the connector */
|
|
6755
|
+
Issues?: ConnectorV2_HealthIssue[];
|
|
6745
6756
|
/** The ARN of KMS key used for the connector */
|
|
6746
6757
|
KmsKeyArn?: string;
|
|
6747
6758
|
LastCheckedAt?: string;
|
|
@@ -6752,8 +6763,11 @@ export declare class ConnectorV2 {
|
|
|
6752
6763
|
}, attributes?: CFResourceAttributes);
|
|
6753
6764
|
readonly ConnectorArn: string;
|
|
6754
6765
|
readonly ConnectorId: string;
|
|
6755
|
-
readonly ConnectorStatus:
|
|
6766
|
+
readonly ConnectorStatus: string;
|
|
6756
6767
|
readonly CreatedAt: string;
|
|
6768
|
+
readonly EnablementStatus: string;
|
|
6769
|
+
readonly EnablementStatusReason: string;
|
|
6770
|
+
readonly Issues: ConnectorV2_HealthIssue[];
|
|
6757
6771
|
readonly LastCheckedAt: string;
|
|
6758
6772
|
readonly LastUpdatedAt: string;
|
|
6759
6773
|
readonly Message: string;
|
|
@@ -27109,29 +27123,29 @@ export declare class Queue {
|
|
|
27109
27123
|
/** For first-in-first-out (FIFO) queues, specifies whether to enable content-based deduplication. During the deduplication interval, SQS treats messages that are sent with identical content as duplicates and delivers only one copy of the message. For more information, see the ``ContentBasedDeduplication`` attribute for the ``CreateQueue`` action in the *API Reference*. */
|
|
27110
27124
|
ContentBasedDeduplication?: boolean;
|
|
27111
27125
|
/** For high throughput for FIFO queues, specifies whether message deduplication occurs at the message group or queue level. Valid values are ``messageGroup`` and ``queue``.
|
|
27112
|
-
To enable high throughput for a FIFO queue, set this attribute to ``messageGroup
|
|
27126
|
+
To enable high throughput for a FIFO queue, set this attribute to ``messageGroup``*and* set the ``FifoThroughputLimit`` attribute to ``perMessageGroupId``. If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see [High throughput for FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html) and [Quotas related to messages](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html) in the *Developer Guide*. */
|
|
27113
27127
|
DeduplicationScope?: string;
|
|
27114
27128
|
/** The time in seconds for which the delivery of all messages in the queue is delayed. You can specify an integer value of ``0`` to ``900`` (15 minutes). The default value is ``0``. */
|
|
27115
27129
|
DelaySeconds?: number;
|
|
27116
|
-
/** If set to true, creates a FIFO queue. If you don't specify this property, SQS creates a standard queue. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/
|
|
27130
|
+
/** If set to true, creates a FIFO queue. If you don't specify this property, SQS creates a standard queue. For more information, see [Amazon SQS FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-fifo-queues.html) in the *Developer Guide*. */
|
|
27117
27131
|
FifoQueue?: boolean;
|
|
27118
27132
|
/** For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId``.
|
|
27119
|
-
To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId
|
|
27133
|
+
To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId``*and* set the ``DeduplicationScope`` attribute to ``messageGroup``. If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see [High throughput for FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html) and [Quotas related to messages](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html) in the *Developer Guide*. */
|
|
27120
27134
|
FifoThroughputLimit?: string;
|
|
27121
27135
|
/** The length of time in seconds for which SQS can reuse a data key to encrypt or decrypt messages before calling KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes).
|
|
27122
27136
|
A shorter time period provides better security, but results in more calls to KMS, which might incur charges after Free Tier. For more information, see [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work) in the *Developer Guide*. */
|
|
27123
27137
|
KmsDataKeyReusePeriodSeconds?: number;
|
|
27124
|
-
/** The ID of an AWS Key Management Service (KMS) for SQS, or a custom KMS. To use the AWS managed KMS for SQS, specify a (default) alias ARN, alias name (
|
|
27125
|
-
+
|
|
27126
|
-
+
|
|
27127
|
-
+
|
|
27128
|
-
+ The Key Management Service (KMS) section of the [
|
|
27138
|
+
/** The ID of an AWS Key Management Service (KMS) for SQS, or a custom KMS. To use the AWS managed KMS for SQS, specify a (default) alias ARN, alias name (for example ``alias/aws/sqs``), key ARN, or key ID. For more information, see the following:
|
|
27139
|
+
+ [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html) in the *Developer Guide*
|
|
27140
|
+
+ [CreateQueue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html) in the *API Reference*
|
|
27141
|
+
+ [Request Parameters](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters) in the *Key Management Service API Reference*
|
|
27142
|
+
+ The Key Management Service (KMS) section of the [Security best practices for Key Management Service](https://docs.aws.amazon.com/kms/latest/developerguide/best-practices.html) in the *Key Management Service Developer Guide* */
|
|
27129
27143
|
KmsMasterKeyId?: string;
|
|
27130
|
-
/** The limit of how many bytes that a message can contain before SQS rejects it. You can specify an integer
|
|
27144
|
+
/** The limit of how many bytes that a message can contain before SQS rejects it. You can specify an integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB). */
|
|
27131
27145
|
MaximumMessageSize?: number;
|
|
27132
27146
|
/** The number of seconds that SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days). */
|
|
27133
27147
|
MessageRetentionPeriod?: number;
|
|
27134
|
-
/** A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/
|
|
27148
|
+
/** A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see [Amazon SQS FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-fifo-queues.html) in the *Developer Guide*.
|
|
27135
27149
|
If you don't specify a name, CFN generates a unique physical ID and uses that ID for the queue name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) in the *User Guide*.
|
|
27136
27150
|
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. */
|
|
27137
27151
|
QueueName?: string;
|
|
@@ -27148,7 +27162,7 @@ export declare class Queue {
|
|
|
27148
27162
|
RedriveAllowPolicy?: Record<string, unknown>;
|
|
27149
27163
|
/** The string that includes the parameters for the dead-letter queue functionality of the source queue as a JSON object. The parameters are as follows:
|
|
27150
27164
|
+ ``deadLetterTargetArn``: The Amazon Resource Name (ARN) of the dead-letter queue to which SQS moves messages after the value of ``maxReceiveCount`` is exceeded.
|
|
27151
|
-
+ ``maxReceiveCount``: The number of times a message is
|
|
27165
|
+
+ ``maxReceiveCount``: The number of times a message is received by a consumer of the source queue before being moved to the dead-letter queue. When the ``ReceiveCount`` for a message exceeds the ``maxReceiveCount`` for a queue, SQS moves the message to the dead-letter-queue.
|
|
27152
27166
|
|
|
27153
27167
|
The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue.
|
|
27154
27168
|
*JSON*
|
|
@@ -31559,6 +31573,46 @@ export declare class SecurityHubAutomationRule {
|
|
|
31559
31573
|
readonly UpdatedAt: string;
|
|
31560
31574
|
}
|
|
31561
31575
|
|
|
31576
|
+
export declare class SecurityHubConnector {
|
|
31577
|
+
constructor(props: {
|
|
31578
|
+
/** The name of the connector */
|
|
31579
|
+
Name: string;
|
|
31580
|
+
Provider: SecurityHubConnector_Provider;
|
|
31581
|
+
/** The ARN of the connector */
|
|
31582
|
+
ConnectorArn?: string;
|
|
31583
|
+
/** The ID of the connector */
|
|
31584
|
+
ConnectorId?: string;
|
|
31585
|
+
ConnectorStatus?: string;
|
|
31586
|
+
/** The date and time for createdAt in UTC and ISO 8601 format. */
|
|
31587
|
+
CreatedAt?: string;
|
|
31588
|
+
/** The principal that created the connector */
|
|
31589
|
+
CreatedBy?: string;
|
|
31590
|
+
/** A description of the connector */
|
|
31591
|
+
Description?: string;
|
|
31592
|
+
/** The enablement status of the connector */
|
|
31593
|
+
EnablementStatus?: string;
|
|
31594
|
+
/** The list of health issues associated with the connector */
|
|
31595
|
+
Issues?: SecurityHubConnector_HealthIssue[];
|
|
31596
|
+
/** The date and time for lastCheckedAt in UTC and ISO 8601 format. */
|
|
31597
|
+
LastCheckedAt?: string;
|
|
31598
|
+
/** The date and time for lastUpdatedAt in UTC and ISO 8601 format. */
|
|
31599
|
+
LastUpdatedAt?: string;
|
|
31600
|
+
/** The message associated with the connector status change */
|
|
31601
|
+
Message?: string;
|
|
31602
|
+
Tags?: Record<string, unknown>;
|
|
31603
|
+
}, attributes?: CFResourceAttributes);
|
|
31604
|
+
readonly ConnectorArn: string;
|
|
31605
|
+
readonly ConnectorId: string;
|
|
31606
|
+
readonly ConnectorStatus: string;
|
|
31607
|
+
readonly CreatedAt: string;
|
|
31608
|
+
readonly CreatedBy: string;
|
|
31609
|
+
readonly EnablementStatus: string;
|
|
31610
|
+
readonly Issues: SecurityHubConnector_HealthIssue[];
|
|
31611
|
+
readonly LastCheckedAt: string;
|
|
31612
|
+
readonly LastUpdatedAt: string;
|
|
31613
|
+
readonly Message: string;
|
|
31614
|
+
}
|
|
31615
|
+
|
|
31562
31616
|
export declare class SecurityHubHub {
|
|
31563
31617
|
constructor(props: {
|
|
31564
31618
|
/** An ARN is automatically created for the customer. */
|
|
@@ -35453,6 +35507,23 @@ export declare class TransitGatewayPeeringAttachment {
|
|
|
35453
35507
|
readonly TransitGatewayAttachmentId: string;
|
|
35454
35508
|
}
|
|
35455
35509
|
|
|
35510
|
+
export declare class TransitGatewayPolicyTable {
|
|
35511
|
+
constructor(props: {
|
|
35512
|
+
/** The Id of transit gateway */
|
|
35513
|
+
TransitGatewayId: string;
|
|
35514
|
+
/** Creation time of the transit gateway policy table */
|
|
35515
|
+
CreationTime?: string;
|
|
35516
|
+
/** State of the transit gateway policy table */
|
|
35517
|
+
State?: string;
|
|
35518
|
+
Tags?: TransitGatewayPolicyTable_Tag[];
|
|
35519
|
+
/** The Id of transit gateway policy table. */
|
|
35520
|
+
TransitGatewayPolicyTableId?: string;
|
|
35521
|
+
}, attributes?: CFResourceAttributes);
|
|
35522
|
+
readonly CreationTime: string;
|
|
35523
|
+
readonly State: string;
|
|
35524
|
+
readonly TransitGatewayPolicyTableId: string;
|
|
35525
|
+
}
|
|
35526
|
+
|
|
35456
35527
|
export declare class TransitGatewayRegistration {
|
|
35457
35528
|
constructor(props: {
|
|
35458
35529
|
/** The ID of the global network. */
|
|
@@ -45778,6 +45849,25 @@ export declare class AzureConnectorConfiguration {
|
|
|
45778
45849
|
});
|
|
45779
45850
|
}
|
|
45780
45851
|
|
|
45852
|
+
export declare class AzureProviderConfiguration {
|
|
45853
|
+
constructor(props: {
|
|
45854
|
+
/** The ARN of the AWS Config connector used for the Azure integration */
|
|
45855
|
+
AWSConfigConnectorArn: string;
|
|
45856
|
+
/** The list of Azure regions to include in the connector scope */
|
|
45857
|
+
AzureRegions: string[];
|
|
45858
|
+
ScopeConfiguration: SecurityHubConnector_AzureScopeConfiguration;
|
|
45859
|
+
});
|
|
45860
|
+
}
|
|
45861
|
+
|
|
45862
|
+
export declare class AzureScopeConfiguration {
|
|
45863
|
+
constructor(props: {
|
|
45864
|
+
/** The scope type for the Azure connector */
|
|
45865
|
+
ScopeType: "SUBSCRIPTION" | "TENANT";
|
|
45866
|
+
/** The list of scope values for the Azure connector */
|
|
45867
|
+
ScopeValues?: string[];
|
|
45868
|
+
});
|
|
45869
|
+
}
|
|
45870
|
+
|
|
45781
45871
|
export declare class B2BICapability_S3Location {
|
|
45782
45872
|
constructor(props: {
|
|
45783
45873
|
BucketName?: string;
|
|
@@ -54186,6 +54276,15 @@ export declare class ConformancePack_ConformancePackInputParameter {
|
|
|
54186
54276
|
});
|
|
54187
54277
|
}
|
|
54188
54278
|
|
|
54279
|
+
export declare class ConformancePack_Tag {
|
|
54280
|
+
constructor(props: {
|
|
54281
|
+
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
54282
|
+
Key: string;
|
|
54283
|
+
/** The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
54284
|
+
Value: string;
|
|
54285
|
+
});
|
|
54286
|
+
}
|
|
54287
|
+
|
|
54189
54288
|
export declare class ConnectAction {
|
|
54190
54289
|
constructor(props: {
|
|
54191
54290
|
IAMRoleARN: string;
|
|
@@ -55191,6 +55290,15 @@ export declare class ConnectorProvisioningConfig {
|
|
|
55191
55290
|
});
|
|
55192
55291
|
}
|
|
55193
55292
|
|
|
55293
|
+
export declare class ConnectorV2_HealthIssue {
|
|
55294
|
+
constructor(props: {
|
|
55295
|
+
/** The code identifying the type of health issue */
|
|
55296
|
+
Code: string;
|
|
55297
|
+
/** The message describing the health issue */
|
|
55298
|
+
Message: string;
|
|
55299
|
+
});
|
|
55300
|
+
}
|
|
55301
|
+
|
|
55194
55302
|
export declare class ConnectorVpcLatticeEgressConfig {
|
|
55195
55303
|
constructor(props: {
|
|
55196
55304
|
/** ARN of the VPC Lattice resource configuration */
|
|
@@ -68803,9 +68911,9 @@ export declare class EvaluationForm_EvaluationFormScoreThreshold {
|
|
|
68803
68911
|
constructor(props: {
|
|
68804
68912
|
/** The performance category name. */
|
|
68805
68913
|
PerformanceCategory: "EXCEEDS_EXPECTATIONS" | "NEEDS_IMPROVEMENT";
|
|
68806
|
-
/** The maximum score percentage for
|
|
68914
|
+
/** The maximum score percentage for the performance category. */
|
|
68807
68915
|
MaxScorePercentage?: number;
|
|
68808
|
-
/** The minimum score percentage for
|
|
68916
|
+
/** The minimum score percentage for the performance category. */
|
|
68809
68917
|
MinScorePercentage?: number;
|
|
68810
68918
|
});
|
|
68811
68919
|
}
|
|
@@ -68820,10 +68928,12 @@ export declare class EvaluationForm_EvaluationFormSection {
|
|
|
68820
68928
|
Title: string;
|
|
68821
68929
|
/** The instructions of the section. */
|
|
68822
68930
|
Instructions?: string;
|
|
68931
|
+
/** The flag to exclude the section from scoring. */
|
|
68823
68932
|
IsExcludedFromScoring?: boolean;
|
|
68824
68933
|
/** The items of the section.
|
|
68825
68934
|
*Minimum*: 1 */
|
|
68826
68935
|
Items?: EvaluationForm_EvaluationFormItem[];
|
|
68936
|
+
/** The score thresholds for performance categories. */
|
|
68827
68937
|
ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
|
|
68828
68938
|
/** The scoring weight of the section.
|
|
68829
68939
|
*Minimum*: 0
|
|
@@ -68912,9 +69022,9 @@ export declare class EvaluationFormScoreThreshold {
|
|
|
68912
69022
|
constructor(props: {
|
|
68913
69023
|
/** The performance category name. */
|
|
68914
69024
|
PerformanceCategory: "EXCEEDS_EXPECTATIONS" | "NEEDS_IMPROVEMENT";
|
|
68915
|
-
/** The maximum score percentage for
|
|
69025
|
+
/** The maximum score percentage for the performance category. */
|
|
68916
69026
|
MaxScorePercentage?: number;
|
|
68917
|
-
/** The minimum score percentage for
|
|
69027
|
+
/** The minimum score percentage for the performance category. */
|
|
68918
69028
|
MinScorePercentage?: number;
|
|
68919
69029
|
});
|
|
68920
69030
|
}
|
|
@@ -68929,10 +69039,12 @@ export declare class EvaluationFormSection {
|
|
|
68929
69039
|
Title: string;
|
|
68930
69040
|
/** The instructions of the section. */
|
|
68931
69041
|
Instructions?: string;
|
|
69042
|
+
/** The flag to exclude the section from scoring. */
|
|
68932
69043
|
IsExcludedFromScoring?: boolean;
|
|
68933
69044
|
/** The items of the section.
|
|
68934
69045
|
*Minimum*: 1 */
|
|
68935
69046
|
Items?: EvaluationForm_EvaluationFormItem[];
|
|
69047
|
+
/** The score thresholds for performance categories. */
|
|
68936
69048
|
ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
|
|
68937
69049
|
/** The scoring weight of the section.
|
|
68938
69050
|
*Minimum*: 0
|
|
@@ -100910,9 +101022,7 @@ export declare class QueryStringObject {
|
|
|
100910
101022
|
|
|
100911
101023
|
export declare class Queue_Tag {
|
|
100912
101024
|
constructor(props: {
|
|
100913
|
-
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
100914
101025
|
Key: string;
|
|
100915
|
-
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
100916
101026
|
Value: string;
|
|
100917
101027
|
});
|
|
100918
101028
|
}
|
|
@@ -110705,6 +110815,40 @@ export declare class SecurityHubAutomationRule_WorkflowUpdate {
|
|
|
110705
110815
|
});
|
|
110706
110816
|
}
|
|
110707
110817
|
|
|
110818
|
+
export declare class SecurityHubConnector_AzureProviderConfiguration {
|
|
110819
|
+
constructor(props: {
|
|
110820
|
+
/** The ARN of the AWS Config connector used for the Azure integration */
|
|
110821
|
+
AWSConfigConnectorArn: string;
|
|
110822
|
+
/** The list of Azure regions to include in the connector scope */
|
|
110823
|
+
AzureRegions: string[];
|
|
110824
|
+
ScopeConfiguration: SecurityHubConnector_AzureScopeConfiguration;
|
|
110825
|
+
});
|
|
110826
|
+
}
|
|
110827
|
+
|
|
110828
|
+
export declare class SecurityHubConnector_AzureScopeConfiguration {
|
|
110829
|
+
constructor(props: {
|
|
110830
|
+
/** The scope type for the Azure connector */
|
|
110831
|
+
ScopeType: "SUBSCRIPTION" | "TENANT";
|
|
110832
|
+
/** The list of scope values for the Azure connector */
|
|
110833
|
+
ScopeValues?: string[];
|
|
110834
|
+
});
|
|
110835
|
+
}
|
|
110836
|
+
|
|
110837
|
+
export declare class SecurityHubConnector_HealthIssue {
|
|
110838
|
+
constructor(props: {
|
|
110839
|
+
/** The code identifying the type of health issue */
|
|
110840
|
+
Code: string;
|
|
110841
|
+
/** The message describing the health issue */
|
|
110842
|
+
Message: string;
|
|
110843
|
+
});
|
|
110844
|
+
}
|
|
110845
|
+
|
|
110846
|
+
export declare class SecurityHubConnector_Provider {
|
|
110847
|
+
constructor(props: {
|
|
110848
|
+
Azure: SecurityHubConnector_AzureProviderConfiguration;
|
|
110849
|
+
});
|
|
110850
|
+
}
|
|
110851
|
+
|
|
110708
110852
|
export declare class SecurityHubPolicy {
|
|
110709
110853
|
constructor(props: {
|
|
110710
110854
|
/** A list that defines which security standards are enabled in the configuration policy. */
|
|
@@ -119064,6 +119208,13 @@ export declare class TransitGatewayPeeringAttachment_Tag {
|
|
|
119064
119208
|
});
|
|
119065
119209
|
}
|
|
119066
119210
|
|
|
119211
|
+
export declare class TransitGatewayPolicyTable_Tag {
|
|
119212
|
+
constructor(props: {
|
|
119213
|
+
Key: string;
|
|
119214
|
+
Value: string;
|
|
119215
|
+
});
|
|
119216
|
+
}
|
|
119217
|
+
|
|
119067
119218
|
export declare class TransitGatewayRouteTable_Tag {
|
|
119068
119219
|
constructor(props: {
|
|
119069
119220
|
/** The key of the associated tag key-value pair */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "AWS CloudFormation lexicon for chant — declarative IaC in TypeScript",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://intentius.io/chant",
|
|
@@ -80,6 +80,6 @@
|
|
|
80
80
|
"typescript": "^5.9.3"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@intentius/chant": "^0.
|
|
83
|
+
"@intentius/chant": "^0.17.0"
|
|
84
84
|
}
|
|
85
85
|
}
|