@intentius/chant-lexicon-aws 0.18.36 → 0.19.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 +22 -2
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +6 -5
- package/dist/manifest.json +1 -1
- package/dist/meta.json +255 -20
- package/dist/plugin.d.ts.map +1 -1
- package/dist/skills/chant-aws-carve-terraform.md +102 -0
- package/dist/types/index.d.ts +269 -22
- package/package.json +2 -2
- package/src/generated/index.d.ts +269 -22
- package/src/generated/index.ts +25 -5
- package/src/generated/lexicon-aws.json +255 -20
- package/src/plugin.ts +38 -0
- package/src/skills/chant-aws-carve-terraform.md +102 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -6187,6 +6187,7 @@ export declare class ComputeNodeGroup {
|
|
|
6187
6187
|
Id?: string;
|
|
6188
6188
|
/** The name that identifies the compute node group. */
|
|
6189
6189
|
Name?: string;
|
|
6190
|
+
NodeLifecycleActions?: ComputeNodeGroup_NodeLifecycleActions;
|
|
6190
6191
|
/** Specifies how EC2 instances are purchased on your behalf. AWS PCS supports On-Demand, Spot, Capacity Block, and Interruptible Capacity Reservation instances. For more information, see Instance purchasing options in the Amazon Elastic Compute Cloud User Guide. If you don't provide this option, it defaults to On-Demand. */
|
|
6191
6192
|
PurchaseOption?: "CAPACITY_BLOCK" | "INTERRUPTIBLE_CAPACITY_RESERVATION" | "ONDEMAND" | "SPOT";
|
|
6192
6193
|
/** Additional options related to the Slurm scheduler. */
|
|
@@ -7753,7 +7754,10 @@ export declare class CustomDBEngineVersion {
|
|
|
7753
7754
|
/** The database engine to use for your custom engine version (CEV).
|
|
7754
7755
|
Valid values:
|
|
7755
7756
|
+ ``custom-oracle-ee``
|
|
7756
|
-
+ ``custom-oracle-ee-cdb``
|
|
7757
|
+
+ ``custom-oracle-ee-cdb``
|
|
7758
|
+
+ ``sqlserver-dev-ee``
|
|
7759
|
+
+ ``sqlserver-ee``
|
|
7760
|
+
+ ``sqlserver-se`` */
|
|
7757
7761
|
Engine: string;
|
|
7758
7762
|
/** The name of your CEV. The name format is ``major version.customized_string``. For example, a valid CEV name is ``19.my_cev1``. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of ``Engine`` and ``EngineVersion`` is unique per customer per Region.
|
|
7759
7763
|
*Constraints:* Minimum length is 1. Maximum length is 60.
|
|
@@ -8777,6 +8781,31 @@ export declare class DataTableRecord {
|
|
|
8777
8781
|
readonly RecordId: string;
|
|
8778
8782
|
}
|
|
8779
8783
|
|
|
8784
|
+
export declare class DataTransformationProfile {
|
|
8785
|
+
constructor(props: {
|
|
8786
|
+
/** The human-readable name of the profile. */
|
|
8787
|
+
ProfileName: string;
|
|
8788
|
+
/** The source format that this profile converts from. */
|
|
8789
|
+
SourceFormat: "CCDA" | "CSV";
|
|
8790
|
+
/** The Amazon Resource Name (ARN) of the data transformation profile. */
|
|
8791
|
+
Arn?: string;
|
|
8792
|
+
/** 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. */
|
|
8793
|
+
KmsKeyId?: string;
|
|
8794
|
+
/** A human-readable description of the profile's purpose. */
|
|
8795
|
+
ProfileDescription?: string;
|
|
8796
|
+
/** The unique, server-generated identifier of the profile (32-character lowercase hexadecimal). */
|
|
8797
|
+
ProfileId?: string;
|
|
8798
|
+
Source?: DataTransformationProfile_Source;
|
|
8799
|
+
/** An array of key-value pairs to apply to this profile. */
|
|
8800
|
+
Tags?: DataTransformationProfile_Tag[];
|
|
8801
|
+
/** The target format that this profile converts to. Always FHIR_R4. */
|
|
8802
|
+
TargetFormat?: "FHIR_R4";
|
|
8803
|
+
}, attributes?: CFResourceAttributes);
|
|
8804
|
+
readonly Arn: string;
|
|
8805
|
+
readonly ProfileId: string;
|
|
8806
|
+
readonly TargetFormat: "FHIR_R4";
|
|
8807
|
+
}
|
|
8808
|
+
|
|
8780
8809
|
export declare class DataZoneConnection {
|
|
8781
8810
|
constructor(props: {
|
|
8782
8811
|
/** The identifier of the domain in which the connection is created. */
|
|
@@ -9728,7 +9757,7 @@ export declare class DbInstance {
|
|
|
9728
9757
|
/** The name or Amazon Resource Name (ARN) of the DB snapshot that's used to restore the DB instance. If you're restoring from a shared manual DB snapshot, you must specify the ARN of the snapshot.
|
|
9729
9758
|
By specifying this property, you can create a DB instance from the specified DB snapshot. If the ``DBSnapshotIdentifier`` property is an empty string or the ``AWS::RDS::DBInstance`` declaration has no ``DBSnapshotIdentifier`` property, AWS CloudFormation creates a new database. If the property contains a value (other than an empty string), AWS CloudFormation creates a database from the specified snapshot. If a snapshot with the specified name doesn't exist, AWS CloudFormation can't create the database and it rolls back the stack.
|
|
9730
9759
|
Some DB instance properties aren't valid when you restore from a snapshot, such as the ``MasterUsername`` and ``MasterUserPassword`` properties, and the point-in-time recovery properties ``RestoreTime`` and ``UseLatestRestorableTime``. For information about the properties that you can specify, see the [RestoreDBInstanceFromDBSnapshot](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_RestoreDBInstanceFromDBSnapshot.html) action in the *Amazon RDS API Reference*.
|
|
9731
|
-
|
|
9760
|
+
When you specify the same ``DBSnapshotIdentifier`` property value for an update, the DB instance is not restored from the DB snapshot again, and the data in the database is not changed. If you specify a different ``DBSnapshotIdentifier`` value, a new DB instance is restored from the specified snapshot, and the original DB instance is deleted.
|
|
9732
9761
|
If you specify the ``DBSnapshotIdentifier`` property to restore a DB instance (as opposed to specifying it for DB instance updates), then don't specify the following properties:
|
|
9733
9762
|
+ ``CharacterSetName``
|
|
9734
9763
|
+ ``DBClusterIdentifier``
|
|
@@ -9891,7 +9920,7 @@ export declare class DbInstance {
|
|
|
9891
9920
|
+ Aurora PostgreSQL - ``postgresql-license``
|
|
9892
9921
|
+ RDS for Db2 - ``bring-your-own-license``. For more information about RDS for Db2 licensing, see [](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html) in the *Amazon RDS User Guide.*
|
|
9893
9922
|
+ RDS for MariaDB - ``general-public-license``
|
|
9894
|
-
+ RDS for Microsoft SQL Server - ``license-included``
|
|
9923
|
+
+ RDS for Microsoft SQL Server - ``license-included`` or ``bring-your-own-media``
|
|
9895
9924
|
+ RDS for MySQL - ``general-public-license``
|
|
9896
9925
|
+ RDS for Oracle - ``bring-your-own-license`` or ``license-included``
|
|
9897
9926
|
+ RDS for PostgreSQL - ``postgresql-license``
|
|
@@ -10413,6 +10442,42 @@ export declare class DecoderManifest {
|
|
|
10413
10442
|
readonly LastModificationTime: string;
|
|
10414
10443
|
}
|
|
10415
10444
|
|
|
10445
|
+
export declare class DefaultPromptRouter {
|
|
10446
|
+
constructor(props: {
|
|
10447
|
+
/** The timestamp when the default prompt router was created. */
|
|
10448
|
+
CreatedAt?: string;
|
|
10449
|
+
/** The description of the default prompt router. */
|
|
10450
|
+
Description?: string;
|
|
10451
|
+
FallbackModel?: DefaultPromptRouter_PromptRouterTargetModel;
|
|
10452
|
+
/** A list of foundation models that the default prompt router can route requests to. */
|
|
10453
|
+
Models?: DefaultPromptRouter_PromptRouterTargetModel[];
|
|
10454
|
+
/** The Amazon Resource Name (ARN) of the default prompt router. */
|
|
10455
|
+
PromptRouterArn?: string;
|
|
10456
|
+
/** The unique identifier of the default prompt router, extracted from the ARN. */
|
|
10457
|
+
PromptRouterId?: string;
|
|
10458
|
+
/** The name of the default prompt router. */
|
|
10459
|
+
PromptRouterName?: string;
|
|
10460
|
+
RoutingCriteria?: DefaultPromptRouter_RoutingCriteria;
|
|
10461
|
+
/** The status of the default prompt router. */
|
|
10462
|
+
Status?: "AVAILABLE";
|
|
10463
|
+
/** The type of the prompt router. */
|
|
10464
|
+
Type?: "custom" | "default";
|
|
10465
|
+
/** The timestamp when the default prompt router was last updated. */
|
|
10466
|
+
UpdatedAt?: string;
|
|
10467
|
+
}, attributes?: CFResourceAttributes);
|
|
10468
|
+
readonly CreatedAt: string;
|
|
10469
|
+
readonly Description: string;
|
|
10470
|
+
readonly FallbackModel: DefaultPromptRouter_PromptRouterTargetModel;
|
|
10471
|
+
readonly Models: DefaultPromptRouter_PromptRouterTargetModel[];
|
|
10472
|
+
readonly PromptRouterArn: string;
|
|
10473
|
+
readonly PromptRouterId: string;
|
|
10474
|
+
readonly PromptRouterName: string;
|
|
10475
|
+
readonly RoutingCriteria: DefaultPromptRouter_RoutingCriteria;
|
|
10476
|
+
readonly Status: "AVAILABLE";
|
|
10477
|
+
readonly Type: "custom" | "default";
|
|
10478
|
+
readonly UpdatedAt: string;
|
|
10479
|
+
}
|
|
10480
|
+
|
|
10416
10481
|
export declare class DefaultViewAssociation {
|
|
10417
10482
|
constructor(props: {
|
|
10418
10483
|
ViewArn: string;
|
|
@@ -19497,8 +19562,12 @@ export declare class LambdaHook {
|
|
|
19497
19562
|
LambdaFunction: string;
|
|
19498
19563
|
/** Which operations should this Hook run against? Resource changes, stacks or change sets. */
|
|
19499
19564
|
TargetOperations: LambdaHook_TargetOperation[];
|
|
19565
|
+
/** Whether to automatically update the extension in this account and Region when a new minor version is published by the extension publisher. */
|
|
19566
|
+
AutoUpdate?: boolean;
|
|
19500
19567
|
/** The Amazon Resource Name (ARN) of the activated hook */
|
|
19501
19568
|
HookArn?: string;
|
|
19569
|
+
/** Contains logging configuration information for the hook. */
|
|
19570
|
+
LoggingConfig?: LambdaHook_LoggingConfig;
|
|
19502
19571
|
/** Filters to allow hooks to target specific stack attributes */
|
|
19503
19572
|
StackFilters?: Record<string, unknown>;
|
|
19504
19573
|
/** Attribute to specify which targets should invoke the hook */
|
|
@@ -24962,11 +25031,16 @@ export declare class OrganizationConformancePack {
|
|
|
24962
25031
|
DeliveryS3KeyPrefix?: string;
|
|
24963
25032
|
/** A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack. */
|
|
24964
25033
|
ExcludedAccounts?: string[];
|
|
25034
|
+
/** Amazon Resource Name (ARN) of the organization conformance pack. */
|
|
25035
|
+
OrganizationConformancePackArn?: string;
|
|
25036
|
+
/** The tags for the organization conformance pack. */
|
|
25037
|
+
Tags?: OrganizationConformancePack_Tag[];
|
|
24965
25038
|
/** A string containing full conformance pack template body. */
|
|
24966
25039
|
TemplateBody?: string;
|
|
24967
25040
|
/** Location of file containing the template body. */
|
|
24968
25041
|
TemplateS3Uri?: string;
|
|
24969
25042
|
}, attributes?: CFResourceAttributes);
|
|
25043
|
+
readonly OrganizationConformancePackArn: string;
|
|
24970
25044
|
}
|
|
24971
25045
|
|
|
24972
25046
|
export declare class OrganizationsAccount {
|
|
@@ -25975,6 +26049,8 @@ export declare class PlaceIndex {
|
|
|
25975
26049
|
|
|
25976
26050
|
export declare class PlacementGroup {
|
|
25977
26051
|
constructor(props: {
|
|
26052
|
+
/** The ID of the placement group. */
|
|
26053
|
+
GroupId?: string;
|
|
25978
26054
|
/** The Group Name of Placement Group. */
|
|
25979
26055
|
GroupName?: string;
|
|
25980
26056
|
/** The number of partitions. Valid only when **Strategy** is set to `partition` */
|
|
@@ -25986,6 +26062,7 @@ export declare class PlacementGroup {
|
|
|
25986
26062
|
/** An array of key-value pairs to apply to this resource. */
|
|
25987
26063
|
Tags?: PlacementGroup_Tag[];
|
|
25988
26064
|
}, attributes?: CFResourceAttributes);
|
|
26065
|
+
readonly GroupId: string;
|
|
25989
26066
|
readonly GroupName: string;
|
|
25990
26067
|
}
|
|
25991
26068
|
|
|
@@ -27755,6 +27832,7 @@ export declare class RDSDBParameterGroup {
|
|
|
27755
27832
|
+ ``aurora-mysql``
|
|
27756
27833
|
+ ``aurora-postgresql``
|
|
27757
27834
|
+ ``db2-ae``
|
|
27835
|
+
+ ``db2-ce``
|
|
27758
27836
|
+ ``db2-se``
|
|
27759
27837
|
+ ``mysql``
|
|
27760
27838
|
+ ``oracle-ee``
|
|
@@ -27791,6 +27869,7 @@ export declare class RDSDBSubnetGroup {
|
|
|
27791
27869
|
DBSubnetGroupDescription: string;
|
|
27792
27870
|
/** The EC2 Subnet IDs for the DB subnet group. */
|
|
27793
27871
|
SubnetIds: string[];
|
|
27872
|
+
DBSubnetGroupArn?: string;
|
|
27794
27873
|
/** The name for the DB subnet group. This value is stored as a lowercase string.
|
|
27795
27874
|
Constraints:
|
|
27796
27875
|
+ Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens.
|
|
@@ -27802,6 +27881,7 @@ export declare class RDSDBSubnetGroup {
|
|
|
27802
27881
|
/** Tags to assign to the DB subnet group. */
|
|
27803
27882
|
Tags?: RDSDBSubnetGroup_Tag[];
|
|
27804
27883
|
}, attributes?: CFResourceAttributes);
|
|
27884
|
+
readonly DBSubnetGroupArn: string;
|
|
27805
27885
|
}
|
|
27806
27886
|
|
|
27807
27887
|
export declare class RDSEventSubscription {
|
|
@@ -40311,6 +40391,13 @@ export declare class AllowedStatistics {
|
|
|
40311
40391
|
});
|
|
40312
40392
|
}
|
|
40313
40393
|
|
|
40394
|
+
export declare class AllowedWorkloadConfiguration {
|
|
40395
|
+
constructor(props: {
|
|
40396
|
+
HostingEnvironments?: any;
|
|
40397
|
+
WorkloadIdentities?: any;
|
|
40398
|
+
});
|
|
40399
|
+
}
|
|
40400
|
+
|
|
40314
40401
|
export declare class AllowList_Tag {
|
|
40315
40402
|
constructor(props: {
|
|
40316
40403
|
/** The tag's key. */
|
|
@@ -53827,6 +53914,37 @@ export declare class ComputeNodeGroup_InstanceConfig {
|
|
|
53827
53914
|
});
|
|
53828
53915
|
}
|
|
53829
53916
|
|
|
53917
|
+
export declare class ComputeNodeGroup_NodeLifecycleActions {
|
|
53918
|
+
constructor(props: {
|
|
53919
|
+
Stages: ComputeNodeGroup_NodeLifecycleStages;
|
|
53920
|
+
/** Controls whether lifecycle scripts are downloaded once at first boot (CACHE_ONCE) or re-downloaded on every reboot (REFRESH_ON_REBOOT). Defaults to CACHE_ONCE. */
|
|
53921
|
+
ScriptCachingPolicy?: "CACHE_ONCE" | "REFRESH_ON_REBOOT";
|
|
53922
|
+
});
|
|
53923
|
+
}
|
|
53924
|
+
|
|
53925
|
+
export declare class ComputeNodeGroup_NodeLifecycleScript {
|
|
53926
|
+
constructor(props: {
|
|
53927
|
+
/** A human-readable name that identifies the script. */
|
|
53928
|
+
Name: string;
|
|
53929
|
+
ScriptSource: Record<string, unknown>;
|
|
53930
|
+
/** An ordered list of arguments passed to the script. */
|
|
53931
|
+
Arguments?: string[];
|
|
53932
|
+
/** Whether the script runs only on the node's first boot (FIRST_BOOT_ONLY) or on every boot including reboots (EVERY_BOOT). Defaults to FIRST_BOOT_ONLY. */
|
|
53933
|
+
ExecutionPolicy?: "EVERY_BOOT" | "FIRST_BOOT_ONLY";
|
|
53934
|
+
/** The behavior when the script exits with an error. Defaults to TERMINATE. */
|
|
53935
|
+
OnError?: "CONTINUE" | "STOP_SEQUENCE" | "TERMINATE";
|
|
53936
|
+
});
|
|
53937
|
+
}
|
|
53938
|
+
|
|
53939
|
+
export declare class ComputeNodeGroup_NodeLifecycleStages {
|
|
53940
|
+
constructor(props: {
|
|
53941
|
+
/** Scripts to run after the node is bootstrapped, once the PCS configuration phase completes and before slurmd starts. */
|
|
53942
|
+
NodeBootstrapped?: ComputeNodeGroup_NodeLifecycleScript[];
|
|
53943
|
+
/** Scripts to execute when the node becomes ready (every boot). */
|
|
53944
|
+
NodeReady?: ComputeNodeGroup_NodeLifecycleScript[];
|
|
53945
|
+
});
|
|
53946
|
+
}
|
|
53947
|
+
|
|
53830
53948
|
export declare class ComputeNodeGroupConfiguration {
|
|
53831
53949
|
constructor(props: {
|
|
53832
53950
|
/** The compute node group ID for the compute node group configuration. */
|
|
@@ -55845,9 +55963,9 @@ export declare class ConnectRule_Tag {
|
|
|
55845
55963
|
export declare class ConnectSecurityProfile_Application {
|
|
55846
55964
|
constructor(props: {
|
|
55847
55965
|
/** The permissions that the agent is granted on the application */
|
|
55848
|
-
ApplicationPermissions
|
|
55966
|
+
ApplicationPermissions?: string[];
|
|
55849
55967
|
/** Namespace of the application that you want to give access to. */
|
|
55850
|
-
Namespace
|
|
55968
|
+
Namespace?: string;
|
|
55851
55969
|
/** The type of the application. */
|
|
55852
55970
|
Type?: "MCP" | "THIRD_PARTY_APPLICATION";
|
|
55853
55971
|
});
|
|
@@ -55856,9 +55974,9 @@ export declare class ConnectSecurityProfile_Application {
|
|
|
55856
55974
|
export declare class ConnectSecurityProfile_FlowModule {
|
|
55857
55975
|
constructor(props: {
|
|
55858
55976
|
/** The identifier of the application that you want to give access to. */
|
|
55859
|
-
FlowModuleId
|
|
55977
|
+
FlowModuleId?: string;
|
|
55860
55978
|
/** The type of the first-party application */
|
|
55861
|
-
Type
|
|
55979
|
+
Type?: string;
|
|
55862
55980
|
});
|
|
55863
55981
|
}
|
|
55864
55982
|
|
|
@@ -57671,6 +57789,7 @@ export declare class CustomDocumentEnrichmentConfiguration {
|
|
|
57671
57789
|
export declare class CustomDomainConfigType {
|
|
57672
57790
|
constructor(props: {
|
|
57673
57791
|
CertificateArn?: string;
|
|
57792
|
+
SecurityPolicy?: string;
|
|
57674
57793
|
});
|
|
57675
57794
|
}
|
|
57676
57795
|
|
|
@@ -61635,6 +61754,46 @@ export declare class DataTable_Tag {
|
|
|
61635
61754
|
});
|
|
61636
61755
|
}
|
|
61637
61756
|
|
|
61757
|
+
export declare class DataTransformationProfile_ExistingVersionedProfileSource {
|
|
61758
|
+
constructor(props: {
|
|
61759
|
+
/** The unique identifier of the source profile to clone. */
|
|
61760
|
+
ProfileId: string;
|
|
61761
|
+
/** The version number of the source profile to clone. */
|
|
61762
|
+
Version: number;
|
|
61763
|
+
});
|
|
61764
|
+
}
|
|
61765
|
+
|
|
61766
|
+
export declare class DataTransformationProfile_ProfileMappingSource {
|
|
61767
|
+
constructor(props: {
|
|
61768
|
+
/** Map of template file paths to their Velocity template content. */
|
|
61769
|
+
ProfileMapping: Record<string, unknown>;
|
|
61770
|
+
});
|
|
61771
|
+
}
|
|
61772
|
+
|
|
61773
|
+
export declare class DataTransformationProfile_Source {
|
|
61774
|
+
constructor(props: {
|
|
61775
|
+
ExistingVersionedProfileId?: DataTransformationProfile_ExistingVersionedProfileSource;
|
|
61776
|
+
ProfileMapping?: DataTransformationProfile_ProfileMappingSource;
|
|
61777
|
+
StarterProfile?: DataTransformationProfile_StarterProfileSource;
|
|
61778
|
+
});
|
|
61779
|
+
}
|
|
61780
|
+
|
|
61781
|
+
export declare class DataTransformationProfile_StarterProfileSource {
|
|
61782
|
+
constructor(props: {
|
|
61783
|
+
/** The name of the starter profile to seed the profile from. */
|
|
61784
|
+
StarterProfileName: string;
|
|
61785
|
+
});
|
|
61786
|
+
}
|
|
61787
|
+
|
|
61788
|
+
export declare class DataTransformationProfile_Tag {
|
|
61789
|
+
constructor(props: {
|
|
61790
|
+
/** The key of the tag. */
|
|
61791
|
+
Key: string;
|
|
61792
|
+
/** The value of the tag. */
|
|
61793
|
+
Value: string;
|
|
61794
|
+
});
|
|
61795
|
+
}
|
|
61796
|
+
|
|
61638
61797
|
export declare class DataZoneConnection_AwsLocation {
|
|
61639
61798
|
constructor(props: {
|
|
61640
61799
|
AccessRole?: string;
|
|
@@ -62295,6 +62454,20 @@ export declare class DefaultFormatting {
|
|
|
62295
62454
|
});
|
|
62296
62455
|
}
|
|
62297
62456
|
|
|
62457
|
+
export declare class DefaultPromptRouter_PromptRouterTargetModel {
|
|
62458
|
+
constructor(props: {
|
|
62459
|
+
/** The target model's ARN. */
|
|
62460
|
+
ModelArn: string;
|
|
62461
|
+
});
|
|
62462
|
+
}
|
|
62463
|
+
|
|
62464
|
+
export declare class DefaultPromptRouter_RoutingCriteria {
|
|
62465
|
+
constructor(props: {
|
|
62466
|
+
/** The response quality difference threshold for routing. */
|
|
62467
|
+
ResponseQualityDifference: number;
|
|
62468
|
+
});
|
|
62469
|
+
}
|
|
62470
|
+
|
|
62298
62471
|
export declare class DefaultPushNotificationTemplate {
|
|
62299
62472
|
constructor(props: {
|
|
62300
62473
|
Action?: string;
|
|
@@ -70554,6 +70727,15 @@ export declare class ExecutiveSummaryOption {
|
|
|
70554
70727
|
});
|
|
70555
70728
|
}
|
|
70556
70729
|
|
|
70730
|
+
export declare class ExistingVersionedProfileSource {
|
|
70731
|
+
constructor(props: {
|
|
70732
|
+
/** The unique identifier of the source profile to clone. */
|
|
70733
|
+
ProfileId: string;
|
|
70734
|
+
/** The version number of the source profile to clone. */
|
|
70735
|
+
Version: number;
|
|
70736
|
+
});
|
|
70737
|
+
}
|
|
70738
|
+
|
|
70557
70739
|
export declare class ExperimentConfig {
|
|
70558
70740
|
constructor(props: {
|
|
70559
70741
|
/** The name of an existing experiment to associate with the trial component. */
|
|
@@ -71996,9 +72178,9 @@ export declare class FlowLog_TagFieldSpecification {
|
|
|
71996
72178
|
export declare class FlowModule {
|
|
71997
72179
|
constructor(props: {
|
|
71998
72180
|
/** The identifier of the application that you want to give access to. */
|
|
71999
|
-
FlowModuleId
|
|
72181
|
+
FlowModuleId?: string;
|
|
72000
72182
|
/** The type of the first-party application */
|
|
72001
|
-
Type
|
|
72183
|
+
Type?: string;
|
|
72002
72184
|
});
|
|
72003
72185
|
}
|
|
72004
72186
|
|
|
@@ -83546,6 +83728,15 @@ export declare class LambdaFunctionRecipeSource {
|
|
|
83546
83728
|
});
|
|
83547
83729
|
}
|
|
83548
83730
|
|
|
83731
|
+
export declare class LambdaHook_LoggingConfig {
|
|
83732
|
+
constructor(props: {
|
|
83733
|
+
/** The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers. */
|
|
83734
|
+
LogGroupName: string;
|
|
83735
|
+
/** The ARN of the role that CloudFormation should assume when sending log entries to CloudWatch Logs. */
|
|
83736
|
+
LogRoleArn: string;
|
|
83737
|
+
});
|
|
83738
|
+
}
|
|
83739
|
+
|
|
83549
83740
|
export declare class LambdaLinuxProcessParams {
|
|
83550
83741
|
constructor(props: {
|
|
83551
83742
|
ContainerParams?: Record<string, unknown>;
|
|
@@ -87738,6 +87929,8 @@ export declare class MatchingWorkflow_ProviderProperties {
|
|
|
87738
87929
|
|
|
87739
87930
|
export declare class MatchingWorkflow_ResolutionTechniques {
|
|
87740
87931
|
constructor(props: {
|
|
87932
|
+
/** Enables the workflow to use real-time matching. Can only be set on creation for RULE_MATCHING workflows that define RuleConditionProperties. */
|
|
87933
|
+
EnableRealTimeMatching?: boolean;
|
|
87741
87934
|
ProviderProperties?: MatchingWorkflow_ProviderProperties;
|
|
87742
87935
|
ResolutionType?: MatchingWorkflow_ResolutionType;
|
|
87743
87936
|
RuleBasedProperties?: MatchingWorkflow_RuleBasedProperties;
|
|
@@ -94373,6 +94566,37 @@ export declare class NodeInterfaceMapping {
|
|
|
94373
94566
|
});
|
|
94374
94567
|
}
|
|
94375
94568
|
|
|
94569
|
+
export declare class NodeLifecycleActions {
|
|
94570
|
+
constructor(props: {
|
|
94571
|
+
Stages: ComputeNodeGroup_NodeLifecycleStages;
|
|
94572
|
+
/** Controls whether lifecycle scripts are downloaded once at first boot (CACHE_ONCE) or re-downloaded on every reboot (REFRESH_ON_REBOOT). Defaults to CACHE_ONCE. */
|
|
94573
|
+
ScriptCachingPolicy?: "CACHE_ONCE" | "REFRESH_ON_REBOOT";
|
|
94574
|
+
});
|
|
94575
|
+
}
|
|
94576
|
+
|
|
94577
|
+
export declare class NodeLifecycleScript {
|
|
94578
|
+
constructor(props: {
|
|
94579
|
+
/** A human-readable name that identifies the script. */
|
|
94580
|
+
Name: string;
|
|
94581
|
+
ScriptSource: Record<string, unknown>;
|
|
94582
|
+
/** An ordered list of arguments passed to the script. */
|
|
94583
|
+
Arguments?: string[];
|
|
94584
|
+
/** Whether the script runs only on the node's first boot (FIRST_BOOT_ONLY) or on every boot including reboots (EVERY_BOOT). Defaults to FIRST_BOOT_ONLY. */
|
|
94585
|
+
ExecutionPolicy?: "EVERY_BOOT" | "FIRST_BOOT_ONLY";
|
|
94586
|
+
/** The behavior when the script exits with an error. Defaults to TERMINATE. */
|
|
94587
|
+
OnError?: "CONTINUE" | "STOP_SEQUENCE" | "TERMINATE";
|
|
94588
|
+
});
|
|
94589
|
+
}
|
|
94590
|
+
|
|
94591
|
+
export declare class NodeLifecycleStages {
|
|
94592
|
+
constructor(props: {
|
|
94593
|
+
/** Scripts to run after the node is bootstrapped, once the PCS configuration phase completes and before slurmd starts. */
|
|
94594
|
+
NodeBootstrapped?: ComputeNodeGroup_NodeLifecycleScript[];
|
|
94595
|
+
/** Scripts to execute when the node becomes ready (every boot). */
|
|
94596
|
+
NodeReady?: ComputeNodeGroup_NodeLifecycleScript[];
|
|
94597
|
+
});
|
|
94598
|
+
}
|
|
94599
|
+
|
|
94376
94600
|
export declare class NodeOption {
|
|
94377
94601
|
constructor(props: {
|
|
94378
94602
|
NodeConfig?: OpenSearchServiceDomain_NodeConfig;
|
|
@@ -96216,6 +96440,15 @@ export declare class OrganizationConformancePack_ConformancePackInputParameter {
|
|
|
96216
96440
|
});
|
|
96217
96441
|
}
|
|
96218
96442
|
|
|
96443
|
+
export declare class OrganizationConformancePack_Tag {
|
|
96444
|
+
constructor(props: {
|
|
96445
|
+
/** 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 -. */
|
|
96446
|
+
Key: string;
|
|
96447
|
+
/** 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 -. */
|
|
96448
|
+
Value: string;
|
|
96449
|
+
});
|
|
96450
|
+
}
|
|
96451
|
+
|
|
96219
96452
|
export declare class OrganizationCustomPolicyRuleMetadata {
|
|
96220
96453
|
constructor(props: {
|
|
96221
96454
|
PolicyText: string;
|
|
@@ -100476,6 +100709,13 @@ export declare class ProfileAssociation_Tag {
|
|
|
100476
100709
|
});
|
|
100477
100710
|
}
|
|
100478
100711
|
|
|
100712
|
+
export declare class ProfileMappingSource {
|
|
100713
|
+
constructor(props: {
|
|
100714
|
+
/** Map of template file paths to their Velocity template content. */
|
|
100715
|
+
ProfileMapping: Record<string, unknown>;
|
|
100716
|
+
});
|
|
100717
|
+
}
|
|
100718
|
+
|
|
100479
100719
|
export declare class ProfilingGroup_Channel {
|
|
100480
100720
|
constructor(props: {
|
|
100481
100721
|
channelUri: string;
|
|
@@ -100654,13 +100894,6 @@ export declare class PromptOverrideConfiguration {
|
|
|
100654
100894
|
});
|
|
100655
100895
|
}
|
|
100656
100896
|
|
|
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
100897
|
export declare class PromptVersion_PromptVariant {
|
|
100665
100898
|
constructor(props: {
|
|
100666
100899
|
/** Name for a variant. */
|
|
@@ -105764,6 +105997,8 @@ export declare class ResiliencyPolicy_PolicyMap {
|
|
|
105764
105997
|
|
|
105765
105998
|
export declare class ResolutionTechniques {
|
|
105766
105999
|
constructor(props: {
|
|
106000
|
+
/** Enables the workflow to use real-time matching. Can only be set on creation for RULE_MATCHING workflows that define RuleConditionProperties. */
|
|
106001
|
+
EnableRealTimeMatching?: boolean;
|
|
105767
106002
|
ProviderProperties?: MatchingWorkflow_ProviderProperties;
|
|
105768
106003
|
ResolutionType?: MatchingWorkflow_ResolutionType;
|
|
105769
106004
|
RuleBasedProperties?: MatchingWorkflow_RuleBasedProperties;
|
|
@@ -107209,12 +107444,6 @@ export declare class RouteTable_Tag {
|
|
|
107209
107444
|
});
|
|
107210
107445
|
}
|
|
107211
107446
|
|
|
107212
|
-
export declare class RoutingCriteria {
|
|
107213
|
-
constructor(props: {
|
|
107214
|
-
ResponseQualityDifference: number;
|
|
107215
|
-
});
|
|
107216
|
-
}
|
|
107217
|
-
|
|
107218
107447
|
export declare class RoutingProfile_CrossChannelBehavior {
|
|
107219
107448
|
constructor(props: {
|
|
107220
107449
|
BehaviorType: RoutingProfile_BehaviorType;
|
|
@@ -107643,6 +107872,13 @@ export declare class Runtime_AgentRuntimeArtifact {
|
|
|
107643
107872
|
});
|
|
107644
107873
|
}
|
|
107645
107874
|
|
|
107875
|
+
export declare class Runtime_AllowedWorkloadConfiguration {
|
|
107876
|
+
constructor(props: {
|
|
107877
|
+
HostingEnvironments?: any;
|
|
107878
|
+
WorkloadIdentities?: any;
|
|
107879
|
+
});
|
|
107880
|
+
}
|
|
107881
|
+
|
|
107646
107882
|
export declare class Runtime_AuthorizerConfiguration {
|
|
107647
107883
|
constructor(props: {
|
|
107648
107884
|
CustomJWTAuthorizer?: Runtime_CustomJWTAuthorizerConfiguration;
|
|
@@ -107675,7 +107911,10 @@ export declare class Runtime_CustomJWTAuthorizerConfiguration {
|
|
|
107675
107911
|
AllowedAudience?: any;
|
|
107676
107912
|
AllowedClients?: any;
|
|
107677
107913
|
AllowedScopes?: any;
|
|
107914
|
+
AllowedWorkloadConfiguration?: Runtime_AllowedWorkloadConfiguration;
|
|
107678
107915
|
CustomClaims?: any;
|
|
107916
|
+
PrivateEndpoint?: Record<string, unknown>;
|
|
107917
|
+
PrivateEndpointOverrides?: any;
|
|
107679
107918
|
});
|
|
107680
107919
|
}
|
|
107681
107920
|
|
|
@@ -115039,6 +115278,13 @@ export declare class StarburstParameters {
|
|
|
115039
115278
|
});
|
|
115040
115279
|
}
|
|
115041
115280
|
|
|
115281
|
+
export declare class StarterProfileSource {
|
|
115282
|
+
constructor(props: {
|
|
115283
|
+
/** The name of the starter profile to seed the profile from. */
|
|
115284
|
+
StarterProfileName: string;
|
|
115285
|
+
});
|
|
115286
|
+
}
|
|
115287
|
+
|
|
115042
115288
|
export declare class StartTag {
|
|
115043
115289
|
constructor(props: {
|
|
115044
115290
|
/** <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 +120873,7 @@ export declare class UserPoolConfig {
|
|
|
120627
120873
|
export declare class UserPoolDomain_CustomDomainConfigType {
|
|
120628
120874
|
constructor(props: {
|
|
120629
120875
|
CertificateArn?: string;
|
|
120876
|
+
SecurityPolicy?: string;
|
|
120630
120877
|
});
|
|
120631
120878
|
}
|
|
120632
120879
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.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,7 +80,7 @@
|
|
|
80
80
|
"typescript": "^5.9.3"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@intentius/chant": "^0.
|
|
83
|
+
"@intentius/chant": "^0.19.0",
|
|
84
84
|
"typescript": "^5.9.3"
|
|
85
85
|
}
|
|
86
86
|
}
|