@intentius/chant-lexicon-aws 0.18.25 → 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.
@@ -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. */
@@ -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");
@@ -1887,6 +1887,63 @@
1887
1887
  "kind": "property",
1888
1888
  "lexicon": "aws"
1889
1889
  },
1890
+ "Action": {
1891
+ "resourceType": "AWS::SageMaker::Action",
1892
+ "kind": "resource",
1893
+ "lexicon": "aws",
1894
+ "attrs": {
1895
+ "Arn": "Arn",
1896
+ "CreationTime": "CreationTime",
1897
+ "LastModifiedTime": "LastModifiedTime"
1898
+ },
1899
+ "propertyConstraints": {
1900
+ "ActionName": {
1901
+ "pattern": "^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}$",
1902
+ "minLength": 1,
1903
+ "maxLength": 120
1904
+ },
1905
+ "ActionType": {
1906
+ "maxLength": 256
1907
+ },
1908
+ "Description": {
1909
+ "maxLength": 3072
1910
+ },
1911
+ "Status": {
1912
+ "enum": [
1913
+ "Unknown",
1914
+ "InProgress",
1915
+ "Completed",
1916
+ "Failed",
1917
+ "Stopping",
1918
+ "Stopped"
1919
+ ]
1920
+ },
1921
+ "Arn": {
1922
+ "pattern": "^arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:action/",
1923
+ "maxLength": 256
1924
+ },
1925
+ "CreationTime": {
1926
+ "format": "date-time"
1927
+ },
1928
+ "LastModifiedTime": {
1929
+ "format": "date-time"
1930
+ }
1931
+ },
1932
+ "createOnly": [
1933
+ "ActionName",
1934
+ "ActionType",
1935
+ "Source",
1936
+ "MetadataProperties"
1937
+ ],
1938
+ "primaryIdentifier": [
1939
+ "Arn"
1940
+ ],
1941
+ "tagging": {
1942
+ "taggable": true,
1943
+ "tagOnCreate": true,
1944
+ "tagUpdatable": true
1945
+ }
1946
+ },
1890
1947
  "ActionConfiguration": {
1891
1948
  "resourceType": "AWS::QBusiness::DataAccessor.ActionConfiguration",
1892
1949
  "kind": "property",
@@ -1990,6 +2047,11 @@
1990
2047
  "kind": "property",
1991
2048
  "lexicon": "aws"
1992
2049
  },
2050
+ "ActionSource": {
2051
+ "resourceType": "AWS::SageMaker::Action.ActionSource",
2052
+ "kind": "property",
2053
+ "lexicon": "aws"
2054
+ },
1993
2055
  "ActionThreshold": {
1994
2056
  "resourceType": "AWS::Budgets::BudgetsAction.ActionThreshold",
1995
2057
  "kind": "property",
@@ -2000,6 +2062,21 @@
2000
2062
  "kind": "property",
2001
2063
  "lexicon": "aws"
2002
2064
  },
2065
+ "Action_ActionSource": {
2066
+ "resourceType": "AWS::SageMaker::Action.ActionSource",
2067
+ "kind": "property",
2068
+ "lexicon": "aws"
2069
+ },
2070
+ "Action_MetadataProperties": {
2071
+ "resourceType": "AWS::SageMaker::Action.MetadataProperties",
2072
+ "kind": "property",
2073
+ "lexicon": "aws"
2074
+ },
2075
+ "Action_Tag": {
2076
+ "resourceType": "AWS::SageMaker::Action.Tag",
2077
+ "kind": "property",
2078
+ "lexicon": "aws"
2079
+ },
2003
2080
  "Actions": {
2004
2081
  "resourceType": "AWS::Connect::Rule.Actions",
2005
2082
  "kind": "property",
@@ -16798,6 +16875,11 @@
16798
16875
  "kind": "property",
16799
16876
  "lexicon": "aws"
16800
16877
  },
