@intentius/chant-lexicon-aws 0.18.36 → 0.18.37
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 +16 -2
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +220 -16
- package/dist/types/index.d.ts +190 -13
- package/package.json +2 -2
- package/src/generated/index.d.ts +190 -13
- package/src/generated/index.ts +17 -3
- package/src/generated/lexicon-aws.json +220 -16
package/dist/types/index.d.ts
CHANGED
|
@@ -8777,6 +8777,31 @@ export declare class DataTableRecord {
|
|
|
8777
8777
|
readonly RecordId: string;
|
|
8778
8778
|
}
|
|
8779
8779
|
|
|
8780
|
+
export declare class DataTransformationProfile {
|
|
8781
|
+
constructor(props: {
|
|
8782
|
+
/** The human-readable name of the profile. */
|
|
8783
|
+
ProfileName: string;
|
|
8784
|
+
/** The source format that this profile converts from. */
|
|
8785
|
+
SourceFormat: "CCDA" | "CSV";
|
|
8786
|
+
/** The Amazon Resource Name (ARN) of the data transformation profile. */
|
|
8787
|
+
Arn?: string;
|
|
8788
|
+
/** The identifier (key ID or ARN) of a customer-managed KMS key used to encrypt the profile's template content at rest. If omitted, an AWS owned key is used. */
|
|
8789
|
+
KmsKeyId?: string;
|
|
8790
|
+
/** A human-readable description of the profile's purpose. */
|
|
8791
|
+
ProfileDescription?: string;
|
|
8792
|
+
/** The unique, server-generated identifier of the profile (32-character lowercase hexadecimal). */
|
|
8793
|
+
ProfileId?: string;
|
|
8794
|
+
Source?: DataTransformationProfile_Source;
|
|
8795
|
+
/** An array of key-value pairs to apply to this profile. */
|
|
8796
|
+
Tags?: DataTransformationProfile_Tag[];
|
|
8797
|
+
/** The target format that this profile converts to. Always FHIR_R4. */
|
|
8798
|
+
TargetFormat?: "FHIR_R4";
|
|
8799
|
+
}, attributes?: CFResourceAttributes);
|
|
8800
|
+
readonly Arn: string;
|
|
8801
|
+
readonly ProfileId: string;
|
|
8802
|
+
readonly TargetFormat: "FHIR_R4";
|
|
8803
|
+
}
|
|
8804
|
+
|
|
8780
8805
|
export declare class DataZoneConnection {
|
|
8781
8806
|
constructor(props: {
|
|
8782
8807
|
/** The identifier of the domain in which the connection is created. */
|
|
@@ -10413,6 +10438,42 @@ export declare class DecoderManifest {
|
|
|
10413
10438
|
readonly LastModificationTime: string;
|
|
10414
10439
|
}
|
|
10415
10440
|
|
|
10441
|
+
export declare class DefaultPromptRouter {
|
|
10442
|
+
constructor(props: {
|
|
10443
|
+
/** The timestamp when the default prompt router was created. */
|
|
10444
|
+
CreatedAt?: string;
|
|
10445
|
+
/** The description of the default prompt router. */
|
|
10446
|
+
Description?: string;
|
|
10447
|
+
FallbackModel?: DefaultPromptRouter_PromptRouterTargetModel;
|
|
10448
|
+
/** A list of foundation models that the default prompt router can route requests to. */
|
|
10449
|
+
Models?: DefaultPromptRouter_PromptRouterTargetModel[];
|
|
10450
|
+
/** The Amazon Resource Name (ARN) of the default prompt router. */
|
|
10451
|
+
PromptRouterArn?: string;
|
|
10452
|
+
/** The unique identifier of the default prompt router, extracted from the ARN. */
|
|
10453
|
+
PromptRouterId?: string;
|
|
10454
|
+
/** The name of the default prompt router. */
|
|
10455
|
+
PromptRouterName?: string;
|
|
10456
|
+
RoutingCriteria?: DefaultPromptRouter_RoutingCriteria;
|
|
10457
|
+
/** The status of the default prompt router. */
|
|
10458
|
+
Status?: "AVAILABLE";
|
|
10459
|
+
/** The type of the prompt router. */
|
|
10460
|
+
Type?: "custom" | "default";
|
|
10461
|
+
/** The timestamp when the default prompt router was last updated. */
|
|
10462
|
+
UpdatedAt?: string;
|
|
10463
|
+
}, attributes?: CFResourceAttributes);
|
|
10464
|
+
readonly CreatedAt: string;
|
|
10465
|
+
readonly Description: string;
|
|
10466
|
+
readonly FallbackModel: DefaultPromptRouter_PromptRouterTargetModel;
|
|
10467
|
+
readonly Models: DefaultPromptRouter_PromptRouterTargetModel[];
|
|
10468
|
+
readonly PromptRouterArn: string;
|
|
10469
|
+
readonly PromptRouterId: string;
|
|
10470
|
+
readonly PromptRouterName: string;
|
|
10471
|
+
readonly RoutingCriteria: DefaultPromptRouter_RoutingCriteria;
|
|
10472
|
+
readonly Status: "AVAILABLE";
|
|
10473
|
+
readonly Type: "custom" | "default";
|
|
10474
|
+
readonly UpdatedAt: string;
|
|
10475
|
+
}
|
|
10476
|
+
|
|
10416
10477
|
export declare class DefaultViewAssociation {
|
|
10417
10478
|
constructor(props: {
|
|
10418
10479
|
ViewArn: string;
|
|
@@ -12369,6 +12430,7 @@ export declare class EgressOnlyInternetGateway {
|
|
|
12369
12430
|
|
|
12370
12431
|
export declare class EIP {
|
|
12371
12432
|
constructor(props: {
|
|
12433
|
+
/** An Elastic IP address or a carrier IP address in a Wavelength Zone. */
|
|
12372
12434
|
Address?: string;
|
|
12373
12435
|
AllocationId?: string;
|
|
12374
12436
|
/** The network (``vpc``).
|
|
@@ -12377,6 +12439,7 @@ export declare class EIP {
|
|
|
12377
12439
|
/** The ID of the instance.
|
|
12378
12440
|
Updates to the ``InstanceId`` property may require *some interruptions*. Updates on an EIP reassociates the address on its associated resource. */
|
|
12379
12441
|
InstanceId?: string;
|
|
12442
|
+
/** The ID of an IPAM pool which has an Amazon-provided or BYOIP public IPv4 CIDR provisioned to it. For more information, see [Allocate sequential Elastic IP addresses from an IPAM pool](https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-eip-pool.html) in the *Amazon VPC IPAM User Guide*. */
|
|
12380
12443
|
IpamPoolId?: string;
|
|
12381
12444
|
/** A unique set of Availability Zones, Local Zones, or Wavelength Zones from which AWS advertises IP addresses. Use this parameter to limit the IP address to this location. IP addresses cannot move between network border groups.
|
|
12382
12445
|
Use [DescribeAvailabilityZones](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html) to view the network border groups. */
|
|
@@ -19497,8 +19560,12 @@ export declare class LambdaHook {
|
|
|
19497
19560
|
LambdaFunction: string;
|
|
19498
19561
|
/** Which operations should this Hook run against? Resource changes, stacks or change sets. */
|
|
19499
19562
|
TargetOperations: LambdaHook_TargetOperation[];
|
|
19563
|
+
/** Whether to automatically update the extension in this account and Region when a new minor version is published by the extension publisher. */
|
|
19564
|
+
AutoUpdate?: boolean;
|
|
19500
19565
|
/** The Amazon Resource Name (ARN) of the activated hook */
|
|
19501
19566
|
HookArn?: string;
|
|
19567
|
+
/** Contains logging configuration information for the hook. */
|
|
19568
|
+
LoggingConfig?: LambdaHook_LoggingConfig;
|
|
19502
19569
|
/** Filters to allow hooks to target specific stack attributes */
|
|
19503
19570
|
StackFilters?: Record<string, unknown>;
|
|
19504
19571
|
/** Attribute to specify which targets should invoke the hook */
|
|
@@ -24962,11 +25029,16 @@ export declare class OrganizationConformancePack {
|
|
|
24962
25029
|
DeliveryS3KeyPrefix?: string;
|
|
24963
25030
|
/** A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack. */
|
|
24964
25031
|
ExcludedAccounts?: string[];
|
|
25032
|
+
/** Amazon Resource Name (ARN) of the organization conformance pack. */
|
|
25033
|
+
OrganizationConformancePackArn?: string;
|
|
25034
|
+
/** The tags for the organization conformance pack. */
|
|
25035
|
+
Tags?: OrganizationConformancePack_Tag[];
|
|
24965
25036
|
/** A string containing full conformance pack template body. */
|
|
24966
25037
|
TemplateBody?: string;
|
|
24967
25038
|
/** Location of file containing the template body. */
|
|
24968
25039
|
TemplateS3Uri?: string;
|
|
24969
25040
|
}, attributes?: CFResourceAttributes);
|
|
25041
|
+
readonly OrganizationConformancePackArn: string;
|
|
24970
25042
|
}
|
|
24971
25043
|
|
|
24972
25044
|
export declare class OrganizationsAccount {
|
|
@@ -40311,6 +40383,13 @@ export declare class AllowedStatistics {
|
|
|
40311
40383
|
});
|
|
40312
40384
|
}
|
|
40313
40385
|
|
|
40386
|
+
export declare class AllowedWorkloadConfiguration {
|
|
40387
|
+
constructor(props: {
|
|
40388
|
+
HostingEnvironments?: any;
|
|
40389
|
+
WorkloadIdentities?: any;
|
|
40390
|
+
});
|
|
40391
|
+
}
|
|
40392
|
+
|
|
40314
40393
|
export declare class AllowList_Tag {
|
|
40315
40394
|
constructor(props: {
|
|
40316
40395
|
/** The tag's key. */
|
|
@@ -57671,6 +57750,7 @@ export declare class CustomDocumentEnrichmentConfiguration {
|
|
|
57671
57750
|
export declare class CustomDomainConfigType {
|
|
57672
57751
|
constructor(props: {
|
|
57673
57752
|
CertificateArn?: string;
|
|
57753
|
+
SecurityPolicy?: string;
|
|
57674
57754
|
});
|
|
57675
57755
|
}
|
|
57676
57756
|
|
|
@@ -61635,6 +61715,46 @@ export declare class DataTable_Tag {
|
|
|
61635
61715
|
});
|
|
61636
61716
|
}
|
|
61637
61717
|
|
|
61718
|
+
export declare class DataTransformationProfile_ExistingVersionedProfileSource {
|
|
61719
|
+
constructor(props: {
|
|
61720
|
+
/** The unique identifier of the source profile to clone. */
|
|
61721
|
+
ProfileId: string;
|
|
61722
|
+
/** The version number of the source profile to clone. */
|
|
61723
|
+
Version: number;
|
|
61724
|
+
});
|
|
61725
|
+
}
|
|
61726
|
+
|
|
61727
|
+
export declare class DataTransformationProfile_ProfileMappingSource {
|
|
61728
|
+
constructor(props: {
|
|
61729
|
+
/** Map of template file paths to their Velocity template content. */
|
|
61730
|
+
ProfileMapping: Record<string, unknown>;
|
|
61731
|
+
});
|
|
61732
|
+
}
|
|
61733
|
+
|
|
61734
|
+
export declare class DataTransformationProfile_Source {
|
|
61735
|
+
constructor(props: {
|
|
61736
|
+
ExistingVersionedProfileId?: DataTransformationProfile_ExistingVersionedProfileSource;
|
|
61737
|
+
ProfileMapping?: DataTransformationProfile_ProfileMappingSource;
|
|
61738
|
+
StarterProfile?: DataTransformationProfile_StarterProfileSource;
|
|
61739
|
+
});
|
|
61740
|
+
}
|
|
61741
|
+
|
|
61742
|
+
export declare class DataTransformationProfile_StarterProfileSource {
|
|
61743
|
+
constructor(props: {
|
|
61744
|
+
/** The name of the starter profile to seed the profile from. */
|
|
61745
|
+
StarterProfileName: string;
|
|
61746
|
+
});
|
|
61747
|
+
}
|
|
61748
|
+
|
|
61749
|
+
export declare class DataTransformationProfile_Tag {
|
|
61750
|
+
constructor(props: {
|
|
61751
|
+
/** The key of the tag. */
|
|
61752
|
+
Key: string;
|
|
61753
|
+
/** The value of the tag. */
|
|
61754
|
+
Value: string;
|
|
61755
|
+
});
|
|
61756
|
+
}
|
|
61757
|
+
|
|
61638
61758
|
export declare class DataZoneConnection_AwsLocation {
|
|
61639
61759
|
constructor(props: {
|
|
61640
61760
|
AccessRole?: string;
|
|
@@ -62295,6 +62415,20 @@ export declare class DefaultFormatting {
|
|
|
62295
62415
|
});
|
|
62296
62416
|
}
|
|
62297
62417
|
|
|
62418
|
+
export declare class DefaultPromptRouter_PromptRouterTargetModel {
|
|
62419
|
+
constructor(props: {
|
|
62420
|
+
/** The target model's ARN. */
|
|
62421
|
+
ModelArn: string;
|
|
62422
|
+
});
|
|
62423
|
+
}
|
|
62424
|
+
|
|
62425
|
+
export declare class DefaultPromptRouter_RoutingCriteria {
|
|
62426
|
+
constructor(props: {
|
|
62427
|
+
/** The response quality difference threshold for routing. */
|
|
62428
|
+
ResponseQualityDifference: number;
|
|
62429
|
+
});
|
|
62430
|
+
}
|
|
62431
|
+
|
|
62298
62432
|
export declare class DefaultPushNotificationTemplate {
|
|
62299
62433
|
constructor(props: {
|
|
62300
62434
|
Action?: string;
|
|
@@ -70554,6 +70688,15 @@ export declare class ExecutiveSummaryOption {
|
|
|
70554
70688
|
});
|
|
70555
70689
|
}
|
|
70556
70690
|
|
|
70691
|
+
export declare class ExistingVersionedProfileSource {
|
|
70692
|
+
constructor(props: {
|
|
70693
|
+
/** The unique identifier of the source profile to clone. */
|
|
70694
|
+
ProfileId: string;
|
|
70695
|
+
/** The version number of the source profile to clone. */
|
|
70696
|
+
Version: number;
|
|
70697
|
+
});
|
|
70698
|
+
}
|
|
70699
|
+
|
|
70557
70700
|
export declare class ExperimentConfig {
|
|
70558
70701
|
constructor(props: {
|
|
70559
70702
|
/** The name of an existing experiment to associate with the trial component. */
|
|
@@ -83546,6 +83689,15 @@ export declare class LambdaFunctionRecipeSource {
|
|
|
83546
83689
|
});
|
|
83547
83690
|
}
|
|
83548
83691
|
|
|
83692
|
+
export declare class LambdaHook_LoggingConfig {
|
|
83693
|
+
constructor(props: {
|
|
83694
|
+
/** The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers. */
|
|
83695
|
+
LogGroupName: string;
|
|
83696
|
+
/** The ARN of the role that CloudFormation should assume when sending log entries to CloudWatch Logs. */
|
|
83697
|
+
LogRoleArn: string;
|
|
83698
|
+
});
|
|
83699
|
+
}
|
|
83700
|
+
|
|
83549
83701
|
export declare class LambdaLinuxProcessParams {
|
|
83550
83702
|
constructor(props: {
|
|
83551
83703
|
ContainerParams?: Record<string, unknown>;
|
|
@@ -87738,6 +87890,8 @@ export declare class MatchingWorkflow_ProviderProperties {
|
|
|
87738
87890
|
|
|
87739
87891
|
export declare class MatchingWorkflow_ResolutionTechniques {
|
|
87740
87892
|
constructor(props: {
|
|
87893
|
+
/** Enables the workflow to use real-time matching. Can only be set on creation for RULE_MATCHING workflows that define RuleConditionProperties. */
|
|
87894
|
+
EnableRealTimeMatching?: boolean;
|
|
87741
87895
|
ProviderProperties?: MatchingWorkflow_ProviderProperties;
|
|
87742
87896
|
ResolutionType?: MatchingWorkflow_ResolutionType;
|
|
87743
87897
|
RuleBasedProperties?: MatchingWorkflow_RuleBasedProperties;
|
|
@@ -96216,6 +96370,15 @@ export declare class OrganizationConformancePack_ConformancePackInputParameter {
|
|
|
96216
96370
|
});
|
|
96217
96371
|
}
|
|
96218
96372
|
|
|
96373
|
+
export declare class OrganizationConformancePack_Tag {
|
|
96374
|
+
constructor(props: {
|
|
96375
|
+
/** 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 -. */
|
|
96376
|
+
Key: string;
|
|
96377
|
+
/** 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 -. */
|
|
96378
|
+
Value: string;
|
|
96379
|
+
});
|
|
96380
|
+
}
|
|
96381
|
+
|
|
96219
96382
|
export declare class OrganizationCustomPolicyRuleMetadata {
|
|
96220
96383
|
constructor(props: {
|
|
96221
96384
|
PolicyText: string;
|
|
@@ -100476,6 +100639,13 @@ export declare class ProfileAssociation_Tag {
|
|
|
100476
100639
|
});
|
|
100477
100640
|
}
|
|
100478
100641
|
|
|
100642
|
+
export declare class ProfileMappingSource {
|
|
100643
|
+
constructor(props: {
|
|
100644
|
+
/** Map of template file paths to their Velocity template content. */
|
|
100645
|
+
ProfileMapping: Record<string, unknown>;
|
|
100646
|
+
});
|
|
100647
|
+
}
|
|
100648
|
+
|
|
100479
100649
|
export declare class ProfilingGroup_Channel {
|
|
100480
100650
|
constructor(props: {
|
|
100481
100651
|
channelUri: string;
|
|
@@ -100654,13 +100824,6 @@ export declare class PromptOverrideConfiguration {
|
|
|
100654
100824
|
});
|
|
100655
100825
|
}
|
|
100656
100826
|
|
|
100657
|
-
export declare class PromptRouterTargetModel {
|
|
100658
|
-
constructor(props: {
|
|
100659
|
-
/** Arn of underlying model which are added in the Prompt Router. */
|
|
100660
|
-
ModelArn: string;
|
|
100661
|
-
});
|
|
100662
|
-
}
|
|
100663
|
-
|
|
100664
100827
|
export declare class PromptVersion_PromptVariant {
|
|
100665
100828
|
constructor(props: {
|
|
100666
100829
|
/** Name for a variant. */
|
|
@@ -105764,6 +105927,8 @@ export declare class ResiliencyPolicy_PolicyMap {
|
|
|
105764
105927
|
|
|
105765
105928
|
export declare class ResolutionTechniques {
|
|
105766
105929
|
constructor(props: {
|
|
105930
|
+
/** Enables the workflow to use real-time matching. Can only be set on creation for RULE_MATCHING workflows that define RuleConditionProperties. */
|
|
105931
|
+
EnableRealTimeMatching?: boolean;
|
|
105767
105932
|
ProviderProperties?: MatchingWorkflow_ProviderProperties;
|
|
105768
105933
|
ResolutionType?: MatchingWorkflow_ResolutionType;
|
|
105769
105934
|
RuleBasedProperties?: MatchingWorkflow_RuleBasedProperties;
|
|
@@ -107209,12 +107374,6 @@ export declare class RouteTable_Tag {
|
|
|
107209
107374
|
});
|
|
107210
107375
|
}
|
|
107211
107376
|
|
|
107212
|
-
export declare class RoutingCriteria {
|
|
107213
|
-
constructor(props: {
|
|
107214
|
-
ResponseQualityDifference: number;
|
|
107215
|
-
});
|
|
107216
|
-
}
|
|
107217
|
-
|
|
107218
107377
|
export declare class RoutingProfile_CrossChannelBehavior {
|
|
107219
107378
|
constructor(props: {
|
|
107220
107379
|
BehaviorType: RoutingProfile_BehaviorType;
|
|
@@ -107643,6 +107802,13 @@ export declare class Runtime_AgentRuntimeArtifact {
|
|
|
107643
107802
|
});
|
|
107644
107803
|
}
|
|
107645
107804
|
|
|
107805
|
+
export declare class Runtime_AllowedWorkloadConfiguration {
|
|
107806
|
+
constructor(props: {
|
|
107807
|
+
HostingEnvironments?: any;
|
|
107808
|
+
WorkloadIdentities?: any;
|
|
107809
|
+
});
|
|
107810
|
+
}
|
|
107811
|
+
|
|
107646
107812
|
export declare class Runtime_AuthorizerConfiguration {
|
|
107647
107813
|
constructor(props: {
|
|
107648
107814
|
CustomJWTAuthorizer?: Runtime_CustomJWTAuthorizerConfiguration;
|
|
@@ -107675,7 +107841,10 @@ export declare class Runtime_CustomJWTAuthorizerConfiguration {
|
|
|
107675
107841
|
AllowedAudience?: any;
|
|
107676
107842
|
AllowedClients?: any;
|
|
107677
107843
|
AllowedScopes?: any;
|
|
107844
|
+
AllowedWorkloadConfiguration?: Runtime_AllowedWorkloadConfiguration;
|
|
107678
107845
|
CustomClaims?: any;
|
|
107846
|
+
PrivateEndpoint?: Record<string, unknown>;
|
|
107847
|
+
PrivateEndpointOverrides?: any;
|
|
107679
107848
|
});
|
|
107680
107849
|
}
|
|
107681
107850
|
|
|
@@ -115039,6 +115208,13 @@ export declare class StarburstParameters {
|
|
|
115039
115208
|
});
|
|
115040
115209
|
}
|
|
115041
115210
|
|
|
115211
|
+
export declare class StarterProfileSource {
|
|
115212
|
+
constructor(props: {
|
|
115213
|
+
/** The name of the starter profile to seed the profile from. */
|
|
115214
|
+
StarterProfileName: string;
|
|
115215
|
+
});
|
|
115216
|
+
}
|
|
115217
|
+
|
|
115042
115218
|
export declare class StartTag {
|
|
115043
115219
|
constructor(props: {
|
|
115044
115220
|
/** <p>Specify the value for TIME-OFFSET within your EXT-X-START tag. Enter a signed floating point value which, if positive, must be less than the configured manifest duration minus three times the configured segment target duration. If negative, the absolute value must be larger than three times the configured segment target duration, and the absolute value must be smaller than the configured manifest duration.</p> */
|
|
@@ -120627,6 +120803,7 @@ export declare class UserPoolConfig {
|
|
|
120627
120803
|
export declare class UserPoolDomain_CustomDomainConfigType {
|
|
120628
120804
|
constructor(props: {
|
|
120629
120805
|
CertificateArn?: string;
|
|
120806
|
+
SecurityPolicy?: string;
|
|
120630
120807
|
});
|
|
120631
120808
|
}
|
|
120632
120809
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.37",
|
|
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,7 +80,7 @@
|
|
|
80
80
|
"typescript": "^5.9.3"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@intentius/chant": "^0.18.
|
|
83
|
+
"@intentius/chant": "^0.18.37",
|
|
84
84
|
"typescript": "^5.9.3"
|
|
85
85
|
}
|
|
86
86
|
}
|