@intentius/chant-lexicon-aws 0.14.0 → 0.15.1
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/components/__tests__/mock-cloud-executor.d.ts +106 -0
- package/dist/components/__tests__/mock-cloud-executor.d.ts.map +1 -0
- package/dist/components/apply.d.ts +242 -0
- package/dist/components/apply.d.ts.map +1 -0
- package/dist/components/builders.d.ts +37 -0
- package/dist/components/builders.d.ts.map +1 -0
- package/dist/components/capability-plugin.d.ts +23 -0
- package/dist/components/capability-plugin.d.ts.map +1 -0
- package/dist/components/cloud-executor.d.ts +350 -0
- package/dist/components/cloud-executor.d.ts.map +1 -0
- package/dist/components/config-bom.d.ts +135 -0
- package/dist/components/config-bom.d.ts.map +1 -0
- package/dist/components/host-delivery.d.ts +110 -0
- package/dist/components/host-delivery.d.ts.map +1 -0
- package/dist/components/index.d.ts +19 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/job-submission.d.ts +89 -0
- package/dist/components/job-submission.d.ts.map +1 -0
- package/dist/components/publish.d.ts +194 -0
- package/dist/components/publish.d.ts.map +1 -0
- package/dist/components/safety.d.ts +49 -0
- package/dist/components/safety.d.ts.map +1 -0
- package/dist/components/wait-aws.d.ts +65 -0
- package/dist/components/wait-aws.d.ts.map +1 -0
- package/dist/generated/index.d.ts +7 -4
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/import/live-export.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/lint/audit-catalog.d.ts +10 -0
- package/dist/lint/audit-catalog.d.ts.map +1 -0
- package/dist/manifest.json +1 -1
- package/dist/meta.json +141 -30
- package/dist/op/activities/floci.d.ts +54 -0
- package/dist/op/activities/floci.d.ts.map +1 -0
- package/dist/op/activities/index.d.ts +8 -0
- package/dist/op/activities/index.d.ts.map +1 -0
- package/dist/ownership.d.ts +10 -0
- package/dist/ownership.d.ts.map +1 -0
- package/dist/plugin.d.ts.map +1 -1
- package/dist/serializer.d.ts.map +1 -1
- package/dist/types/index.d.ts +145 -38
- package/package.json +12 -2
- package/src/components/__fixtures__/schemas/cyclonedx-1.5.schema.json +3800 -0
- package/src/components/__fixtures__/schemas/cyclonedx-spdx-license.schema.json +621 -0
- package/src/components/__fixtures__/schemas/jsf-0.82.schema.json +240 -0
- package/src/components/__fixtures__/schemas/spdx-2.3.schema.json +740 -0
- package/src/components/__fixtures__/synthesized-template.json +53 -0
- package/src/components/__tests__/mock-cloud-executor.ts +425 -0
- package/src/components/apply.test.ts +382 -0
- package/src/components/apply.ts +499 -0
- package/src/components/builders.test.ts +49 -0
- package/src/components/builders.ts +59 -0
- package/src/components/capability-plugin.ts +73 -0
- package/src/components/cloud-executor.test.ts +25 -0
- package/src/components/cloud-executor.ts +814 -0
- package/src/components/config-bom.test.ts +273 -0
- package/src/components/config-bom.ts +310 -0
- package/src/components/host-delivery.test.ts +121 -0
- package/src/components/host-delivery.ts +193 -0
- package/src/components/index.ts +19 -0
- package/src/components/job-submission.test.ts +97 -0
- package/src/components/job-submission.ts +138 -0
- package/src/components/pilots-e2e.test.ts +460 -0
- package/src/components/presets-e2e.test.ts +166 -0
- package/src/components/publish.test.ts +318 -0
- package/src/components/publish.ts +356 -0
- package/src/components/safety.test.ts +47 -0
- package/src/components/safety.ts +78 -0
- package/src/components/wait-aws.test.ts +79 -0
- package/src/components/wait-aws.ts +132 -0
- package/src/generated/index.d.ts +145 -38
- package/src/generated/index.ts +12 -9
- package/src/generated/lexicon-aws.json +141 -30
- package/src/import/live-export.ts +2 -1
- package/src/index.ts +5 -0
- package/src/lint/audit-catalog.ts +45 -0
- package/src/op/activities/floci.test.ts +67 -0
- package/src/op/activities/floci.ts +149 -0
- package/src/op/activities/index.ts +16 -0
- package/src/ownership.test.ts +18 -0
- package/src/ownership.ts +15 -0
- package/src/plugin.ts +3 -0
- package/src/serializer.ts +2 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -33,11 +33,11 @@ export declare class Accelerator {
|
|
|
33
33
|
|
|
34
34
|
export declare class AcceptedPortfolioShare {
|
|
35
35
|
constructor(props: {
|
|
36
|
+
/** The portfolio identifier. */
|
|
36
37
|
PortfolioId: string;
|
|
38
|
+
/** The language code. */
|
|
37
39
|
AcceptLanguage?: string;
|
|
38
|
-
Id?: string;
|
|
39
40
|
}, attributes?: CFResourceAttributes);
|
|
40
|
-
readonly Id: string;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
export declare class AccessEntry {
|
|
@@ -5155,22 +5155,39 @@ export declare class CloudExadataInfrastructure {
|
|
|
5155
5155
|
|
|
5156
5156
|
export declare class CloudFormationProduct {
|
|
5157
5157
|
constructor(props: {
|
|
5158
|
+
/** The name of the product. */
|
|
5158
5159
|
Name: string;
|
|
5160
|
+
/** The owner of the product. */
|
|
5159
5161
|
Owner: string;
|
|
5162
|
+
/** The language code. */
|
|
5160
5163
|
AcceptLanguage?: string;
|
|
5164
|
+
/** The description of the product. */
|
|
5161
5165
|
Description?: string;
|
|
5166
|
+
/** The distributor of the product. */
|
|
5162
5167
|
Distributor?: string;
|
|
5168
|
+
/** The ID of the product, such as prod-tsjbmal34qvek */
|
|
5163
5169
|
Id?: string;
|
|
5170
|
+
/** The name of the product. */
|
|
5164
5171
|
ProductName?: string;
|
|
5165
|
-
|
|
5172
|
+
/** The type of product. */
|
|
5173
|
+
ProductType?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
5174
|
+
/** The IDs of the provisioning artifacts */
|
|
5166
5175
|
ProvisioningArtifactIds?: string;
|
|
5176
|
+
/** The names of the provisioning artifacts */
|
|
5167
5177
|
ProvisioningArtifactNames?: string;
|
|
5178
|
+
/** The configuration of the provisioning artifact (also known as a version). */
|
|
5168
5179
|
ProvisioningArtifactParameters?: CloudFormationProduct_ProvisioningArtifactProperties[];
|
|
5180
|
+
/** This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name. */
|
|
5169
5181
|
ReplaceProvisioningArtifacts?: boolean;
|
|
5182
|
+
/** A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response. */
|
|
5170
5183
|
SourceConnection?: CloudFormationProduct_SourceConnection;
|
|
5184
|
+
/** The support information about the product. */
|
|
5171
5185
|
SupportDescription?: string;
|
|
5186
|
+
/** The contact email for product support. */
|
|
5172
5187
|
SupportEmail?: string;
|
|
5188
|
+
/** The contact URL for product support. */
|
|
5173
5189
|
SupportUrl?: string;
|
|
5190
|
+
/** One or more tags. */
|
|
5174
5191
|
Tags?: CloudFormationProduct_Tag[];
|
|
5175
5192
|
}, attributes?: CFResourceAttributes);
|
|
5176
5193
|
readonly Id: string;
|
|
@@ -6156,6 +6173,24 @@ export declare class Config {
|
|
|
6156
6173
|
readonly Type: string;
|
|
6157
6174
|
}
|
|
6158
6175
|
|
|
6176
|
+
export declare class ConfigConnector {
|
|
6177
|
+
constructor(props: {
|
|
6178
|
+
/** The configuration for the connector that specifies the third-party cloud provider connection details. */
|
|
6179
|
+
ConnectorConfiguration: ConfigConnector_ConnectorConfiguration;
|
|
6180
|
+
/** The Amazon Resource Name (ARN) of the connector. */
|
|
6181
|
+
Arn?: string;
|
|
6182
|
+
/** The time at which the connector was created. */
|
|
6183
|
+
CreatedTime?: string;
|
|
6184
|
+
/** The name of the connector. AWS Config automatically assigns the name when creating the Connector. */
|
|
6185
|
+
Name?: string;
|
|
6186
|
+
/** The tags for the connector. */
|
|
6187
|
+
Tags?: ConfigConnector_Tag[];
|
|
6188
|
+
}, attributes?: CFResourceAttributes);
|
|
6189
|
+
readonly Arn: string;
|
|
6190
|
+
readonly CreatedTime: string;
|
|
6191
|
+
readonly Name: string;
|
|
6192
|
+
}
|
|
6193
|
+
|
|
6159
6194
|
export declare class ConfigRule {
|
|
6160
6195
|
constructor(props: {
|
|
6161
6196
|
/** Provides the rule owner (```` for managed rules, ``CUSTOM_POLICY`` for Custom Policy rules, and ``CUSTOM_LAMBDA`` for Custom Lambda rules), the rule identifier, and the notifications that cause the function to evaluate your AWS resources. */
|
|
@@ -11467,6 +11502,23 @@ export declare class DomainNameV2 {
|
|
|
11467
11502
|
readonly DomainNameId: string;
|
|
11468
11503
|
}
|
|
11469
11504
|
|
|
11505
|
+
export declare class DomainObjectType {
|
|
11506
|
+
constructor(props: {
|
|
11507
|
+
DomainName: string;
|
|
11508
|
+
Fields: Record<string, unknown>;
|
|
11509
|
+
ObjectTypeName: string;
|
|
11510
|
+
/** The timestamp of when the domain object type was created. */
|
|
11511
|
+
CreatedAt?: string;
|
|
11512
|
+
Description?: string;
|
|
11513
|
+
EncryptionKey?: string;
|
|
11514
|
+
/** The timestamp of when the domain object type was most recently edited. */
|
|
11515
|
+
LastUpdatedAt?: string;
|
|
11516
|
+
Tags?: any;
|
|
11517
|
+
}, attributes?: CFResourceAttributes);
|
|
11518
|
+
readonly CreatedAt: string;
|
|
11519
|
+
readonly LastUpdatedAt: string;
|
|
11520
|
+
}
|
|
11521
|
+
|
|
11470
11522
|
export declare class DomainUnit {
|
|
11471
11523
|
constructor(props: {
|
|
11472
11524
|
/** The ID of the domain where you want to create a domain unit. */
|
|
@@ -12596,6 +12648,8 @@ export declare class EMRContainersEndpoint {
|
|
|
12596
12648
|
VirtualClusterId: string;
|
|
12597
12649
|
/** The ARN of the managed endpoint. */
|
|
12598
12650
|
Arn?: string;
|
|
12651
|
+
/** The auth proxy URL for Spark Connect connections. */
|
|
12652
|
+
AuthProxyUrl?: string;
|
|
12599
12653
|
/** The certificate authority for the managed endpoint. */
|
|
12600
12654
|
CertificateAuthority?: EMRContainersEndpoint_Certificate;
|
|
12601
12655
|
/** The configuration overrides for the managed endpoint. */
|
|
@@ -12612,6 +12666,8 @@ export declare class EMRContainersEndpoint {
|
|
|
12612
12666
|
SecurityGroup?: string;
|
|
12613
12667
|
/** The server URL of the managed endpoint. */
|
|
12614
12668
|
ServerUrl?: string;
|
|
12669
|
+
/** The idle timeout in minutes for sessions on the managed endpoint. */
|
|
12670
|
+
SessionIdleTimeoutInMinutes?: number;
|
|
12615
12671
|
/** The state of the managed endpoint. */
|
|
12616
12672
|
State?: string;
|
|
12617
12673
|
/** Additional details about the state of the managed endpoint. */
|
|
@@ -12620,6 +12676,7 @@ export declare class EMRContainersEndpoint {
|
|
|
12620
12676
|
Tags?: EMRContainersEndpoint_Tag[];
|
|
12621
12677
|
}, attributes?: CFResourceAttributes);
|
|
12622
12678
|
readonly Arn: string;
|
|
12679
|
+
readonly AuthProxyUrl: string;
|
|
12623
12680
|
readonly CertificateAuthority: EMRContainersEndpoint_Certificate;
|
|
12624
12681
|
readonly CreatedAt: string;
|
|
12625
12682
|
readonly FailureReason: string;
|
|
@@ -16909,6 +16966,8 @@ export declare class ImageRecipe {
|
|
|
16909
16966
|
AdditionalInstanceConfiguration?: ImageRecipe_AdditionalInstanceConfiguration;
|
|
16910
16967
|
/** The tags to apply to the AMI created by this image recipe. */
|
|
16911
16968
|
AmiTags?: Record<string, unknown>;
|
|
16969
|
+
/** The AMI watermark names to attach to the output AMI from this recipe. AMI watermarks are lineage markers that automatically propagate to derivative AMIs when the source AMI is copied or distributed. */
|
|
16970
|
+
AmiWatermarks?: string[];
|
|
16912
16971
|
/** The Amazon Resource Name (ARN) of the image recipe. */
|
|
16913
16972
|
Arn?: string;
|
|
16914
16973
|
/** The block device mappings to apply when creating images from this recipe. */
|
|
@@ -29860,6 +29919,8 @@ export declare class RouterInput {
|
|
|
29860
29919
|
Arn?: string;
|
|
29861
29920
|
/** The Availability Zone where you want to create the router input. This must be a valid Availability Zone for the region specified by regionName, or the current region if no regionName is provided. */
|
|
29862
29921
|
AvailabilityZone?: string;
|
|
29922
|
+
ContentQualityAnalysisConfiguration?: any;
|
|
29923
|
+
ContentQualityAnalysisType?: RouterInput_RouterContentQualityAnalysisType;
|
|
29863
29924
|
/** The timestamp when the router input was created. */
|
|
29864
29925
|
CreatedAt?: string;
|
|
29865
29926
|
/** The unique identifier of the router input. */
|
|
@@ -29881,6 +29942,7 @@ export declare class RouterInput {
|
|
|
29881
29942
|
UpdatedAt?: string;
|
|
29882
29943
|
}, attributes?: CFResourceAttributes);
|
|
29883
29944
|
readonly Arn: string;
|
|
29945
|
+
readonly ContentQualityAnalysisType: RouterInput_RouterContentQualityAnalysisType;
|
|
29884
29946
|
readonly CreatedAt: string;
|
|
29885
29947
|
readonly Id: string;
|
|
29886
29948
|
readonly InputType: RouterInput_RouterInputType;
|
|
@@ -32945,6 +33007,7 @@ export declare class SsmParameter {
|
|
|
32945
33007
|
Value: string;
|
|
32946
33008
|
/** A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\d+$`` */
|
|
32947
33009
|
AllowedPattern?: string;
|
|
33010
|
+
Arn?: string;
|
|
32948
33011
|
/** The data type of the parameter, such as ``text`` or ``aws:ec2:image``. The default is ``text``. */
|
|
32949
33012
|
DataType?: "aws:ec2:image" | "text";
|
|
32950
33013
|
/** Information about the parameter. */
|
|
@@ -32961,6 +33024,7 @@ export declare class SsmParameter {
|
|
|
32961
33024
|
/** The parameter tier. */
|
|
32962
33025
|
Tier?: "Advanced" | "Intelligent-Tiering" | "Standard";
|
|
32963
33026
|
}, attributes?: CFResourceAttributes);
|
|
33027
|
+
readonly Arn: string;
|
|
32964
33028
|
}
|
|
32965
33029
|
|
|
32966
33030
|
export declare class SSMResourcePolicy {
|
|
@@ -36380,6 +36444,8 @@ export declare class VirtualCluster {
|
|
|
36380
36444
|
Id?: string;
|
|
36381
36445
|
/** The ID of the security configuration. */
|
|
36382
36446
|
SecurityConfigurationId?: string;
|
|
36447
|
+
/** Whether the virtual cluster is session-enabled for Spark Connect. */
|
|
36448
|
+
SessionEnabled?: boolean;
|
|
36383
36449
|
/** An array of key-value pairs to apply to this virtual cluster. */
|
|
36384
36450
|
Tags?: VirtualCluster_Tag[];
|
|
36385
36451
|
}, attributes?: CFResourceAttributes);
|
|
@@ -38839,6 +38905,7 @@ export declare class Actions {
|
|
|
38839
38905
|
constructor(props: {
|
|
38840
38906
|
/** Information about the contact category action. The syntax can be empty, for example, ``{}``. */
|
|
38841
38907
|
AssignContactCategoryActions?: any;
|
|
38908
|
+
AssignSlaActions?: any;
|
|
38842
38909
|
CreateCaseActions?: any;
|
|
38843
38910
|
EndAssociatedTasksActions?: any;
|
|
38844
38911
|
/** Information about the EV action. */
|
|
@@ -45701,6 +45768,15 @@ export declare class AzureBlobSasConfiguration {
|
|
|
45701
45768
|
});
|
|
45702
45769
|
}
|
|
45703
45770
|
|
|
45771
|
+
export declare class AzureConnectorConfiguration {
|
|
45772
|
+
constructor(props: {
|
|
45773
|
+
/** The Azure client (application) identifier. */
|
|
45774
|
+
ClientIdentifier: string;
|
|
45775
|
+
/** The Azure tenant identifier. */
|
|
45776
|
+
TenantIdentifier: string;
|
|
45777
|
+
});
|
|
45778
|
+
}
|
|
45779
|
+
|
|
45704
45780
|
export declare class B2BICapability_S3Location {
|
|
45705
45781
|
constructor(props: {
|
|
45706
45782
|
BucketName?: string;
|
|
@@ -51477,41 +51553,39 @@ export declare class CloudFormationCollectionFilter {
|
|
|
51477
51553
|
});
|
|
51478
51554
|
}
|
|
51479
51555
|
|
|
51480
|
-
export declare class
|
|
51556
|
+
export declare class CloudFormationProduct_ProvisioningArtifactProperties {
|
|
51481
51557
|
constructor(props: {
|
|
51482
|
-
|
|
51483
|
-
Branch: string;
|
|
51484
|
-
ConnectionArn: string;
|
|
51485
|
-
Repository: string;
|
|
51486
|
-
});
|
|
51487
|
-
}
|
|
51558
|
+
/** Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
51488
51559
|
|
|
51489
|
-
|
|
51490
|
-
constructor(props: {
|
|
51491
|
-
CodeStar?: CloudFormationProduct_CodeStarParameters;
|
|
51492
|
-
});
|
|
51493
|
-
}
|
|
51560
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
51494
51561
|
|
|
51495
|
-
|
|
51496
|
-
constructor(props: {
|
|
51562
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId] */
|
|
51497
51563
|
Info: Record<string, unknown>;
|
|
51564
|
+
/** The description of the provisioning artifact, including how it differs from the previous provisioning artifact. */
|
|
51498
51565
|
Description?: string;
|
|
51566
|
+
/** If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid. */
|
|
51499
51567
|
DisableTemplateValidation?: boolean;
|
|
51568
|
+
/** The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed. */
|
|
51500
51569
|
Name?: string;
|
|
51501
|
-
|
|
51570
|
+
/** The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL */
|
|
51571
|
+
Type?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
51502
51572
|
});
|
|
51503
51573
|
}
|
|
51504
51574
|
|
|
51505
51575
|
export declare class CloudFormationProduct_SourceConnection {
|
|
51506
51576
|
constructor(props: {
|
|
51507
|
-
|
|
51577
|
+
/** The connection details based on the connection Type. */
|
|
51578
|
+
ConnectionParameters: Record<string, unknown>;
|
|
51579
|
+
/** The only supported SourceConnection type is Codestar. */
|
|
51508
51580
|
Type: string;
|
|
51509
51581
|
});
|
|
51510
51582
|
}
|
|
51511
51583
|
|
|
51512
51584
|
export declare class CloudFormationProduct_Tag {
|
|
51513
51585
|
constructor(props: {
|
|
51586
|
+
/** The tag key. */
|
|
51514
51587
|
Key: string;
|
|
51588
|
+
/** The tag value */
|
|
51515
51589
|
Value: string;
|
|
51516
51590
|
});
|
|
51517
51591
|
}
|
|
@@ -52656,15 +52730,6 @@ export declare class CodeStarConnectionsConnection_Tag {
|
|
|
52656
52730
|
});
|
|
52657
52731
|
}
|
|
52658
52732
|
|
|
52659
|
-
export declare class CodeStarParameters {
|
|
52660
|
-
constructor(props: {
|
|
52661
|
-
ArtifactPath: string;
|
|
52662
|
-
Branch: string;
|
|
52663
|
-
ConnectionArn: string;
|
|
52664
|
-
Repository: string;
|
|
52665
|
-
});
|
|
52666
|
-
}
|
|
52667
|
-
|
|
52668
52733
|
export declare class CognitoIdentityProvider {
|
|
52669
52734
|
constructor(props: {
|
|
52670
52735
|
ClientId: string;
|
|
@@ -53508,6 +53573,31 @@ export declare class Config_UplinkSpectrumConfig {
|
|
|
53508
53573
|
});
|
|
53509
53574
|
}
|
|
53510
53575
|
|
|
53576
|
+
export declare class ConfigConnector_AzureConnectorConfiguration {
|
|
53577
|
+
constructor(props: {
|
|
53578
|
+
/** The Azure client (application) identifier. */
|
|
53579
|
+
ClientIdentifier: string;
|
|
53580
|
+
/** The Azure tenant identifier. */
|
|
53581
|
+
TenantIdentifier: string;
|
|
53582
|
+
});
|
|
53583
|
+
}
|
|
53584
|
+
|
|
53585
|
+
export declare class ConfigConnector_ConnectorConfiguration {
|
|
53586
|
+
constructor(props: {
|
|
53587
|
+
/** The configuration for connecting to Microsoft Azure. */
|
|
53588
|
+
Azure?: ConfigConnector_AzureConnectorConfiguration;
|
|
53589
|
+
});
|
|
53590
|
+
}
|
|
53591
|
+
|
|
53592
|
+
export declare class ConfigConnector_Tag {
|
|
53593
|
+
constructor(props: {
|
|
53594
|
+
/** 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:. */
|
|
53595
|
+
Key: string;
|
|
53596
|
+
/** 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:. */
|
|
53597
|
+
Value: string;
|
|
53598
|
+
});
|
|
53599
|
+
}
|
|
53600
|
+
|
|
53511
53601
|
export declare class ConfigData {
|
|
53512
53602
|
constructor(props: {
|
|
53513
53603
|
AntennaDownlinkConfig?: Config_AntennaDownlinkConfig;
|
|
@@ -54567,12 +54657,6 @@ export declare class ConnectionLogOptions {
|
|
|
54567
54657
|
});
|
|
54568
54658
|
}
|
|
54569
54659
|
|
|
54570
|
-
export declare class ConnectionParameters {
|
|
54571
|
-
constructor(props: {
|
|
54572
|
-
CodeStar?: CloudFormationProduct_CodeStarParameters;
|
|
54573
|
-
});
|
|
54574
|
-
}
|
|
54575
|
-
|
|
54576
54660
|
export declare class ConnectionPasswordEncryption {
|
|
54577
54661
|
constructor(props: {
|
|
54578
54662
|
/** An AWS KMS key that is used to encrypt the connection password. */
|
|
@@ -54634,6 +54718,13 @@ export declare class ConnectivityParameters {
|
|
|
54634
54718
|
});
|
|
54635
54719
|
}
|
|
54636
54720
|
|
|
54721
|
+
export declare class ConnectorConfiguration {
|
|
54722
|
+
constructor(props: {
|
|
54723
|
+
/** The configuration for connecting to Microsoft Azure. */
|
|
54724
|
+
Azure?: ConfigConnector_AzureConnectorConfiguration;
|
|
54725
|
+
});
|
|
54726
|
+
}
|
|
54727
|
+
|
|
54637
54728
|
export declare class ConnectorDefinition_Connector {
|
|
54638
54729
|
constructor(props: {
|
|
54639
54730
|
ConnectorArn: string;
|
|
@@ -55225,6 +55316,7 @@ export declare class ConnectRule_Actions {
|
|
|
55225
55316
|
constructor(props: {
|
|
55226
55317
|
/** Information about the contact category action. The syntax can be empty, for example, ``{}``. */
|
|
55227
55318
|
AssignContactCategoryActions?: any;
|
|
55319
|
+
AssignSlaActions?: any;
|
|
55228
55320
|
CreateCaseActions?: any;
|
|
55229
55321
|
EndAssociatedTasksActions?: any;
|
|
55230
55322
|
/** Information about the EV action. */
|
|
@@ -55241,7 +55333,7 @@ export declare class ConnectRule_Actions {
|
|
|
55241
55333
|
export declare class ConnectRule_RuleTriggerEventSource {
|
|
55242
55334
|
constructor(props: {
|
|
55243
55335
|
/** The name of the event source. */
|
|
55244
|
-
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
55336
|
+
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnEmailAnalysisAvailable" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnSchedulePublish" | "OnScheduleTimeOffRequestActivity" | "OnScheduleUpdate" | "OnSlaBreach" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
55245
55337
|
/** The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate`` */
|
|
55246
55338
|
IntegrationAssociationArn?: string;
|
|
55247
55339
|
});
|
|
@@ -100233,11 +100325,20 @@ export declare class ProvisionedPollerConfig {
|
|
|
100233
100325
|
|
|
100234
100326
|
export declare class ProvisioningArtifactProperties {
|
|
100235
100327
|
constructor(props: {
|
|
100328
|
+
/** Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
100329
|
+
|
|
100330
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
100331
|
+
|
|
100332
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId] */
|
|
100236
100333
|
Info: Record<string, unknown>;
|
|
100334
|
+
/** The description of the provisioning artifact, including how it differs from the previous provisioning artifact. */
|
|
100237
100335
|
Description?: string;
|
|
100336
|
+
/** If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid. */
|
|
100238
100337
|
DisableTemplateValidation?: boolean;
|
|
100338
|
+
/** The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed. */
|
|
100239
100339
|
Name?: string;
|
|
100240
|
-
|
|
100340
|
+
/** The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL */
|
|
100341
|
+
Type?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
100241
100342
|
});
|
|
100242
100343
|
}
|
|
100243
100344
|
|
|
@@ -106905,7 +107006,7 @@ export declare class RulesSourceList {
|
|
|
106905
107006
|
export declare class RuleTriggerEventSource {
|
|
106906
107007
|
constructor(props: {
|
|
106907
107008
|
/** The name of the event source. */
|
|
106908
|
-
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
107009
|
+
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnEmailAnalysisAvailable" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnSchedulePublish" | "OnScheduleTimeOffRequestActivity" | "OnScheduleUpdate" | "OnSlaBreach" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
106909
107010
|
/** The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate`` */
|
|
106910
107011
|
IntegrationAssociationArn?: string;
|
|
106911
107012
|
});
|
|
@@ -113124,7 +113225,9 @@ export declare class SourceCodeVersion {
|
|
|
113124
113225
|
|
|
113125
113226
|
export declare class SourceConnection {
|
|
113126
113227
|
constructor(props: {
|
|
113127
|
-
|
|
113228
|
+
/** The connection details based on the connection Type. */
|
|
113229
|
+
ConnectionParameters: Record<string, unknown>;
|
|
113230
|
+
/** The only supported SourceConnection type is Codestar. */
|
|
113128
113231
|
Type: string;
|
|
113129
113232
|
});
|
|
113130
113233
|
}
|
|
@@ -130650,6 +130753,8 @@ export type Route53GlobalResolverFirewallDomainList_CRResourceStatus =
|
|
|
130650
130753
|
|
|
130651
130754
|
export type RouteCalculator_PricingPlan = "RequestBasedUsage";
|
|
130652
130755
|
|
|
130756
|
+
export type RouterInput_ContentQualityAnalysisState = "DISABLED" | "ENABLED";
|
|
130757
|
+
|
|
130653
130758
|
export type RouterInput_Day =
|
|
130654
130759
|
| "FRIDAY"
|
|
130655
130760
|
| "MONDAY"
|
|
@@ -130671,6 +130776,8 @@ export type RouterInput_MediaLiveChannelPipelineId = "PIPELINE_0" | "PIPELINE_1"
|
|
|
130671
130776
|
|
|
130672
130777
|
export type RouterInput_MediaLiveTransitEncryptionKeyType = "AUTOMATIC" | "SECRETS_MANAGER";
|
|
130673
130778
|
|
|
130779
|
+
export type RouterInput_RouterContentQualityAnalysisType = "CONTENT_LEVEL";
|
|
130780
|
+
|
|
130674
130781
|
export type RouterInput_RouterInputProtocol = "RIST" | "RTP" | "SRT_CALLER" | "SRT_LISTENER";
|
|
130675
130782
|
|
|
130676
130783
|
export type RouterInput_RouterInputState =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.1",
|
|
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",
|
|
@@ -39,6 +39,16 @@
|
|
|
39
39
|
"types": "./dist/*.d.ts",
|
|
40
40
|
"default": "./src/*.ts"
|
|
41
41
|
},
|
|
42
|
+
"./components": {
|
|
43
|
+
"development": "./src/components/index.ts",
|
|
44
|
+
"types": "./dist/components/index.d.ts",
|
|
45
|
+
"default": "./src/components/index.ts"
|
|
46
|
+
},
|
|
47
|
+
"./op/activities": {
|
|
48
|
+
"development": "./src/op/activities/index.ts",
|
|
49
|
+
"types": "./dist/op/activities/index.d.ts",
|
|
50
|
+
"default": "./src/op/activities/index.ts"
|
|
51
|
+
},
|
|
42
52
|
"./detect": {
|
|
43
53
|
"development": "./src/detect.ts",
|
|
44
54
|
"types": "./dist/detect.d.ts",
|
|
@@ -70,6 +80,6 @@
|
|
|
70
80
|
"typescript": "^5.9.3"
|
|
71
81
|
},
|
|
72
82
|
"peerDependencies": {
|
|
73
|
-
"@intentius/chant": "^0.
|
|
83
|
+
"@intentius/chant": "^0.15.1"
|
|
74
84
|
}
|
|
75
85
|
}
|