@intentius/chant-lexicon-aws 0.12.1 → 0.13.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 +29 -0
- 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 +222 -1
- package/dist/types/index.d.ts +325 -1
- package/package.json +2 -2
- package/src/generated/index.d.ts +325 -1
- package/src/generated/index.ts +30 -1
- package/src/generated/lexicon-aws.json +222 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -3828,6 +3828,9 @@ Information on the current primary is available on the DataReplicationMetadata o
|
|
|
3828
3828
|
MaintenanceWindowStartTime?: Broker_MaintenanceWindow;
|
|
3829
3829
|
MqttEndpoints?: string[];
|
|
3830
3830
|
OpenWireEndpoints?: string[];
|
|
3831
|
+
/** The ARNs of the resource shares to be associated with the broker.
|
|
3832
|
+
*/
|
|
3833
|
+
ResourceShareArns?: string[];
|
|
3831
3834
|
SecurityGroups?: string[];
|
|
3832
3835
|
StompEndpoints?: string[];
|
|
3833
3836
|
StorageType?: any;
|
|
@@ -15911,6 +15914,8 @@ export declare class Harness {
|
|
|
15911
15914
|
Truncation?: Harness_HarnessTruncationConfiguration;
|
|
15912
15915
|
/** The timestamp when the harness was last updated. */
|
|
15913
15916
|
UpdatedAt?: string;
|
|
15917
|
+
/** The version of the harness. Incremented on every successful update. */
|
|
15918
|
+
Version?: string;
|
|
15914
15919
|
}, attributes?: CFResourceAttributes);
|
|
15915
15920
|
readonly Arn: string;
|
|
15916
15921
|
readonly CreatedAt: string;
|
|
@@ -15918,8 +15923,10 @@ export declare class Harness {
|
|
|
15918
15923
|
readonly Environment_AgentCoreRuntimeEnvironment_AgentRuntimeId: string;
|
|
15919
15924
|
readonly Environment_AgentCoreRuntimeEnvironment_AgentRuntimeName: string;
|
|
15920
15925
|
readonly HarnessId: string;
|
|
15926
|
+
readonly Memory_ManagedMemoryConfiguration_Arn: string;
|
|
15921
15927
|
readonly Status: Harness_HarnessStatus;
|
|
15922
15928
|
readonly UpdatedAt: string;
|
|
15929
|
+
readonly Version: string;
|
|
15923
15930
|
}
|
|
15924
15931
|
|
|
15925
15932
|
export declare class HealthCheck {
|
|
@@ -22056,6 +22063,52 @@ export declare class MicrosoftTeamsChannelConfiguration {
|
|
|
22056
22063
|
readonly Arn: string;
|
|
22057
22064
|
}
|
|
22058
22065
|
|
|
22066
|
+
export declare class MicrovmImage {
|
|
22067
|
+
constructor(props: {
|
|
22068
|
+
AdditionalOsCapabilities: "ALL"[];
|
|
22069
|
+
/** ARN of the base MicroVM image. */
|
|
22070
|
+
BaseImageArn: string;
|
|
22071
|
+
/** Specific version of the base MicroVM image to use. */
|
|
22072
|
+
BaseImageVersion: string;
|
|
22073
|
+
/** ARN of the IAM build role. */
|
|
22074
|
+
BuildRoleArn: string;
|
|
22075
|
+
/** Code artifact for the active MicroVM image. */
|
|
22076
|
+
CodeArtifact: MicrovmImage_CodeArtifact;
|
|
22077
|
+
CpuConfigurations: MicrovmImage_CpuConfiguration[];
|
|
22078
|
+
/** Human-readable description of the MicroVM image and its purpose. */
|
|
22079
|
+
Description: string;
|
|
22080
|
+
EgressNetworkConnectors: string[];
|
|
22081
|
+
/** Environment variables to set in the container during the snapshot build. */
|
|
22082
|
+
EnvironmentVariables: MicrovmImage_EnvironmentVariable[];
|
|
22083
|
+
Hooks: MicrovmImage_Hooks;
|
|
22084
|
+
/** Configuration for MicroVM image logging. */
|
|
22085
|
+
Logging: MicrovmImage_Logging;
|
|
22086
|
+
/** Unique name for the MicroVM image within the account. */
|
|
22087
|
+
Name: string;
|
|
22088
|
+
Resources: MicrovmImage_Resources[];
|
|
22089
|
+
/** Timestamp when the MicroVM image was created. */
|
|
22090
|
+
CreatedAt?: string;
|
|
22091
|
+
/** ARN of the MicroVM image. */
|
|
22092
|
+
ImageArn?: string;
|
|
22093
|
+
/** The latest active version of the MicroVM image. */
|
|
22094
|
+
LatestActiveImageVersion?: string;
|
|
22095
|
+
/** The latest failed version of the MicroVM image. */
|
|
22096
|
+
LatestFailedImageVersion?: string;
|
|
22097
|
+
/** Current state of the MicroVM image. */
|
|
22098
|
+
State?: MicrovmImage_MicrovmImageState;
|
|
22099
|
+
/** Key-value pairs to associate with the MicroVM image for organization and management. */
|
|
22100
|
+
Tags?: MicrovmImage_Tag[];
|
|
22101
|
+
/** Timestamp when the MicroVM image was updated. */
|
|
22102
|
+
UpdatedAt?: string;
|
|
22103
|
+
}, attributes?: CFResourceAttributes);
|
|
22104
|
+
readonly CreatedAt: string;
|
|
22105
|
+
readonly ImageArn: string;
|
|
22106
|
+
readonly LatestActiveImageVersion: string;
|
|
22107
|
+
readonly LatestFailedImageVersion: string;
|
|
22108
|
+
readonly State: MicrovmImage_MicrovmImageState;
|
|
22109
|
+
readonly UpdatedAt: string;
|
|
22110
|
+
}
|
|
22111
|
+
|
|
22059
22112
|
export declare class MigrationProject {
|
|
22060
22113
|
constructor(props: {
|
|
22061
22114
|
/** The optional description of the migration project. */
|
|
@@ -23219,6 +23272,20 @@ export declare class NetworkAnalyzerConfiguration {
|
|
|
23219
23272
|
readonly Arn: string;
|
|
23220
23273
|
}
|
|
23221
23274
|
|
|
23275
|
+
export declare class NetworkConnector {
|
|
23276
|
+
constructor(props: {
|
|
23277
|
+
Configuration: NetworkConnector_Config;
|
|
23278
|
+
Arn?: string;
|
|
23279
|
+
Name?: string;
|
|
23280
|
+
OperatorRole?: string;
|
|
23281
|
+
State?: NetworkConnector_State;
|
|
23282
|
+
/** A list of tags to apply to the network connector. Use tags to categorize network connectors for cost allocation, access control, or operational management. */
|
|
23283
|
+
Tags?: NetworkConnector_Tag[];
|
|
23284
|
+
}, attributes?: CFResourceAttributes);
|
|
23285
|
+
readonly Arn: string;
|
|
23286
|
+
readonly State: NetworkConnector_State;
|
|
23287
|
+
}
|
|
23288
|
+
|
|
23222
23289
|
export declare class NetworkFirewallLoggingConfiguration {
|
|
23223
23290
|
constructor(props: {
|
|
23224
23291
|
FirewallArn: string;
|
|
@@ -51008,6 +51075,13 @@ export declare class CloudWatchLog {
|
|
|
51008
51075
|
});
|
|
51009
51076
|
}
|
|
51010
51077
|
|
|
51078
|
+
export declare class CloudWatchLogging {
|
|
51079
|
+
constructor(props: {
|
|
51080
|
+
LogGroup?: string;
|
|
51081
|
+
LogStream?: string;
|
|
51082
|
+
});
|
|
51083
|
+
}
|
|
51084
|
+
|
|
51011
51085
|
export declare class CloudWatchLoggingOption {
|
|
51012
51086
|
constructor(props: {
|
|
51013
51087
|
LogStreamARN: string;
|
|
@@ -51251,6 +51325,12 @@ export declare class Code {
|
|
|
51251
51325
|
});
|
|
51252
51326
|
}
|
|
51253
51327
|
|
|
51328
|
+
export declare class CodeArtifact {
|
|
51329
|
+
constructor(props: {
|
|
51330
|
+
Uri: string;
|
|
51331
|
+
});
|
|
51332
|
+
}
|
|
51333
|
+
|
|
51254
51334
|
export declare class CodeArtifactDomain_Tag {
|
|
51255
51335
|
constructor(props: {
|
|
51256
51336
|
/** 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 -. */
|
|
@@ -55727,6 +55807,12 @@ export declare class CoverageTime {
|
|
|
55727
55807
|
});
|
|
55728
55808
|
}
|
|
55729
55809
|
|
|
55810
|
+
export declare class CpuConfiguration {
|
|
55811
|
+
constructor(props: {
|
|
55812
|
+
Architecture: "ARM_64";
|
|
55813
|
+
});
|
|
55814
|
+
}
|
|
55815
|
+
|
|
55730
55816
|
export declare class CpuOptions {
|
|
55731
55817
|
constructor(props: {
|
|
55732
55818
|
/** Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported with M6a, R6a, and C6a instance types only. For more information, see [AMD SEV-SNP for Amazon EC2 instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html). */
|
|
@@ -74097,9 +74183,24 @@ export declare class Harness_HarnessLiteLlmModelConfig {
|
|
|
74097
74183
|
});
|
|
74098
74184
|
}
|
|
74099
74185
|
|
|
74186
|
+
export declare class Harness_HarnessManagedMemoryConfiguration {
|
|
74187
|
+
constructor(props: {
|
|
74188
|
+
/** The ARN of the managed memory resource. Read-only, populated by the service. */
|
|
74189
|
+
Arn?: string;
|
|
74190
|
+
/** Customer-managed KMS key ARN. Defaults to AWS-owned key. Not updatable after creation. */
|
|
74191
|
+
EncryptionKeyArn?: string;
|
|
74192
|
+
/** Event retention in days. Defaults to 30. */
|
|
74193
|
+
EventExpiryDuration?: number;
|
|
74194
|
+
/** Strategy types to enable. Defaults to [SEMANTIC, SUMMARIZATION]. */
|
|
74195
|
+
Strategies?: "EPISODIC" | "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE"[];
|
|
74196
|
+
});
|
|
74197
|
+
}
|
|
74198
|
+
|
|
74100
74199
|
export declare class Harness_HarnessMemoryConfiguration {
|
|
74101
74200
|
constructor(props: {
|
|
74102
74201
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
74202
|
+
Disabled?: Record<string, unknown>;
|
|
74203
|
+
ManagedMemoryConfiguration?: Harness_HarnessManagedMemoryConfiguration;
|
|
74103
74204
|
});
|
|
74104
74205
|
}
|
|
74105
74206
|
|
|
@@ -74134,6 +74235,7 @@ export declare class Harness_HarnessRemoteMcpConfig {
|
|
|
74134
74235
|
|
|
74135
74236
|
export declare class Harness_HarnessSkill {
|
|
74136
74237
|
constructor(props: {
|
|
74238
|
+
AwsSkills?: Harness_HarnessSkillAwsSkillsSource;
|
|
74137
74239
|
Git?: Harness_HarnessSkillGitSource;
|
|
74138
74240
|
/** The filesystem path to the skill definition. */
|
|
74139
74241
|
Path?: string;
|
|
@@ -74141,6 +74243,13 @@ export declare class Harness_HarnessSkill {
|
|
|
74141
74243
|
});
|
|
74142
74244
|
}
|
|
74143
74245
|
|
|
74246
|
+
export declare class Harness_HarnessSkillAwsSkillsSource {
|
|
74247
|
+
constructor(props: {
|
|
74248
|
+
/** Optionally filter allowed skills with glob syntax, e.g., ['core-skills/*']. */
|
|
74249
|
+
Paths?: string[];
|
|
74250
|
+
});
|
|
74251
|
+
}
|
|
74252
|
+
|
|
74144
74253
|
export declare class Harness_HarnessSkillGitAuth {
|
|
74145
74254
|
constructor(props: {
|
|
74146
74255
|
/** The ARN of the credential in AgentCore Identity containing the password or personal access token. */
|
|
@@ -74353,9 +74462,24 @@ export declare class HarnessLiteLlmModelConfig {
|
|
|
74353
74462
|
});
|
|
74354
74463
|
}
|
|
74355
74464
|
|
|
74465
|
+
export declare class HarnessManagedMemoryConfiguration {
|
|
74466
|
+
constructor(props: {
|
|
74467
|
+
/** The ARN of the managed memory resource. Read-only, populated by the service. */
|
|
74468
|
+
Arn?: string;
|
|
74469
|
+
/** Customer-managed KMS key ARN. Defaults to AWS-owned key. Not updatable after creation. */
|
|
74470
|
+
EncryptionKeyArn?: string;
|
|
74471
|
+
/** Event retention in days. Defaults to 30. */
|
|
74472
|
+
EventExpiryDuration?: number;
|
|
74473
|
+
/** Strategy types to enable. Defaults to [SEMANTIC, SUMMARIZATION]. */
|
|
74474
|
+
Strategies?: "EPISODIC" | "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE"[];
|
|
74475
|
+
});
|
|
74476
|
+
}
|
|
74477
|
+
|
|
74356
74478
|
export declare class HarnessMemoryConfiguration {
|
|
74357
74479
|
constructor(props: {
|
|
74358
74480
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
74481
|
+
Disabled?: Record<string, unknown>;
|
|
74482
|
+
ManagedMemoryConfiguration?: Harness_HarnessManagedMemoryConfiguration;
|
|
74359
74483
|
});
|
|
74360
74484
|
}
|
|
74361
74485
|
|
|
@@ -74390,6 +74514,7 @@ export declare class HarnessRemoteMcpConfig {
|
|
|
74390
74514
|
|
|
74391
74515
|
export declare class HarnessSkill {
|
|
74392
74516
|
constructor(props: {
|
|
74517
|
+
AwsSkills?: Harness_HarnessSkillAwsSkillsSource;
|
|
74393
74518
|
Git?: Harness_HarnessSkillGitSource;
|
|
74394
74519
|
/** The filesystem path to the skill definition. */
|
|
74395
74520
|
Path?: string;
|
|
@@ -74397,6 +74522,13 @@ export declare class HarnessSkill {
|
|
|
74397
74522
|
});
|
|
74398
74523
|
}
|
|
74399
74524
|
|
|
74525
|
+
export declare class HarnessSkillAwsSkillsSource {
|
|
74526
|
+
constructor(props: {
|
|
74527
|
+
/** Optionally filter allowed skills with glob syntax, e.g., ['core-skills/*']. */
|
|
74528
|
+
Paths?: string[];
|
|
74529
|
+
});
|
|
74530
|
+
}
|
|
74531
|
+
|
|
74400
74532
|
export declare class HarnessSkillGitAuth {
|
|
74401
74533
|
constructor(props: {
|
|
74402
74534
|
/** The ARN of the credential in AgentCore Identity containing the password or personal access token. */
|
|
@@ -74625,6 +74757,14 @@ export declare class HomeDirectoryMapEntry {
|
|
|
74625
74757
|
});
|
|
74626
74758
|
}
|
|
74627
74759
|
|
|
74760
|
+
export declare class Hooks {
|
|
74761
|
+
constructor(props: {
|
|
74762
|
+
MicrovmHooks?: MicrovmImage_MicrovmHooks;
|
|
74763
|
+
MicrovmImageHooks?: MicrovmImage_MicrovmImageHooks;
|
|
74764
|
+
Port?: number;
|
|
74765
|
+
});
|
|
74766
|
+
}
|
|
74767
|
+
|
|
74628
74768
|
export declare class HookTimeoutConfig {
|
|
74629
74769
|
constructor(props: {
|
|
74630
74770
|
Action?: "CONTINUE" | "ROLLBACK";
|
|
@@ -80412,6 +80552,13 @@ export declare class KafkaClusterClientVpcConfig {
|
|
|
80412
80552
|
});
|
|
80413
80553
|
}
|
|
80414
80554
|
|
|
80555
|
+
export declare class KafkaClusterMtlsAuthentication {
|
|
80556
|
+
constructor(props: {
|
|
80557
|
+
/** The Amazon Resource Name (ARN) of the Secrets Manager secret. */
|
|
80558
|
+
SecretArn: string;
|
|
80559
|
+
});
|
|
80560
|
+
}
|
|
80561
|
+
|
|
80415
80562
|
export declare class KafkaClusterSaslScramAuthentication {
|
|
80416
80563
|
constructor(props: {
|
|
80417
80564
|
/** The SASL/SCRAM authentication mechanism. */
|
|
@@ -89108,6 +89255,106 @@ export declare class MicrosoftTeamsChannelConfiguration_Tag {
|
|
|
89108
89255
|
});
|
|
89109
89256
|
}
|
|
89110
89257
|
|
|
89258
|
+
export declare class MicrovmHooks {
|
|
89259
|
+
constructor(props: {
|
|
89260
|
+
Resume?: MicrovmImage_HookState;
|
|
89261
|
+
ResumeTimeoutInSeconds?: number;
|
|
89262
|
+
Run?: MicrovmImage_HookState;
|
|
89263
|
+
RunTimeoutInSeconds?: number;
|
|
89264
|
+
Suspend?: MicrovmImage_HookState;
|
|
89265
|
+
SuspendTimeoutInSeconds?: number;
|
|
89266
|
+
Terminate?: MicrovmImage_HookState;
|
|
89267
|
+
TerminateTimeoutInSeconds?: number;
|
|
89268
|
+
});
|
|
89269
|
+
}
|
|
89270
|
+
|
|
89271
|
+
export declare class MicrovmImage_CloudWatchLogging {
|
|
89272
|
+
constructor(props: {
|
|
89273
|
+
LogGroup?: string;
|
|
89274
|
+
LogStream?: string;
|
|
89275
|
+
});
|
|
89276
|
+
}
|
|
89277
|
+
|
|
89278
|
+
export declare class MicrovmImage_CodeArtifact {
|
|
89279
|
+
constructor(props: {
|
|
89280
|
+
Uri: string;
|
|
89281
|
+
});
|
|
89282
|
+
}
|
|
89283
|
+
|
|
89284
|
+
export declare class MicrovmImage_CpuConfiguration {
|
|
89285
|
+
constructor(props: {
|
|
89286
|
+
Architecture: "ARM_64";
|
|
89287
|
+
});
|
|
89288
|
+
}
|
|
89289
|
+
|
|
89290
|
+
export declare class MicrovmImage_EnvironmentVariable {
|
|
89291
|
+
constructor(props: {
|
|
89292
|
+
Key: string;
|
|
89293
|
+
Value: string;
|
|
89294
|
+
});
|
|
89295
|
+
}
|
|
89296
|
+
|
|
89297
|
+
export declare class MicrovmImage_Hooks {
|
|
89298
|
+
constructor(props: {
|
|
89299
|
+
MicrovmHooks?: MicrovmImage_MicrovmHooks;
|
|
89300
|
+
MicrovmImageHooks?: MicrovmImage_MicrovmImageHooks;
|
|
89301
|
+
Port?: number;
|
|
89302
|
+
});
|
|
89303
|
+
}
|
|
89304
|
+
|
|
89305
|
+
export declare class MicrovmImage_Logging {
|
|
89306
|
+
constructor(props: {
|
|
89307
|
+
CloudWatch?: MicrovmImage_CloudWatchLogging;
|
|
89308
|
+
Disabled?: boolean;
|
|
89309
|
+
});
|
|
89310
|
+
}
|
|
89311
|
+
|
|
89312
|
+
export declare class MicrovmImage_MicrovmHooks {
|
|
89313
|
+
constructor(props: {
|
|
89314
|
+
Resume?: MicrovmImage_HookState;
|
|
89315
|
+
ResumeTimeoutInSeconds?: number;
|
|
89316
|
+
Run?: MicrovmImage_HookState;
|
|
89317
|
+
RunTimeoutInSeconds?: number;
|
|
89318
|
+
Suspend?: MicrovmImage_HookState;
|
|
89319
|
+
SuspendTimeoutInSeconds?: number;
|
|
89320
|
+
Terminate?: MicrovmImage_HookState;
|
|
89321
|
+
TerminateTimeoutInSeconds?: number;
|
|
89322
|
+
});
|
|
89323
|
+
}
|
|
89324
|
+
|
|
89325
|
+
export declare class MicrovmImage_MicrovmImageHooks {
|
|
89326
|
+
constructor(props: {
|
|
89327
|
+
Ready?: MicrovmImage_HookState;
|
|
89328
|
+
ReadyTimeoutInSeconds?: number;
|
|
89329
|
+
Validate?: MicrovmImage_HookState;
|
|
89330
|
+
ValidateTimeoutInSeconds?: number;
|
|
89331
|
+
});
|
|
89332
|
+
}
|
|
89333
|
+
|
|
89334
|
+
export declare class MicrovmImage_Resources {
|
|
89335
|
+
constructor(props: {
|
|
89336
|
+
MinimumMemoryInMiB: number;
|
|
89337
|
+
});
|
|
89338
|
+
}
|
|
89339
|
+
|
|
89340
|
+
export declare class MicrovmImage_Tag {
|
|
89341
|
+
constructor(props: {
|
|
89342
|
+
/** The key name of the tag. */
|
|
89343
|
+
Key: string;
|
|
89344
|
+
/** The value for the tag. */
|
|
89345
|
+
Value?: string;
|
|
89346
|
+
});
|
|
89347
|
+
}
|
|
89348
|
+
|
|
89349
|
+
export declare class MicrovmImageHooks {
|
|
89350
|
+
constructor(props: {
|
|
89351
|
+
Ready?: MicrovmImage_HookState;
|
|
89352
|
+
ReadyTimeoutInSeconds?: number;
|
|
89353
|
+
Validate?: MicrovmImage_HookState;
|
|
89354
|
+
ValidateTimeoutInSeconds?: number;
|
|
89355
|
+
});
|
|
89356
|
+
}
|
|
89357
|
+
|
|
89111
89358
|
export declare class MigrationProject_DataProviderDescriptor {
|
|
89112
89359
|
constructor(props: {
|
|
89113
89360
|
DataProviderArn?: string;
|
|
@@ -91836,6 +92083,34 @@ export declare class NetworkBandwidthGbps {
|
|
|
91836
92083
|
});
|
|
91837
92084
|
}
|
|
91838
92085
|
|
|
92086
|
+
export declare class NetworkConnector_Config {
|
|
92087
|
+
constructor(props: {
|
|
92088
|
+
VpcEgressConfiguration: NetworkConnector_VpcEgressConfiguration;
|
|
92089
|
+
});
|
|
92090
|
+
}
|
|
92091
|
+
|
|
92092
|
+
export declare class NetworkConnector_Tag {
|
|
92093
|
+
constructor(props: {
|
|
92094
|
+
/** The key name of the tag. */
|
|
92095
|
+
Key: string;
|
|
92096
|
+
/** The value for the tag. */
|
|
92097
|
+
Value?: string;
|
|
92098
|
+
});
|
|
92099
|
+
}
|
|
92100
|
+
|
|
92101
|
+
export declare class NetworkConnector_VpcEgressConfiguration {
|
|
92102
|
+
constructor(props: {
|
|
92103
|
+
/** The types of Lambda compute resources that can use this connector. Currently, only MicroVm is supported. */
|
|
92104
|
+
AssociatedComputeResourceTypes: "MicroVm"[];
|
|
92105
|
+
/** The IDs of the VPC subnets where Lambda provisions elastic network interfaces (ENIs). Specify 1 to 16 subnets. All subnets must be in the same VPC. */
|
|
92106
|
+
SubnetIds: string[];
|
|
92107
|
+
/** The network protocol for the connector. Specify IPv4 for IPv4-only networking, or DualStack for both IPv4 and IPv6. */
|
|
92108
|
+
NetworkProtocol?: "DualStack" | "IPv4";
|
|
92109
|
+
/** The IDs of the VPC security groups to attach to the ENIs. Specify 0 to 5 security groups. All security groups must be in the same VPC as the subnets. */
|
|
92110
|
+
SecurityGroupIds?: string[];
|
|
92111
|
+
});
|
|
92112
|
+
}
|
|
92113
|
+
|
|
91839
92114
|
export declare class NetworkFabricConfiguration {
|
|
91840
92115
|
constructor(props: {
|
|
91841
92116
|
Edition: string;
|
|
@@ -103280,8 +103555,10 @@ export declare class Replicator_KafkaCluster {
|
|
|
103280
103555
|
|
|
103281
103556
|
export declare class Replicator_KafkaClusterClientAuthentication {
|
|
103282
103557
|
constructor(props: {
|
|
103558
|
+
/** Details for mTLS client authentication. */
|
|
103559
|
+
MTLS?: Replicator_KafkaClusterMtlsAuthentication;
|
|
103283
103560
|
/** Details for SASL/SCRAM client authentication. */
|
|
103284
|
-
SaslScram
|
|
103561
|
+
SaslScram?: Replicator_KafkaClusterSaslScramAuthentication;
|
|
103285
103562
|
});
|
|
103286
103563
|
}
|
|
103287
103564
|
|
|
@@ -103303,6 +103580,13 @@ export declare class Replicator_KafkaClusterEncryptionInTransit {
|
|
|
103303
103580
|
});
|
|
103304
103581
|
}
|
|
103305
103582
|
|
|
103583
|
+
export declare class Replicator_KafkaClusterMtlsAuthentication {
|
|
103584
|
+
constructor(props: {
|
|
103585
|
+
/** The Amazon Resource Name (ARN) of the Secrets Manager secret. */
|
|
103586
|
+
SecretArn: string;
|
|
103587
|
+
});
|
|
103588
|
+
}
|
|
103589
|
+
|
|
103306
103590
|
export declare class Replicator_KafkaClusterSaslScramAuthentication {
|
|
103307
103591
|
constructor(props: {
|
|
103308
103592
|
/** The SASL/SCRAM authentication mechanism. */
|
|
@@ -104219,6 +104503,12 @@ export declare class ResourceRetentionPolicy {
|
|
|
104219
104503
|
});
|
|
104220
104504
|
}
|
|
104221
104505
|
|
|
104506
|
+
export declare class Resources {
|
|
104507
|
+
constructor(props: {
|
|
104508
|
+
MinimumMemoryInMiB: number;
|
|
104509
|
+
});
|
|
104510
|
+
}
|
|
104511
|
+
|
|
104222
104512
|
export declare class ResourceServerScopeType {
|
|
104223
104513
|
constructor(props: {
|
|
104224
104514
|
ScopeDescription: string;
|
|
@@ -120131,6 +120421,19 @@ export declare class VpcDestinationProperties {
|
|
|
120131
120421
|
});
|
|
120132
120422
|
}
|
|
120133
120423
|
|
|
120424
|
+
export declare class VpcEgressConfiguration {
|
|
120425
|
+
constructor(props: {
|
|
120426
|
+
/** The types of Lambda compute resources that can use this connector. Currently, only MicroVm is supported. */
|
|
120427
|
+
AssociatedComputeResourceTypes: "MicroVm"[];
|
|
120428
|
+
/** The IDs of the VPC subnets where Lambda provisions elastic network interfaces (ENIs). Specify 1 to 16 subnets. All subnets must be in the same VPC. */
|
|
120429
|
+
SubnetIds: string[];
|
|
120430
|
+
/** The network protocol for the connector. Specify IPv4 for IPv4-only networking, or DualStack for both IPv4 and IPv6. */
|
|
120431
|
+
NetworkProtocol?: "DualStack" | "IPv4";
|
|
120432
|
+
/** The IDs of the VPC security groups to attach to the ENIs. Specify 0 to 5 security groups. All security groups must be in the same VPC as the subnets. */
|
|
120433
|
+
SecurityGroupIds?: string[];
|
|
120434
|
+
});
|
|
120435
|
+
}
|
|
120436
|
+
|
|
120134
120437
|
export declare class VPCEncryptionControl_ResourceExclusions {
|
|
120135
120438
|
constructor(props: {
|
|
120136
120439
|
EgressOnlyInternetGateway?: VPCEncryptionControl_VpcEncryptionControlExclusion;
|
|
@@ -127274,6 +127577,19 @@ export type MemoryDBCluster_SupportedNetworkTypes = "dual_stack" | "ipv4" | "ipv
|
|
|
127274
127577
|
|
|
127275
127578
|
export type MessageTemplate_ChannelSubtype = "EMAIL" | "SMS";
|
|
127276
127579
|
|
|
127580
|
+
export type MicrovmImage_HookState = "DISABLED" | "ENABLED";
|
|
127581
|
+
|
|
127582
|
+
export type MicrovmImage_MicrovmImageState =
|
|
127583
|
+
| "CREATED"
|
|
127584
|
+
| "CREATE_FAILED"
|
|
127585
|
+
| "CREATING"
|
|
127586
|
+
| "DELETED"
|
|
127587
|
+
| "DELETE_FAILED"
|
|
127588
|
+
| "DELETING"
|
|
127589
|
+
| "UPDATED"
|
|
127590
|
+
| "UPDATE_FAILED"
|
|
127591
|
+
| "UPDATING";
|
|
127592
|
+
|
|
127277
127593
|
export type ModelCard_RiskRating = "High" | "Low" | "Medium" | "Unknown";
|
|
127278
127594
|
|
|
127279
127595
|
export type ModelManifest_ManifestStatus = "ACTIVE" | "DRAFT";
|
|
@@ -127348,6 +127664,14 @@ export type NetworkAnalyzerConfiguration_LogLevel = "DISABLED" | "ERROR" | "INFO
|
|
|
127348
127664
|
|
|
127349
127665
|
export type NetworkAnalyzerConfiguration_WirelessDeviceFrameInfo = "DISABLED" | "ENABLED";
|
|
127350
127666
|
|
|
127667
|
+
export type NetworkConnector_State =
|
|
127668
|
+
| "ACTIVE"
|
|
127669
|
+
| "DELETE_FAILED"
|
|
127670
|
+
| "DELETING"
|
|
127671
|
+
| "FAILED"
|
|
127672
|
+
| "INACTIVE"
|
|
127673
|
+
| "PENDING";
|
|
127674
|
+
|
|
127351
127675
|
export type NetworkFirewallRuleGroup_GeneratedRulesType =
|
|
127352
127676
|
| "ALERTLIST"
|
|
127353
127677
|
| "ALLOWLIST"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.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",
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
"typescript": "^5.9.3"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
|
-
"@intentius/chant": "^0.
|
|
73
|
+
"@intentius/chant": "^0.13.0"
|
|
74
74
|
}
|
|
75
75
|
}
|