@intentius/chant-lexicon-aws 0.18.24 → 0.18.26

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.
@@ -15,13 +15,24 @@ const baseProps = {
15
15
  containerUri: "123456789012.dkr.ecr.us-east-1.amazonaws.com/support-agent:latest",
16
16
  };
17
17
 
18
+ // The endpoint is opt-in (#978) — it races the Runtime's async version-READY when
19
+ // created in the same apply. Tests that exercise the endpoint pass this variant.
20
+ const withEndpoint = { ...baseProps, provisionEndpoint: true };
21
+
18
22
  describe("AgentCoreAgent", () => {
19
- test("returns all 8 members", () => {
23
+ test("returns 7 members by default; the endpoint is opt-in (#978)", () => {
20
24
  const instance = AgentCoreAgent(baseProps);
21
25
  expect(Object.keys(instance.members)).toEqual([
22
- "role", "gatewayRole", "runtime", "endpoint", "memory",
26
+ "role", "gatewayRole", "runtime", "memory",
23
27
  "workloadIdentity", "gateway", "gatewayTarget",
24
28
  ]);
29
+ expect((instance as any).endpoint).toBeUndefined();
30
+ });
31
+
32
+ test("provisionEndpoint adds the endpoint as an 8th member", () => {
33
+ const instance = AgentCoreAgent(withEndpoint);
34
+ expect(Object.keys(instance.members)).toContain("endpoint");
35
+ expect(Object.keys(instance.members)).toHaveLength(8);
25
36
  });
26
37
 
27
38
  test("expandComposite produces correct logical names", () => {
@@ -29,12 +40,14 @@ describe("AgentCoreAgent", () => {
29
40
  expect(expanded.has("agentRole")).toBe(true);
30
41
  expect(expanded.has("agentGatewayRole")).toBe(true);
31
42
  expect(expanded.has("agentRuntime")).toBe(true);
32
- expect(expanded.has("agentEndpoint")).toBe(true);
43
+ expect(expanded.has("agentEndpoint")).toBe(false); // opt-in (#978)
33
44
  expect(expanded.has("agentMemory")).toBe(true);
34
45
  expect(expanded.has("agentWorkloadIdentity")).toBe(true);
35
46
  expect(expanded.has("agentGateway")).toBe(true);
36
47
  expect(expanded.has("agentGatewayTarget")).toBe(true);
37
- expect(expanded.size).toBe(8);
48
+ expect(expanded.size).toBe(7);
49
+ // With the endpoint opted in, it appears as agentEndpoint.
50
+ expect(expandComposite("agent", AgentCoreAgent(withEndpoint)).has("agentEndpoint")).toBe(true);
38
51
  });
39
52
 
40
53
  test("role and gatewayRole trust bedrock-agentcore.amazonaws.com", () => {
@@ -50,7 +63,7 @@ describe("AgentCoreAgent", () => {
50
63
  });
51
64
 
52
65
  test("kebab-case name is sanitized for Runtime/RuntimeEndpoint/Memory (no hyphens)", () => {
53
- const instance = AgentCoreAgent(baseProps);
66
+ const instance = AgentCoreAgent(withEndpoint);
54
67
  const runtimeProps = (instance.runtime as any).props;
55
68
  const endpointProps = (instance.endpoint as any).props;
56
69
  const memoryProps = (instance.memory as any).props;
@@ -182,8 +195,8 @@ describe("AgentCoreAgent", () => {
182
195
  );
183
196
  });
184
197
 
185
- test("RuntimeEndpoint references runtime.AgentRuntimeId", () => {
186
- const instance = AgentCoreAgent(baseProps);
198
+ test("RuntimeEndpoint references runtime.AgentRuntimeId (when opted in)", () => {
199
+ const instance = AgentCoreAgent(withEndpoint);
187
200
  const endpointProps = (instance.endpoint as any).props;
188
201
  expect(endpointProps.AgentRuntimeId).toBeInstanceOf(AttrRef);
189
202
  });
@@ -222,7 +235,7 @@ describe("AgentCoreAgent", () => {
222
235
 
223
236
  test("per-member defaults are applied (e.g. custom endpoint description)", () => {
224
237
  const instance = AgentCoreAgent({
225
- ...baseProps,
238
+ ...withEndpoint,
226
239
  defaults: { endpoint: { Description: "prod alias" } },
227
240
  });
228
241
  const endpointProps = (instance.endpoint as any).props;
@@ -230,7 +243,7 @@ describe("AgentCoreAgent", () => {
230
243
  });
231
244
 
232
245
  test("serializes to a valid CloudFormation template with the expected resource types", () => {
233
- const expanded = expandComposite("agent", AgentCoreAgent(baseProps));
246
+ const expanded = expandComposite("agent", AgentCoreAgent(withEndpoint));
234
247
  resolveAttrRefs(expanded);
235
248
  const output = awsSerializer.serialize(expanded);
236
249
  const template = JSON.parse(output);
@@ -96,6 +96,18 @@ export interface AgentCoreAgentProps {
96
96
  environmentVariables?: Record<string, string>;
97
97
  /** RuntimeEndpoint name — the alias a version-promotion capability would repoint (deferred, see #882). Default: "DEFAULT". */
98
98
  endpointName?: string;
99
+ /**
100
+ * Create the `RuntimeEndpoint` in this template. **Default: false.** A
101
+ * RuntimeEndpoint can only be created once the Runtime's agent *version* is
102
+ * READY, which is asynchronous and is NOT gated by the Runtime resource's own
103
+ * CloudFormation `CREATE_COMPLETE` — so creating the endpoint in the same apply
104
+ * as the Runtime races and fails on a real deploy ("Agent version 1 must be in
105
+ * READY status. Current status: CREATING", #978). Leave this off and create the
106
+ * endpoint out-of-band once the runtime is READY — which is what Bedrock
107
+ * AgentCore's own tooling (and Loom's app) does. Opt in only when you know the
108
+ * Runtime will already be READY (e.g. a version-promotion flow on an existing runtime).
109
+ */
110
+ provisionEndpoint?: boolean;
99
111
  /** Memory event retention, in days. CFN bounds: 3-365. Default: 30. */
100
112
  memoryEventExpiryDays?: number;
101
113
  /** Gateway authorizer. Mirrors the generated `BedrockAgentCoreGateway_AuthorizerType` CFN enum. Default: "AWS_IAM". */
@@ -122,7 +134,8 @@ export type AgentCoreAgentResult = {
122
134
  role: InstanceType<typeof Role>;
123
135
  gatewayRole: InstanceType<typeof Role>;
124
136
  runtime: InstanceType<typeof Runtime>;
125
- endpoint: InstanceType<typeof RuntimeEndpoint>;
137
+ /** Present only when `provisionEndpoint` is set — see that prop (#978). */
138
+ endpoint?: InstanceType<typeof RuntimeEndpoint>;
126
139
  memory: InstanceType<typeof Memory>;
127
140
  workloadIdentity: InstanceType<typeof WorkloadIdentity>;
128
141
  gateway: InstanceType<typeof BedrockAgentCoreGateway>;
@@ -228,10 +241,14 @@ export const AgentCoreAgent = Composite<AgentCoreAgentProps, AgentCoreAgentResul
228
241
  EnvironmentVariables: props.environmentVariables,
229
242
  }, defaults?.runtime));
230
243
 
231
- const endpoint = new RuntimeEndpoint(mergeDefaults({
232
- AgentRuntimeId: runtime.AgentRuntimeId,
233
- Name: toRuntimeIdentifier(props.endpointName ?? "DEFAULT"),
234
- }, defaults?.endpoint));
244
+ // Opt-in only (#978): the endpoint races the Runtime's async version-READY when
245
+ // created in the same apply. Off by default; create it out-of-band post-READY.
246
+ const endpoint = props.provisionEndpoint
247
+ ? new RuntimeEndpoint(mergeDefaults({
248
+ AgentRuntimeId: runtime.AgentRuntimeId,
249
+ Name: toRuntimeIdentifier(props.endpointName ?? "DEFAULT"),
250
+ }, defaults?.endpoint))
251
+ : undefined;
235
252
 
236
253
  const memory = new Memory(mergeDefaults({
237
254
  Name: `${runtimeName}Memory`.slice(0, 48),
@@ -264,5 +281,5 @@ export const AgentCoreAgent = Composite<AgentCoreAgentProps, AgentCoreAgentResul
264
281
  },
265
282
  }, defaults?.gatewayTarget));
266
283
 
267
- return { role, gatewayRole, runtime, endpoint, memory, workloadIdentity, gateway, gatewayTarget };
284
+ return { role, gatewayRole, runtime, ...(endpoint ? { endpoint } : {}), memory, workloadIdentity, gateway, gatewayTarget };
268
285
  }, "AgentCoreAgent");
@@ -419,6 +419,36 @@ export declare class ACMPCAPermission {
419
419
  }, attributes?: CFResourceAttributes);
420
420
  }
421
421
 
422
+ export declare class Action {
423
+ constructor(props: {
424
+ /** The name of the action. Must be unique to your account in an AWS Region. */
425
+ ActionName: string;
426
+ /** The action type. */
427
+ ActionType: string;
428
+ /** The source type, ID, and URI. */
429
+ Source: Action_ActionSource;
430
+ /** The Amazon Resource Name (ARN) of the action. */
431
+ Arn?: string;
432
+ /** When the action was created. */
433
+ CreationTime?: string;
434
+ /** The description of the action. */
435
+ Description?: string;
436
+ /** When the action was last modified. */
437
+ LastModifiedTime?: string;
438
+ /** Metadata properties of the tracking entity, trial, or trial component. */
439
+ MetadataProperties?: Action_MetadataProperties;
440
+ /** A list of properties to add to the action. */
441
+ Properties?: Record<string, unknown>;
442
+ /** The status of the action. */
443
+ Status?: "Completed" | "Failed" | "InProgress" | "Stopped" | "Stopping" | "Unknown";
444
+ /** A list of tags to apply to the action. */
445
+ Tags?: Action_Tag[];
446
+ }, attributes?: CFResourceAttributes);
447
+ readonly Arn: string;
448
+ readonly CreationTime: string;
449
+ readonly LastModifiedTime: string;
450
+ }
451
+
422
452
  export declare class ActionConnector {
423
453
  constructor(props: {
424
454
  ActionConnectorId: string;
@@ -7452,6 +7482,32 @@ export declare class ContainerRecipe {
7452
7482
  readonly LatestVersion_Patch: string;
7453
7483
  }
7454
7484
 
7485
+ export declare class Context {
7486
+ constructor(props: {
7487
+ /** The name of the context. Must be unique to your account in an AWS Region. */
7488
+ ContextName: string;
7489
+ /** The context type. */
7490
+ ContextType: string;
7491
+ /** The source type, ID, and URI. */
7492
+ Source: Record<string, unknown>;
7493
+ /** The Amazon Resource Name (ARN) of the context. */
7494
+ Arn?: string;
7495
+ /** When the context was created. */
7496
+ CreationTime?: string;
7497
+ /** The description of the context. */
7498
+ Description?: string;
7499
+ /** When the context was last modified. */
7500
+ LastModifiedTime?: string;
7501
+ /** A list of properties to add to the context. */
7502
+ Properties?: Record<string, unknown>;
7503
+ /** A list of tags to apply to the context. */
7504
+ Tags?: Record<string, unknown>[];
7505
+ }, attributes?: CFResourceAttributes);
7506
+ readonly Arn: string;
7507
+ readonly CreationTime: string;
7508
+ readonly LastModifiedTime: string;
7509
+ }
7510
+
7455
7511
  export declare class ContinuousDeploymentPolicy {
7456
7512
  constructor(props: {
7457
7513
  /** Contains the configuration for a continuous deployment policy. */
@@ -8659,30 +8715,30 @@ export declare class DataSyncAgent {
8659
8715
 
8660
8716
  export declare class DataTable {
8661
8717
  constructor(props: {
8718
+ /** The identifier of the Amazon Connect instance. */
8719
+ InstanceArn: string;
8720
+ /** The name of the Data Table */
8721
+ Name: string;
8722
+ /** The status of the Data Table */
8723
+ Status: "PUBLISHED";
8724
+ /** The time zone of the Data Table */
8725
+ TimeZone: string;
8726
+ /** The value lock level of the Data Table */
8727
+ ValueLockLevel: "ATTRIBUTE" | "DATA_TABLE" | "NONE" | "PRIMARY_VALUE" | "VALUE";
8662
8728
  /** The arn of the Data Table */
8663
8729
  Arn?: string;
8664
8730
  /** The creation time of the Data Table */
8665
8731
  CreatedTime?: number;
8666
8732
  /** The description of the Data Table. */
8667
8733
  Description?: string;
8668
- /** The identifier of the Amazon Connect instance. */
8669
- InstanceArn?: string;
8670
8734
  /** Last modified region. */
8671
8735
  LastModifiedRegion?: string;
8672
8736
  /** Last modified time. */
8673
8737
  LastModifiedTime?: number;
8674
8738
  /** The lock version of the Data Table */
8675
8739
  LockVersion?: Record<string, unknown>;
8676
- /** The name of the Data Table */
8677
- Name?: string;
8678
- /** The status of the Data Table */
8679
- Status?: "PUBLISHED";
8680
8740
  /** One or more tags. */
8681
8741
  Tags?: DataTable_Tag[];
8682
- /** The time zone of the Data Table */
8683
- TimeZone?: string;
8684
- /** The value lock level of the Data Table */
8685
- ValueLockLevel?: "ATTRIBUTE" | "DATA_TABLE" | "NONE" | "PRIMARY_VALUE" | "VALUE";
8686
8742
  }, attributes?: CFResourceAttributes);
8687
8743
  readonly Arn: string;
8688
8744
  readonly CreatedTime: number;
@@ -8693,17 +8749,17 @@ export declare class DataTable {
8693
8749
 
8694
8750
  export declare class DataTableAttribute {
8695
8751
  constructor(props: {
8752
+ DataTableArn: string;
8753
+ InstanceArn: string;
8754
+ Name: string;
8755
+ ValueType: "BOOLEAN" | "NUMBER" | "NUMBER_LIST" | "TEXT" | "TEXT_LIST";
8696
8756
  AttributeId?: string;
8697
- DataTableArn?: string;
8698
8757
  Description?: string;
8699
- InstanceArn?: string;
8700
8758
  LastModifiedRegion?: string;
8701
8759
  LastModifiedTime?: number;
8702
8760
  LockVersion?: Record<string, unknown>;
8703
- Name?: string;
8704
8761
  Primary?: boolean;
8705
8762
  Validation?: Record<string, unknown>;
8706
- ValueType?: "BOOLEAN" | "NUMBER" | "NUMBER_LIST" | "TEXT" | "TEXT_LIST";
8707
8763
  }, attributes?: CFResourceAttributes);
8708
8764
  readonly AttributeId: string;
8709
8765
  readonly LastModifiedRegion: string;
@@ -8713,9 +8769,9 @@ export declare class DataTableAttribute {
8713
8769
 
8714
8770
  export declare class DataTableRecord {
8715
8771
  constructor(props: {
8716
- DataTableArn?: string;
8717
- DataTableRecord?: Record<string, unknown>;
8718
- InstanceArn?: string;
8772
+ DataTableArn: string;
8773
+ DataTableRecord: Record<string, unknown>;
8774
+ InstanceArn: string;
8719
8775
  RecordId?: string;
8720
8776
  }, attributes?: CFResourceAttributes);
8721
8777
  readonly RecordId: string;
@@ -39051,6 +39107,39 @@ export declare class ACMPCACertificate_Validity {
39051
39107
  });
39052
39108
  }
39053
39109
 
39110
+ export declare class Action_ActionSource {
39111
+ constructor(props: {
39112
+ /** The URI of the source. */
39113
+ SourceUri: string;
39114
+ /** The ID of the source. */
39115
+ SourceId?: string;
39116
+ /** The type of the source. */
39117
+ SourceType?: string;
39118
+ });
39119
+ }
39120
+
39121
+ export declare class Action_MetadataProperties {
39122
+ constructor(props: {
39123
+ /** The commit ID. */
39124
+ CommitId?: string;
39125
+ /** The entity this entity was generated by. */
39126
+ GeneratedBy?: string;
39127
+ /** The project ID. */
39128
+ ProjectId?: string;
39129
+ /** The repository. */
39130
+ Repository?: string;
39131
+ });
39132
+ }
39133
+
39134
+ export declare class Action_Tag {
39135
+ constructor(props: {
39136
+ /** The tag key. */
39137
+ Key: string;
39138
+ /** The tag value. */
39139
+ Value: string;
39140
+ });
39141
+ }
39142
+
39054
39143
  export declare class ActionConfiguration {
39055
39144
  constructor(props: {
39056
39145
  Action: string;
@@ -39177,6 +39266,17 @@ export declare class Actions {
39177
39266
  });
39178
39267
  }
39179
39268
 
39269
+ export declare class ActionSource {
39270
+ constructor(props: {
39271
+ /** The URI of the source. */
39272
+ SourceUri: string;
39273
+ /** The ID of the source. */
39274
+ SourceId?: string;
39275
+ /** The type of the source. */
39276
+ SourceType?: string;
39277
+ });
39278
+ }
39279
+
39180
39280
  export declare class ActionThreshold {
39181
39281
  constructor(props: {
39182
39282
  Type: "ABSOLUTE_VALUE" | "PERCENTAGE";
@@ -52447,6 +52547,7 @@ export declare class CodeBuildProject_Environment {
52447
52547
  DockerServer?: CodeBuildProject_DockerServer;
52448
52548
  EnvironmentVariables?: CodeBuildProject_EnvironmentVariable[];
52449
52549
  Fleet?: CodeBuildProject_ProjectFleet;
52550
+ HostKernel?: string;
52450
52551
  ImagePullCredentialsType?: string;
52451
52552
  PrivilegedMode?: boolean;
52452
52553
  RegistryCredential?: CodeBuildProject_RegistryCredential;
@@ -53307,6 +53408,12 @@ export declare class Compaction {
53307
53408
  });
53308
53409
  }
53309
53410
 
53411
+ export declare class CompactionConfiguration {
53412
+ constructor(props: {
53413
+ IcebergConfiguration?: TableOptimizer_IcebergCompactionConfiguration;
53414
+ });
53415
+ }
53416
+
53310
53417
  export declare class ComparativeOrder {
53311
53418
  constructor(props: {
53312
53419
  SpecifedOrder?: string[];
@@ -62908,7 +63015,9 @@ export declare class DeploymentCircuitBreaker {
62908
63015
  Enable: boolean;
62909
63016
  /** Determines whether to configure Amazon ECS to roll back the service if a service deployment fails. If rollback is on, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. */
62910
63017
  Rollback: boolean;
63018
+ /** Specifies whether the deployment circuit breaker resets its failure count when a task reaches a healthy state. When set to ``true``, a task that reaches a healthy state resets the failure count to ``0``. When set to ``false``, Amazon ECS does not reset the failure count. The default is ``true``. */
62911
63019
  ResetOnHealthyTask?: boolean;
63020
+ /** The threshold configuration that controls when the deployment circuit breaker triggers. The ``type`` and ``value`` together determine how many task failures are tolerated before the circuit breaker activates. */
62912
63021
  ThresholdConfiguration?: EcsService_ThresholdConfiguration;
62913
63022
  });
62914
63023
  }
@@ -66284,7 +66393,9 @@ export declare class EcsService_DeploymentCircuitBreaker {
66284
66393
  Enable: boolean;
66285
66394
  /** Determines whether to configure Amazon ECS to roll back the service if a service deployment fails. If rollback is on, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. */
66286
66395
  Rollback: boolean;
66396
+ /** Specifies whether the deployment circuit breaker resets its failure count when a task reaches a healthy state. When set to ``true``, a task that reaches a healthy state resets the failure count to ``0``. When set to ``false``, Amazon ECS does not reset the failure count. The default is ``true``. */
66287
66397
  ResetOnHealthyTask?: boolean;
66398
+ /** The threshold configuration that controls when the deployment circuit breaker triggers. The ``type`` and ``value`` together determine how many task failures are tolerated before the circuit breaker activates. */
66288
66399
  ThresholdConfiguration?: EcsService_ThresholdConfiguration;
66289
66400
  });
66290
66401
  }
@@ -66737,7 +66848,9 @@ export declare class EcsService_Tag {
66737
66848
 
66738
66849
  export declare class EcsService_ThresholdConfiguration {
66739
66850
  constructor(props: {
66851
+ /** Determines how Amazon ECS uses ``value`` to calculate the failure threshold. For the percentage types (``BOUNDED_PERCENT`` and ``UNBOUNDED_PERCENT``), Amazon ECS multiplies ``value`` by the latest service desired count. For ``COUNT``, Amazon ECS uses ``value`` directly as the threshold. The default is ``BOUNDED_PERCENT``. */
66740
66852
  Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
66853
+ /** Specifies the integer that Amazon ECS uses to calculate the failure threshold. When ``type`` is ``COUNT``, this value is the failure threshold itself. When ``type`` is a percentage type, Amazon ECS multiplies this value by the latest service desired count to produce the failure threshold. The default is ``50``. */
66741
66854
  Value: number;
66742
66855
  });
66743
66856
  }
@@ -76585,6 +76698,14 @@ export declare class IbmDb2Settings {
76585
76698
  });
76586
76699
  }
76587
76700
 
76701
+ export declare class IcebergCompactionConfiguration {
76702
+ constructor(props: {
76703
+ DeleteFileThreshold?: number;
76704
+ MinInputFiles?: number;
76705
+ Strategy?: string;
76706
+ });
76707
+ }
76708
+
76588
76709
  export declare class IcebergConfiguration {
76589
76710
  constructor(props: {
76590
76711
  Location?: string;
@@ -116260,6 +116381,20 @@ export declare class TableInput {
116260
116381
  });
116261
116382
  }
116262
116383
 
116384
+ export declare class TableOptimizer_CompactionConfiguration {
116385
+ constructor(props: {
116386
+ IcebergConfiguration?: TableOptimizer_IcebergCompactionConfiguration;
116387
+ });
116388
+ }
116389
+
116390
+ export declare class TableOptimizer_IcebergCompactionConfiguration {
116391
+ constructor(props: {
116392
+ DeleteFileThreshold?: number;
116393
+ MinInputFiles?: number;
116394
+ Strategy?: string;
116395
+ });
116396
+ }
116397
+
116263
116398
  export declare class TableOptimizer_IcebergConfiguration {
116264
116399
  constructor(props: {
116265
116400
  Location?: string;
@@ -116291,6 +116426,7 @@ export declare class TableOptimizer_TableOptimizerConfiguration {
116291
116426
  constructor(props: {
116292
116427
  Enabled: boolean;
116293
116428
  RoleArn: string;
116429
+ CompactionConfiguration?: TableOptimizer_CompactionConfiguration;
116294
116430
  OrphanFileDeletionConfiguration?: TableOptimizer_OrphanFileDeletionConfiguration;
116295
116431
  RetentionConfiguration?: TableOptimizer_RetentionConfiguration;
116296
116432
  VpcConfiguration?: TableOptimizer_VpcConfiguration;
@@ -116307,6 +116443,7 @@ export declare class TableOptimizerConfiguration {
116307
116443
  constructor(props: {
116308
116444
  Enabled: boolean;
116309
116445
  RoleArn: string;
116446
+ CompactionConfiguration?: TableOptimizer_CompactionConfiguration;
116310
116447
  OrphanFileDeletionConfiguration?: TableOptimizer_OrphanFileDeletionConfiguration;
116311
116448
  RetentionConfiguration?: TableOptimizer_RetentionConfiguration;
116312
116449
  VpcConfiguration?: TableOptimizer_VpcConfiguration;
@@ -117964,7 +118101,9 @@ export declare class ThreatIntelSet_TagItem {
117964
118101
 
117965
118102
  export declare class ThresholdConfiguration {
117966
118103
  constructor(props: {
118104
+ /** Determines how Amazon ECS uses ``value`` to calculate the failure threshold. For the percentage types (``BOUNDED_PERCENT`` and ``UNBOUNDED_PERCENT``), Amazon ECS multiplies ``value`` by the latest service desired count. For ``COUNT``, Amazon ECS uses ``value`` directly as the threshold. The default is ``BOUNDED_PERCENT``. */
117967
118105
  Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
118106
+ /** Specifies the integer that Amazon ECS uses to calculate the failure threshold. When ``type`` is ``COUNT``, this value is the failure threshold itself. When ``type`` is a percentage type, Amazon ECS multiplies this value by the latest service desired count to produce the failure threshold. The default is ``50``. */
117968
118107
  Value: number;
117969
118108
  });
117970
118109
  }
@@ -25,6 +25,7 @@ export const AcmeEndpoint = createResource("AWS::CertificateManager::AcmeEndpoin
25
25
  export const AcmeExternalAccountBinding = createResource("AWS::CertificateManager::AcmeExternalAccountBinding", "aws", {"AcmeExternalAccountBindingArn":"AcmeExternalAccountBindingArn"});
26
26
  export const ACMPCACertificate = createResource("AWS::ACMPCA::Certificate", "aws", {"Arn":"Arn","Certificate":"Certificate"});
27
27
  export const ACMPCAPermission = createResource("AWS::ACMPCA::Permission", "aws", {});
28
+ export const Action = createResource("AWS::SageMaker::Action", "aws", {"Arn":"Arn","CreationTime":"CreationTime","LastModifiedTime":"LastModifiedTime"});
28
29
  export const ActionConnector = createResource("AWS::QuickSight::ActionConnector", "aws", {"Arn":"Arn","CreatedTime":"CreatedTime","EnabledActions":"EnabledActions","LastUpdatedTime":"LastUpdatedTime","Status":"Status"});
29
30
  export const Activity = createResource("AWS::StepFunctions::Activity", "aws", {"Arn":"Arn"});
30
31
  export const Addon = createResource("AWS::EKS::Addon", "aws", {"Arn":"Arn"});
@@ -317,6 +318,7 @@ export const ContactList = createResource("AWS::SES::ContactList", "aws", {});
317
318
  export const ContainerFleet = createResource("AWS::GameLift::ContainerFleet", "aws", {"CreationTime":"CreationTime","Status":"Status","FleetId":"FleetId","FleetArn":"FleetArn","DeploymentDetails":"DeploymentDetails","GameServerContainerGroupDefinitionArn":"GameServerContainerGroupDefinitionArn","PerInstanceContainerGroupDefinitionArn":"PerInstanceContainerGroupDefinitionArn","MaximumGameServerContainerGroupsPerInstance":"MaximumGameServerContainerGroupsPerInstance","Locations_Item_PlayerGatewayStatus":"Locations.*.PlayerGatewayStatus"});
318
319
  export const ContainerGroupDefinition = createResource("AWS::GameLift::ContainerGroupDefinition", "aws", {"ContainerGroupDefinitionArn":"ContainerGroupDefinitionArn","CreationTime":"CreationTime","VersionNumber":"VersionNumber","Status":"Status","StatusReason":"StatusReason"});
319
320
  export const ContainerRecipe = createResource("AWS::ImageBuilder::ContainerRecipe", "aws", {"Arn":"Arn","LatestVersion":"LatestVersion","LatestVersion_Arn":"LatestVersion.Arn","LatestVersion_Major":"LatestVersion.Major","LatestVersion_Minor":"LatestVersion.Minor","LatestVersion_Patch":"LatestVersion.Patch"});
321
+ export const Context = createResource("AWS::SageMaker::Context", "aws", {"Arn":"Arn","CreationTime":"CreationTime","LastModifiedTime":"LastModifiedTime"});
320
322
  export const ContinuousDeploymentPolicy = createResource("AWS::CloudFront::ContinuousDeploymentPolicy", "aws", {"Id":"Id","LastModifiedTime":"LastModifiedTime"});
321
323
  export const ControlPanel = createResource("AWS::Route53RecoveryControl::ControlPanel", "aws", {"ControlPanelArn":"ControlPanelArn","Status":"Status","RoutingControlCount":"RoutingControlCount","DefaultControlPanel":"DefaultControlPanel"});
322
324
  export const CoreDefinition = createResource("AWS::Greengrass::CoreDefinition", "aws", {"LatestVersionArn":"LatestVersionArn","Arn":"Arn","Id":"Id"});
@@ -1711,6 +1713,9 @@ export const ACMPCACertificate_Extensions = createProperty("AWS::ACMPCA::Certifi
1711
1713
  export const ACMPCACertificate_KeyUsage = createProperty("AWS::ACMPCA::Certificate.KeyUsage", "aws");
1712
1714
  export const ACMPCACertificate_Subject = createProperty("AWS::ACMPCA::Certificate.Subject", "aws");
1713
1715
  export const ACMPCACertificate_Validity = createProperty("AWS::ACMPCA::Certificate.Validity", "aws");
1716
+ export const Action_ActionSource = createProperty("AWS::SageMaker::Action.ActionSource", "aws");
1717
+ export const Action_MetadataProperties = createProperty("AWS::SageMaker::Action.MetadataProperties", "aws");
1718
+ export const Action_Tag = createProperty("AWS::SageMaker::Action.Tag", "aws");
1714
1719
  export const ActionConfiguration = createProperty("AWS::QBusiness::DataAccessor.ActionConfiguration", "aws");
1715
1720
  export const ActionConnector_AuthConfig = createProperty("AWS::QuickSight::ActionConnector.AuthConfig", "aws");
1716
1721
  export const ActionConnector_ResourcePermission = createProperty("AWS::QuickSight::ActionConnector.ResourcePermission", "aws");
@@ -1721,6 +1726,7 @@ export const ActionFilterConfiguration = createProperty("AWS::QBusiness::DataAcc
1721
1726
  export const ActionInvokeApi = createProperty("AWS::ApiGatewayV2::RoutingRule.ActionInvokeApi", "aws");
1722
1727
  export const ActionParams = createProperty("AWS::IoT::MitigationAction.ActionParams", "aws");
1723
1728
  export const Actions = createProperty("AWS::Connect::Rule.Actions", "aws");
1729
+ export const ActionSource = createProperty("AWS::SageMaker::Action.ActionSource", "aws");
1724
1730
  export const ActionThreshold = createProperty("AWS::Budgets::BudgetsAction.ActionThreshold", "aws");
1725
1731
  export const ActionTypeId = createProperty("AWS::CodePipeline::Pipeline.ActionTypeId", "aws");
1726
1732
  export const ActivatedRule = createProperty("AWS::WAF::WebACL.ActivatedRule", "aws");
@@ -3134,6 +3140,7 @@ export const CommunicationLimits = createProperty("AWS::ConnectCampaignsV2::Camp
3134
3140
  export const CommunicationLimitsConfig = createProperty("AWS::ConnectCampaignsV2::Campaign.CommunicationLimitsConfig", "aws");
3135
3141
  export const CommunicationTimeConfig = createProperty("AWS::ConnectCampaignsV2::Campaign.CommunicationTimeConfig", "aws");
3136
3142
  export const Compaction = createProperty("AWS::S3Tables::Table.Compaction", "aws");
3143
+ export const CompactionConfiguration = createProperty("AWS::Glue::TableOptimizer.CompactionConfiguration", "aws");
3137
3144
  export const ComparativeOrder = createProperty("AWS::QuickSight::Topic.ComparativeOrder", "aws");
3138
3145
  export const ComponentChild = createProperty("AWS::AmplifyUIBuilder::Component.ComponentChild", "aws");
3139
3146
  export const ComponentConfig = createProperty("AWS::APS::Scraper.ComponentConfig", "aws");
@@ -5557,6 +5564,7 @@ export const IAMUser_LoginProfile = createProperty("AWS::IAM::User.LoginProfile"
5557
5564
  export const IAMUser_Policy = createProperty("AWS::IAM::User.Policy", "aws");
5558
5565
  export const IAMUser_Tag = createProperty("AWS::IAM::User.Tag", "aws");
5559
5566
  export const IbmDb2Settings = createProperty("AWS::DMS::Endpoint.IbmDb2Settings", "aws");
5567
+ export const IcebergCompactionConfiguration = createProperty("AWS::Glue::TableOptimizer.IcebergCompactionConfiguration", "aws");
5560
5568
  export const IcebergConfiguration = createProperty("AWS::Glue::TableOptimizer.IcebergConfiguration", "aws");
5561
5569
  export const IcebergDestinationConfiguration = createProperty("AWS::KinesisFirehose::DeliveryStream.IcebergDestinationConfiguration", "aws");
5562
5570
  export const IcebergInput = createProperty("AWS::Glue::Table.IcebergInput", "aws");
@@ -9718,6 +9726,8 @@ export const TableBucket_UnreferencedFileRemoval = createProperty("AWS::S3Tables
9718
9726
  export const TableCreationConfiguration = createProperty("AWS::KinesisFirehose::DeliveryStream.TableCreationConfiguration", "aws");
9719
9727
  export const TableIdentifier = createProperty("AWS::Glue::Table.TableIdentifier", "aws");
9720
9728
  export const TableInput = createProperty("AWS::Glue::Table.TableInput", "aws");
9729
+ export const TableOptimizer_CompactionConfiguration = createProperty("AWS::Glue::TableOptimizer.CompactionConfiguration", "aws");
9730
+ export const TableOptimizer_IcebergCompactionConfiguration = createProperty("AWS::Glue::TableOptimizer.IcebergCompactionConfiguration", "aws");
9721
9731
  export const TableOptimizer_IcebergConfiguration = createProperty("AWS::Glue::TableOptimizer.IcebergConfiguration", "aws");
9722
9732
  export const TableOptimizer_IcebergRetentionConfiguration = createProperty("AWS::Glue::TableOptimizer.IcebergRetentionConfiguration", "aws");
9723
9733
  export const TableOptimizer_OrphanFileDeletionConfiguration = createProperty("AWS::Glue::TableOptimizer.OrphanFileDeletionConfiguration", "aws");