16878
+ "CompactionConfiguration": {
16879
+ "resourceType": "AWS::Glue::TableOptimizer.CompactionConfiguration",
16880
+ "kind": "property",
16881
+ "lexicon": "aws"
16882
+ },
16801
16883
  "ComparativeOrder": {
16802
16884
  "resourceType": "AWS::QuickSight::Topic.ComparativeOrder",
16803
16885
  "kind": "property",
@@ -20908,6 +20990,54 @@
20908
20990
  "kind": "property",
20909
20991
  "lexicon": "aws"
20910
20992
  },
20993
+ "Context": {
20994
+ "resourceType": "AWS::SageMaker::Context",
20995
+ "kind": "resource",
20996
+ "lexicon": "aws",
20997
+ "attrs": {
20998
+ "Arn": "Arn",
20999
+ "CreationTime": "CreationTime",
21000
+ "LastModifiedTime": "LastModifiedTime"
21001
+ },
21002
+ "propertyConstraints": {
21003
+ "Arn": {
21004
+ "pattern": "^arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:context/",
21005
+ "maxLength": 256
21006
+ },
21007
+ "ContextName": {
21008
+ "pattern": "^[a-zA-Z0-9]([-_]*[a-zA-Z0-9]){0,119}$",
21009
+ "minLength": 1,
21010
+ "maxLength": 120
21011
+ },
21012
+ "ContextType": {
21013
+ "minLength": 0,
21014
+ "maxLength": 256
21015
+ },
21016
+ "Description": {
21017
+ "minLength": 0,
21018
+ "maxLength": 3072
21019
+ },
21020
+ "CreationTime": {
21021
+ "format": "date-time"
21022
+ },
21023
+ "LastModifiedTime": {
21024
+ "format": "date-time"
21025
+ }
21026
+ },
21027
+ "createOnly": [
21028
+ "ContextName",
21029
+ "ContextType",
21030
+ "Source"
21031
+ ],
21032
+ "primaryIdentifier": [
21033
+ "Arn"
21034
+ ],
21035
+ "tagging": {
21036
+ "taggable": true,
21037
+ "tagOnCreate": true,
21038
+ "tagUpdatable": true
21039
+ }
21040
+ },
20911
21041
  "ContextEnrichmentConfiguration": {
20912
21042
  "resourceType": "AWS::Bedrock::DataSource.ContextEnrichmentConfiguration",
20913
21043
  "kind": "property",
@@ -46045,6 +46175,11 @@
46045
46175
  "kind": "property",
46046
46176
  "lexicon": "aws"
46047
46177
  },
46178
+ "IcebergCompactionConfiguration": {
46179
+ "resourceType": "AWS::Glue::TableOptimizer.IcebergCompactionConfiguration",
46180
+ "kind": "property",
46181
+ "lexicon": "aws"
46182
+ },
46048
46183
  "IcebergConfiguration": {
46049
46184
  "resourceType": "AWS::Glue::TableOptimizer.IcebergConfiguration",
46050
46185
  "kind": "property",
@@ -94469,6 +94604,16 @@
94469
94604
  "kind": "property",
94470
94605
  "lexicon": "aws"
94471
94606
  },
94607
+ "TableOptimizer_CompactionConfiguration": {
94608
+ "resourceType": "AWS::Glue::TableOptimizer.CompactionConfiguration",
94609
+ "kind": "property",
94610
+ "lexicon": "aws"
94611
+ },
94612
+ "TableOptimizer_IcebergCompactionConfiguration": {
94613
+ "resourceType": "AWS::Glue::TableOptimizer.IcebergCompactionConfiguration",
94614
+ "kind": "property",
94615
+ "lexicon": "aws"
94616
+ },
94472
94617
  "TableOptimizer_IcebergConfiguration": {
94473
94618
  "resourceType": "AWS::Glue::TableOptimizer.IcebergConfiguration",
94474
94619
  "kind": "property",