@intentius/chant-lexicon-aws 0.12.0 → 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 +224 -4
- 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 +224 -4
package/src/generated/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/src/generated/index.ts
CHANGED
|
@@ -624,7 +624,7 @@ export const GuardDutyMember = createResource("AWS::GuardDuty::Member", "aws", {
|
|
|
624
624
|
export const GuardHook = createResource("AWS::CloudFormation::GuardHook", "aws", {"HookArn":"HookArn"});
|
|
625
625
|
export const Guardrail = createResource("AWS::Bedrock::Guardrail", "aws", {"CreatedAt":"CreatedAt","FailureRecommendations":"FailureRecommendations","GuardrailArn":"GuardrailArn","GuardrailId":"GuardrailId","Status":"Status","StatusReasons":"StatusReasons","UpdatedAt":"UpdatedAt","Version":"Version"});
|
|
626
626
|
export const GuardrailVersion = createResource("AWS::Bedrock::GuardrailVersion", "aws", {"GuardrailArn":"GuardrailArn","GuardrailId":"GuardrailId","Version":"Version"});
|
|
627
|
-
export const Harness = createResource("AWS::BedrockAgentCore::Harness", "aws", {"Arn":"Arn","HarnessId":"HarnessId","Status":"Status","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","Environment_AgentCoreRuntimeEnvironment_AgentRuntimeArn":"Environment.AgentCoreRuntimeEnvironment.AgentRuntimeArn","Environment_AgentCoreRuntimeEnvironment_AgentRuntimeName":"Environment.AgentCoreRuntimeEnvironment.AgentRuntimeName","Environment_AgentCoreRuntimeEnvironment_AgentRuntimeId":"Environment.AgentCoreRuntimeEnvironment.AgentRuntimeId"});
|
|
627
|
+
export const Harness = createResource("AWS::BedrockAgentCore::Harness", "aws", {"Arn":"Arn","HarnessId":"HarnessId","Status":"Status","Version":"Version","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","Memory_ManagedMemoryConfiguration_Arn":"Memory.ManagedMemoryConfiguration.Arn","Environment_AgentCoreRuntimeEnvironment_AgentRuntimeArn":"Environment.AgentCoreRuntimeEnvironment.AgentRuntimeArn","Environment_AgentCoreRuntimeEnvironment_AgentRuntimeName":"Environment.AgentCoreRuntimeEnvironment.AgentRuntimeName","Environment_AgentCoreRuntimeEnvironment_AgentRuntimeId":"Environment.AgentCoreRuntimeEnvironment.AgentRuntimeId"});
|
|
628
628
|
export const HealthCheck = createResource("AWS::Route53::HealthCheck", "aws", {"HealthCheckId":"HealthCheckId"});
|
|
629
629
|
export const HealthImagingDatastore = createResource("AWS::HealthImaging::Datastore", "aws", {"DatastoreArn":"DatastoreArn","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","DatastoreId":"DatastoreId","DatastoreStatus":"DatastoreStatus"});
|
|
630
630
|
export const HookDefaultVersion = createResource("AWS::CloudFormation::HookDefaultVersion", "aws", {"Arn":"Arn"});
|
|
@@ -888,6 +888,7 @@ export const MetricFilter = createResource("AWS::Logs::MetricFilter", "aws", {})
|
|
|
888
888
|
export const MetricStream = createResource("AWS::CloudWatch::MetricStream", "aws", {"Arn":"Arn","CreationDate":"CreationDate","LastUpdateDate":"LastUpdateDate","State":"State"});
|
|
889
889
|
export const MicrosoftAD = createResource("AWS::DirectoryService::MicrosoftAD", "aws", {"Alias":"Alias","DnsIpAddresses":"DnsIpAddresses","Id":"Id"});
|
|
890
890
|
export const MicrosoftTeamsChannelConfiguration = createResource("AWS::Chatbot::MicrosoftTeamsChannelConfiguration", "aws", {"Arn":"Arn"});
|
|
891
|
+
export const MicrovmImage = createResource("AWS::Lambda::MicrovmImage", "aws", {"ImageArn":"ImageArn","State":"State","LatestActiveImageVersion":"LatestActiveImageVersion","LatestFailedImageVersion":"LatestFailedImageVersion","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt"});
|
|
891
892
|
export const MigrationProject = createResource("AWS::DMS::MigrationProject", "aws", {"MigrationProjectArn":"MigrationProjectArn"});
|
|
892
893
|
export const MissionProfile = createResource("AWS::GroundStation::MissionProfile", "aws", {"Id":"Id","Arn":"Arn","Region":"Region"});
|
|
893
894
|
export const MitigationAction = createResource("AWS::IoT::MitigationAction", "aws", {"MitigationActionArn":"MitigationActionArn","MitigationActionId":"MitigationActionId"});
|
|
@@ -932,6 +933,7 @@ export const Network = createResource("AWS::MediaLive::Network", "aws", {"Arn":"
|
|
|
932
933
|
export const NetworkAcl = createResource("AWS::EC2::NetworkAcl", "aws", {"Id":"Id"});
|
|
933
934
|
export const NetworkAclEntry = createResource("AWS::EC2::NetworkAclEntry", "aws", {"Id":"Id"});
|
|
934
935
|
export const NetworkAnalyzerConfiguration = createResource("AWS::IoTWireless::NetworkAnalyzerConfiguration", "aws", {"Arn":"Arn"});
|
|
936
|
+
export const NetworkConnector = createResource("AWS::Lambda::NetworkConnector", "aws", {"Arn":"Arn","State":"State"});
|
|
935
937
|
export const NetworkFirewallLoggingConfiguration = createResource("AWS::NetworkFirewall::LoggingConfiguration", "aws", {});
|
|
936
938
|
export const NetworkFirewallRuleGroup = createResource("AWS::NetworkFirewall::RuleGroup", "aws", {"RuleGroupArn":"RuleGroupArn","RuleGroupId":"RuleGroupId"});
|
|
937
939
|
export const NetworkInsightsAccessScope = createResource("AWS::EC2::NetworkInsightsAccessScope", "aws", {"NetworkInsightsAccessScopeId":"NetworkInsightsAccessScopeId","NetworkInsightsAccessScopeArn":"NetworkInsightsAccessScopeArn","CreatedDate":"CreatedDate","UpdatedDate":"UpdatedDate"});
|
|
@@ -2927,6 +2929,7 @@ export const CloudVmCluster_Tag = createProperty("AWS::ODB::CloudVmCluster.Tag",
|
|
|
2927
2929
|
export const CloudwatchAlarmAction = createProperty("AWS::IoT::TopicRule.CloudwatchAlarmAction", "aws");
|
|
2928
2930
|
export const CloudWatchEncryption = createProperty("AWS::Glue::SecurityConfiguration.CloudWatchEncryption", "aws");
|
|
2929
2931
|
export const CloudWatchLog = createProperty("AWS::SecurityAgent::Pentest.CloudWatchLog", "aws");
|
|
2932
|
+
export const CloudWatchLogging = createProperty("AWS::Lambda::MicrovmImage.CloudWatchLogging", "aws");
|
|
2930
2933
|
export const CloudWatchLoggingOption = createProperty("AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption.CloudWatchLoggingOption", "aws");
|
|
2931
2934
|
export const CloudWatchLoggingOptions = createProperty("AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions", "aws");
|
|
2932
2935
|
export const CloudwatchLogOptionsSpecification = createProperty("AWS::EC2::VPNConnection.CloudwatchLogOptionsSpecification", "aws");
|
|
@@ -2954,6 +2957,7 @@ export const ClusterSecurityGroup_Tag = createProperty("AWS::Redshift::ClusterSe
|
|
|
2954
2957
|
export const ClusterSettings = createProperty("AWS::ECS::Cluster.ClusterSettings", "aws");
|
|
2955
2958
|
export const ClusterSubnetGroup_Tag = createProperty("AWS::Redshift::ClusterSubnetGroup.Tag", "aws");
|
|
2956
2959
|
export const Code = createProperty("AWS::Lambda::Function.Code", "aws");
|
|
2960
|
+
export const CodeArtifact = createProperty("AWS::Lambda::MicrovmImage.CodeArtifact", "aws");
|
|
2957
2961
|
export const CodeArtifactDomain_Tag = createProperty("AWS::CodeArtifact::Domain.Tag", "aws");
|
|
2958
2962
|
export const CodeArtifactRepository_Tag = createProperty("AWS::CodeArtifact::Repository.Tag", "aws");
|
|
2959
2963
|
export const CodeBasedEvaluatorConfig = createProperty("AWS::BedrockAgentCore::Evaluator.CodeBasedEvaluatorConfig", "aws");
|
|
@@ -3440,6 +3444,7 @@ export const CostTypes = createProperty("AWS::Budgets::Budget.CostTypes", "aws")
|
|
|
3440
3444
|
export const CountryRule = createProperty("AWS::SMSVOICE::ProtectConfiguration.CountryRule", "aws");
|
|
3441
3445
|
export const CountryRuleSet = createProperty("AWS::SMSVOICE::ProtectConfiguration.CountryRuleSet", "aws");
|
|
3442
3446
|
export const CoverageTime = createProperty("AWS::SSMContacts::Rotation.CoverageTime", "aws");
|
|
3447
|
+
export const CpuConfiguration = createProperty("AWS::Lambda::MicrovmImage.CpuConfiguration", "aws");
|
|
3443
3448
|
export const CpuOptions = createProperty("AWS::EC2::LaunchTemplate.CpuOptions", "aws");
|
|
3444
3449
|
export const Crawler_CatalogTarget = createProperty("AWS::Glue::Crawler.CatalogTarget", "aws");
|
|
3445
3450
|
export const Crawler_DeltaTarget = createProperty("AWS::Glue::Crawler.DeltaTarget", "aws");
|
|
@@ -5343,11 +5348,13 @@ export const Harness_HarnessEnvironmentProvider = createProperty("AWS::BedrockAg
|
|
|
5343
5348
|
export const Harness_HarnessGeminiModelConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessGeminiModelConfig", "aws");
|
|
5344
5349
|
export const Harness_HarnessInlineFunctionConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessInlineFunctionConfig", "aws");
|
|
5345
5350
|
export const Harness_HarnessLiteLlmModelConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessLiteLlmModelConfig", "aws");
|
|
5351
|
+
export const Harness_HarnessManagedMemoryConfiguration = createProperty("AWS::BedrockAgentCore::Harness.HarnessManagedMemoryConfiguration", "aws");
|
|
5346
5352
|
export const Harness_HarnessMemoryConfiguration = createProperty("AWS::BedrockAgentCore::Harness.HarnessMemoryConfiguration", "aws");
|
|
5347
5353
|
export const Harness_HarnessModelConfiguration = createProperty("AWS::BedrockAgentCore::Harness.HarnessModelConfiguration", "aws");
|
|
5348
5354
|
export const Harness_HarnessOpenAiModelConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessOpenAiModelConfig", "aws");
|
|
5349
5355
|
export const Harness_HarnessRemoteMcpConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessRemoteMcpConfig", "aws");
|
|
5350
5356
|
export const Harness_HarnessSkill = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkill", "aws");
|
|
5357
|
+
export const Harness_HarnessSkillAwsSkillsSource = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillAwsSkillsSource", "aws");
|
|
5351
5358
|
export const Harness_HarnessSkillGitAuth = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillGitAuth", "aws");
|
|
5352
5359
|
export const Harness_HarnessSkillGitSource = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillGitSource", "aws");
|
|
5353
5360
|
export const Harness_HarnessSkillS3Source = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillS3Source", "aws");
|
|
@@ -5374,11 +5381,13 @@ export const HarnessEnvironmentProvider = createProperty("AWS::BedrockAgentCore:
|
|
|
5374
5381
|
export const HarnessGeminiModelConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessGeminiModelConfig", "aws");
|
|
5375
5382
|
export const HarnessInlineFunctionConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessInlineFunctionConfig", "aws");
|
|
5376
5383
|
export const HarnessLiteLlmModelConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessLiteLlmModelConfig", "aws");
|
|
5384
|
+
export const HarnessManagedMemoryConfiguration = createProperty("AWS::BedrockAgentCore::Harness.HarnessManagedMemoryConfiguration", "aws");
|
|
5377
5385
|
export const HarnessMemoryConfiguration = createProperty("AWS::BedrockAgentCore::Harness.HarnessMemoryConfiguration", "aws");
|
|
5378
5386
|
export const HarnessModelConfiguration = createProperty("AWS::BedrockAgentCore::Harness.HarnessModelConfiguration", "aws");
|
|
5379
5387
|
export const HarnessOpenAiModelConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessOpenAiModelConfig", "aws");
|
|
5380
5388
|
export const HarnessRemoteMcpConfig = createProperty("AWS::BedrockAgentCore::Harness.HarnessRemoteMcpConfig", "aws");
|
|
5381
5389
|
export const HarnessSkill = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkill", "aws");
|
|
5390
|
+
export const HarnessSkillAwsSkillsSource = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillAwsSkillsSource", "aws");
|
|
5382
5391
|
export const HarnessSkillGitAuth = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillGitAuth", "aws");
|
|
5383
5392
|
export const HarnessSkillGitSource = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillGitSource", "aws");
|
|
5384
5393
|
export const HarnessSkillS3Source = createProperty("AWS::BedrockAgentCore::Harness.HarnessSkillS3Source", "aws");
|
|
@@ -5405,6 +5414,7 @@ export const HlsIngest = createProperty("AWS::MediaPackage::Channel.HlsIngest",
|
|
|
5405
5414
|
export const HlsManifestConfiguration = createProperty("AWS::MediaPackageV2::OriginEndpoint.HlsManifestConfiguration", "aws");
|
|
5406
5415
|
export const HlsPlaylistSettings = createProperty("AWS::MediaTailor::Channel.HlsPlaylistSettings", "aws");
|
|
5407
5416
|
export const HomeDirectoryMapEntry = createProperty("AWS::Transfer::User.HomeDirectoryMapEntry", "aws");
|
|
5417
|
+
export const Hooks = createProperty("AWS::Lambda::MicrovmImage.Hooks", "aws");
|
|
5408
5418
|
export const HookTimeoutConfig = createProperty("AWS::ECS::Service.HookTimeoutConfig", "aws");
|
|
5409
5419
|
export const HookVersion_LoggingConfig = createProperty("AWS::CloudFormation::HookVersion.LoggingConfig", "aws");
|
|
5410
5420
|
export const HopDestination = createProperty("AWS::MediaConvert::JobTemplate.HopDestination", "aws");
|
|
@@ -6037,6 +6047,7 @@ export const JWTConfiguration = createProperty("AWS::ApiGatewayV2::Authorizer.JW
|
|
|
6037
6047
|
export const JWTOptions = createProperty("AWS::OpenSearchService::Domain.JWTOptions", "aws");
|
|
6038
6048
|
export const KafkaAction = createProperty("AWS::IoT::TopicRule.KafkaAction", "aws");
|
|
6039
6049
|
export const KafkaClusterClientVpcConfig = createProperty("AWS::MSK::Replicator.KafkaClusterClientVpcConfig", "aws");
|
|
6050
|
+
export const KafkaClusterMtlsAuthentication = createProperty("AWS::MSK::Replicator.KafkaClusterMtlsAuthentication", "aws");
|
|
6040
6051
|
export const KafkaClusterSaslScramAuthentication = createProperty("AWS::MSK::Replicator.KafkaClusterSaslScramAuthentication", "aws");
|
|
6041
6052
|
export const KafkaConnectConnector_ApacheKafkaCluster = createProperty("AWS::KafkaConnect::Connector.ApacheKafkaCluster", "aws");
|
|
6042
6053
|
export const KafkaConnectConnector_AutoScaling = createProperty("AWS::KafkaConnect::Connector.AutoScaling", "aws");
|
|
@@ -6888,6 +6899,18 @@ export const MicrosoftAD_VpcSettings = createProperty("AWS::DirectoryService::Mi
|
|
|
6888
6899
|
export const MicrosoftOauth2ProviderConfigInput = createProperty("AWS::BedrockAgentCore::OAuth2CredentialProvider.MicrosoftOauth2ProviderConfigInput", "aws");
|
|
6889
6900
|
export const MicrosoftSqlServerSettings = createProperty("AWS::DMS::Endpoint.MicrosoftSqlServerSettings", "aws");
|
|
6890
6901
|
export const MicrosoftTeamsChannelConfiguration_Tag = createProperty("AWS::Chatbot::MicrosoftTeamsChannelConfiguration.Tag", "aws");
|
|
6902
|
+
export const MicrovmHooks = createProperty("AWS::Lambda::MicrovmImage.MicrovmHooks", "aws");
|
|
6903
|
+
export const MicrovmImage_CloudWatchLogging = createProperty("AWS::Lambda::MicrovmImage.CloudWatchLogging", "aws");
|
|
6904
|
+
export const MicrovmImage_CodeArtifact = createProperty("AWS::Lambda::MicrovmImage.CodeArtifact", "aws");
|
|
6905
|
+
export const MicrovmImage_CpuConfiguration = createProperty("AWS::Lambda::MicrovmImage.CpuConfiguration", "aws");
|
|
6906
|
+
export const MicrovmImage_EnvironmentVariable = createProperty("AWS::Lambda::MicrovmImage.EnvironmentVariable", "aws");
|
|
6907
|
+
export const MicrovmImage_Hooks = createProperty("AWS::Lambda::MicrovmImage.Hooks", "aws");
|
|
6908
|
+
export const MicrovmImage_Logging = createProperty("AWS::Lambda::MicrovmImage.Logging", "aws");
|
|
6909
|
+
export const MicrovmImage_MicrovmHooks = createProperty("AWS::Lambda::MicrovmImage.MicrovmHooks", "aws");
|
|
6910
|
+
export const MicrovmImage_MicrovmImageHooks = createProperty("AWS::Lambda::MicrovmImage.MicrovmImageHooks", "aws");
|
|
6911
|
+
export const MicrovmImage_Resources = createProperty("AWS::Lambda::MicrovmImage.Resources", "aws");
|
|
6912
|
+
export const MicrovmImage_Tag = createProperty("AWS::Lambda::MicrovmImage.Tag", "aws");
|
|
6913
|
+
export const MicrovmImageHooks = createProperty("AWS::Lambda::MicrovmImage.MicrovmImageHooks", "aws");
|
|
6891
6914
|
export const MigrationProject_DataProviderDescriptor = createProperty("AWS::DMS::MigrationProject.DataProviderDescriptor", "aws");
|
|
6892
6915
|
export const MigrationProject_Tag = createProperty("AWS::DMS::MigrationProject.Tag", "aws");
|
|
6893
6916
|
export const MinimumHealthyHosts = createProperty("AWS::CodeDeploy::DeploymentConfig.MinimumHealthyHosts", "aws");
|
|
@@ -7175,6 +7198,9 @@ export const NetworkAclEntry_Icmp = createProperty("AWS::EC2::NetworkAclEntry.Ic
|
|
|
7175
7198
|
export const NetworkAclEntry_PortRange = createProperty("AWS::EC2::NetworkAclEntry.PortRange", "aws");
|
|
7176
7199
|
export const NetworkAnalyzerConfiguration_Tag = createProperty("AWS::IoTWireless::NetworkAnalyzerConfiguration.Tag", "aws");
|
|
7177
7200
|
export const NetworkBandwidthGbps = createProperty("AWS::EC2::LaunchTemplate.NetworkBandwidthGbps", "aws");
|
|
7201
|
+
export const NetworkConnector_Config = createProperty("AWS::Lambda::NetworkConnector.Config", "aws");
|
|
7202
|
+
export const NetworkConnector_Tag = createProperty("AWS::Lambda::NetworkConnector.Tag", "aws");
|
|
7203
|
+
export const NetworkConnector_VpcEgressConfiguration = createProperty("AWS::Lambda::NetworkConnector.VpcEgressConfiguration", "aws");
|
|
7178
7204
|
export const NetworkFabricConfiguration = createProperty("AWS::ManagedBlockchain::Member.NetworkFabricConfiguration", "aws");
|
|
7179
7205
|
export const NetworkFirewallLoggingConfiguration_LogDestinationConfig = createProperty("AWS::NetworkFirewall::LoggingConfiguration.LogDestinationConfig", "aws");
|
|
7180
7206
|
export const NetworkFirewallLoggingConfiguration_LoggingConfiguration = createProperty("AWS::NetworkFirewall::LoggingConfiguration.LoggingConfiguration", "aws");
|
|
@@ -8412,6 +8438,7 @@ export const Replicator_KafkaCluster = createProperty("AWS::MSK::Replicator.Kafk
|
|
|
8412
8438
|
export const Replicator_KafkaClusterClientAuthentication = createProperty("AWS::MSK::Replicator.KafkaClusterClientAuthentication", "aws");
|
|
8413
8439
|
export const Replicator_KafkaClusterClientVpcConfig = createProperty("AWS::MSK::Replicator.KafkaClusterClientVpcConfig", "aws");
|
|
8414
8440
|
export const Replicator_KafkaClusterEncryptionInTransit = createProperty("AWS::MSK::Replicator.KafkaClusterEncryptionInTransit", "aws");
|
|
8441
|
+
export const Replicator_KafkaClusterMtlsAuthentication = createProperty("AWS::MSK::Replicator.KafkaClusterMtlsAuthentication", "aws");
|
|
8415
8442
|
export const Replicator_KafkaClusterSaslScramAuthentication = createProperty("AWS::MSK::Replicator.KafkaClusterSaslScramAuthentication", "aws");
|
|
8416
8443
|
export const Replicator_LogDelivery = createProperty("AWS::MSK::Replicator.LogDelivery", "aws");
|
|
8417
8444
|
export const Replicator_ReplicationInfo = createProperty("AWS::MSK::Replicator.ReplicationInfo", "aws");
|
|
@@ -8516,6 +8543,7 @@ export const ResourceMapping = createProperty("AWS::ResilienceHub::App.ResourceM
|
|
|
8516
8543
|
export const ResourceParameters = createProperty("AWS::Events::Connection.ResourceParameters", "aws");
|
|
8517
8544
|
export const ResourceQuery = createProperty("AWS::ResourceGroups::Group.ResourceQuery", "aws");
|
|
8518
8545
|
export const ResourceRetentionPolicy = createProperty("AWS::Batch::JobDefinition.ResourceRetentionPolicy", "aws");
|
|
8546
|
+
export const Resources = createProperty("AWS::Lambda::MicrovmImage.Resources", "aws");
|
|
8519
8547
|
export const ResourceServerScopeType = createProperty("AWS::Cognito::UserPoolResourceServer.ResourceServerScopeType", "aws");
|
|
8520
8548
|
export const ResourceShare_ResourceShareConfiguration = createProperty("AWS::RAM::ResourceShare.ResourceShareConfiguration", "aws");
|
|
8521
8549
|
export const ResourceShare_Tag = createProperty("AWS::RAM::ResourceShare.Tag", "aws");
|
|
@@ -10169,6 +10197,7 @@ export const VpcConnectionProperties = createProperty("AWS::QuickSight::DataSour
|
|
|
10169
10197
|
export const VpcConnectivity = createProperty("AWS::MSK::Cluster.VpcConnectivity", "aws");
|
|
10170
10198
|
export const VpcConnector_Tag = createProperty("AWS::AppRunner::VpcConnector.Tag", "aws");
|
|
10171
10199
|
export const VpcDestinationProperties = createProperty("AWS::IoT::TopicRuleDestination.VpcDestinationProperties", "aws");
|
|
10200
|
+
export const VpcEgressConfiguration = createProperty("AWS::Lambda::NetworkConnector.VpcEgressConfiguration", "aws");
|
|
10172
10201
|
export const VPCEncryptionControl_ResourceExclusions = createProperty("AWS::EC2::VPCEncryptionControl.ResourceExclusions", "aws");
|
|
10173
10202
|
export const VPCEncryptionControl_Tag = createProperty("AWS::EC2::VPCEncryptionControl.Tag", "aws");
|
|
10174
10203
|
export const VPCEncryptionControl_VpcEncryptionControlExclusion = createProperty("AWS::EC2::VPCEncryptionControl.VpcEncryptionControlExclusion", "aws");
|