@intentius/chant-lexicon-aws 0.13.0 → 0.14.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.
@@ -322,6 +322,56 @@ export declare class AcmCertificate {
322
322
  readonly Id: string;
323
323
  }
324
324
 
325
+ export declare class AcmeDomainValidation {
326
+ constructor(props: {
327
+ /** The ARN of the ACME endpoint this domain validation is associated with. */
328
+ AcmeEndpointArn: string;
329
+ /** The domain name to validate. */
330
+ DomainName: string;
331
+ PrevalidationOptions: AcmeDomainValidation_PrevalidationOptions;
332
+ /** The Amazon Resource Name (ARN) of the domain validation. */
333
+ Arn?: string;
334
+ /** Tags associated with the domain validation. */
335
+ Tags?: Record<string, unknown>[];
336
+ }, attributes?: CFResourceAttributes);
337
+ readonly Arn: string;
338
+ }
339
+
340
+ export declare class AcmeEndpoint {
341
+ constructor(props: {
342
+ /** The authorization behavior for the ACME endpoint. */
343
+ AuthorizationBehavior: string;
344
+ CertificateAuthority: AcmeEndpoint_CertificateAuthority;
345
+ /** The Amazon Resource Name (ARN) of the ACME endpoint. */
346
+ AcmeEndpointArn?: string;
347
+ /** Tags applied to certificates issued via this endpoint. */
348
+ CertificateTags?: AcmeEndpoint_Tag[];
349
+ /** Whether contact information is required for the ACME endpoint. */
350
+ Contact?: string;
351
+ /** The ACME directory URL for the endpoint. */
352
+ EndpointUrl?: string;
353
+ /** Tags associated with the ACME endpoint. */
354
+ Tags?: Record<string, unknown>[];
355
+ }, attributes?: CFResourceAttributes);
356
+ readonly AcmeEndpointArn: string;
357
+ readonly EndpointUrl: string;
358
+ }
359
+
360
+ export declare class AcmeExternalAccountBinding {
361
+ constructor(props: {
362
+ /** The ARN of the ACME endpoint this binding is associated with. */
363
+ AcmeEndpointArn: string;
364
+ /** The IAM role ARN for cross-account access. */
365
+ RoleArn: string;
366
+ /** The Amazon Resource Name (ARN) of the external account binding. */
367
+ AcmeExternalAccountBindingArn?: string;
368
+ Expiration?: AcmeExternalAccountBinding_Expiration;
369
+ /** Tags associated with the external account binding. */
370
+ Tags?: Record<string, unknown>[];
371
+ }, attributes?: CFResourceAttributes);
372
+ readonly AcmeExternalAccountBindingArn: string;
373
+ }
374
+
325
375
  export declare class ACMPCACertificate {
326
376
  constructor(props: {
327
377
  /** The Amazon Resource Name (ARN) for the private CA issues the certificate. */
@@ -800,6 +850,27 @@ export declare class AlarmMuteRule {
800
850
  readonly Status: "ACTIVE" | "EXPIRED" | "SCHEDULED";
801
851
  }
802
852
 
853
+ export declare class Algorithm {
854
+ constructor(props: {
855
+ /** The name of the algorithm. */
856
+ AlgorithmName: string;
857
+ TrainingSpecification: Algorithm_TrainingSpecification;
858
+ /** The Amazon Resource Name (ARN) of the algorithm. */
859
+ AlgorithmArn?: string;
860
+ /** A description of the algorithm. */
861
+ AlgorithmDescription?: string;
862
+ /** Whether to certify the algorithm so that it can be listed in AWS Marketplace. */
863
+ CertifyForMarketplace?: boolean;
864
+ /** A timestamp specifying when the algorithm was created. */
865
+ CreationTime?: string;
866
+ InferenceSpecification?: Algorithm_InferenceSpecification;
867
+ /** An array of key-value pairs to apply to this resource. */
868
+ Tags?: Algorithm_Tag[];
869
+ }, attributes?: CFResourceAttributes);
870
+ readonly AlgorithmArn: string;
871
+ readonly CreationTime: string;
872
+ }
873
+
803
874
  export declare class AllowList {
804
875
  constructor(props: {
805
876
  /** AllowList criteria. */
@@ -1843,6 +1914,19 @@ export declare class AppInstanceBot {
1843
1914
  readonly LastUpdatedTimestamp: number;
1844
1915
  }
1845
1916
 
1917
+ export declare class AppInstanceUser {
1918
+ constructor(props: {
1919
+ AppInstanceArn: string;
1920
+ AppInstanceUserId: string;
1921
+ AppInstanceUserArn?: string;
1922
+ ExpirationSettings?: AppInstanceUser_ExpirationSettings;
1923
+ Metadata?: string;
1924
+ Name?: string;
1925
+ Tags?: AppInstanceUser_Tag[];
1926
+ }, attributes?: CFResourceAttributes);
1927
+ readonly AppInstanceUserArn: string;
1928
+ }
1929
+
1846
1930
  export declare class AppIntegrationsApplication {
1847
1931
  constructor(props: {
1848
1932
  /** Application source config */
@@ -2275,6 +2359,8 @@ export declare class AppStreamStack {
2275
2359
  constructor(props: {
2276
2360
  /** The list of virtual private cloud (VPC) interface endpoint objects. Users of the stack can connect to AppStream 2.0 only through the specified endpoints. */
2277
2361
  AccessEndpoints?: AppStreamStack_AccessEndpoint[];
2362
+ /** The configuration for agent access on the stack. If specified, agent access is enabled for the stack. */
2363
+ AgentAccessConfig?: AppStreamStack_AgentAccessConfig;
2278
2364
  /** The persistent application settings for users of the stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session. */
2279
2365
  ApplicationSettings?: AppStreamStack_ApplicationSettings;
2280
2366
  /** The stack attributes to delete. */
@@ -2476,6 +2562,29 @@ export declare class AppSyncGraphQLApi {
2476
2562
  readonly RealtimeUrl: string;
2477
2563
  }
2478
2564
 
2565
+ export declare class AppTestTestCase {
2566
+ constructor(props: {
2567
+ Name: string;
2568
+ Steps: AppTestTestCase_Step[];
2569
+ CreationTime?: string;
2570
+ Description?: string;
2571
+ LastUpdateTime?: string;
2572
+ LatestVersion?: AppTestTestCase_TestCaseLatestVersion;
2573
+ Status?: AppTestTestCase_TestCaseLifecycle;
2574
+ Tags?: Record<string, unknown>;
2575
+ TestCaseArn?: string;
2576
+ TestCaseId?: string;
2577
+ TestCaseVersion?: number;
2578
+ }, attributes?: CFResourceAttributes);
2579
+ readonly CreationTime: string;
2580
+ readonly LastUpdateTime: string;
2581
+ readonly LatestVersion: AppTestTestCase_TestCaseLatestVersion;
2582
+ readonly Status: AppTestTestCase_TestCaseLifecycle;
2583
+ readonly TestCaseArn: string;
2584
+ readonly TestCaseId: string;
2585
+ readonly TestCaseVersion: number;
2586
+ }
2587
+
2479
2588
  export declare class APSAnomalyDetector {
2480
2589
  constructor(props: {
2481
2590
  /** The AnomalyDetector alias. */
@@ -5598,6 +5707,8 @@ export declare class CodePipelinePipeline {
5598
5707
  RoleArn: string;
5599
5708
  /** Represents information about a stage and its definition. */
5600
5709
  Stages: CodePipelinePipeline_StageDeclaration[];
5710
+ /** The Amazon Resource Name (ARN) of the pipeline. */
5711
+ Arn?: string;
5601
5712
  /** The S3 bucket where artifacts for the pipeline are stored. */
5602
5713
  ArtifactStore?: CodePipelinePipeline_ArtifactStore;
5603
5714
  /** A mapping of artifactStore objects and their corresponding AWS Regions. There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline. */
@@ -5621,6 +5732,7 @@ export declare class CodePipelinePipeline {
5621
5732
  /** The version of the pipeline. */
5622
5733
  Version?: string;
5623
5734
  }, attributes?: CFResourceAttributes);
5735
+ readonly Arn: string;
5624
5736
  readonly Version: string;
5625
5737
  }
5626
5738
 
@@ -6787,6 +6899,36 @@ export declare class ConnectSecurityProfile {
6787
6899
  readonly SecurityProfileArn: string;
6788
6900
  }
6789
6901
 
6902
+ export declare class ConnectTestCase {
6903
+ constructor(props: {
6904
+ /** The content of the test case. */
6905
+ Content: string;
6906
+ /** The identifier of the Amazon Connect instance. */
6907
+ InstanceArn: string;
6908
+ /** The name of the test case. */
6909
+ Name: string;
6910
+ /** The description of the test case. */
6911
+ Description?: string;
6912
+ /** Entry point for Testcase. */
6913
+ EntryPoint?: ConnectTestCase_EntryPoint;
6914
+ /** The initialization data of the test case. */
6915
+ InitializationData?: string;
6916
+ /** Last modified region. */
6917
+ LastModifiedRegion?: string;
6918
+ /** Last modified time. */
6919
+ LastModifiedTime?: number;
6920
+ /** The status of the test case. */
6921
+ Status?: "PUBLISHED" | "SAVED";
6922
+ /** One or more tags. */
6923
+ Tags?: ConnectTestCase_Tag[];
6924
+ /** The identifier of the test case. */
6925
+ TestCaseArn?: string;
6926
+ }, attributes?: CFResourceAttributes);
6927
+ readonly LastModifiedRegion: string;
6928
+ readonly LastModifiedTime: number;
6929
+ readonly TestCaseArn: string;
6930
+ }
6931
+
6790
6932
  export declare class ConnectUser {
6791
6933
  constructor(props: {
6792
6934
  /** The identifier of the Amazon Connect instance. */
@@ -8044,11 +8186,10 @@ export declare class DataCatalog {
8044
8186
 
8045
8187
  export declare class DataCatalogEncryptionSettings {
8046
8188
  constructor(props: {
8189
+ /** The ID of the Data Catalog in which the settings are created. */
8047
8190
  CatalogId: string;
8048
8191
  DataCatalogEncryptionSettings: DataCatalogEncryptionSettings_DataCatalogEncryptionSettings;
8049
- Id?: string;
8050
8192
  }, attributes?: CFResourceAttributes);
8051
- readonly Id: string;
8052
8193
  }
8053
8194
 
8054
8195
  export declare class DataCellsFilter {
@@ -11821,6 +11962,7 @@ export declare class EcsService {
11821
11962
  /** A list of load balancer objects to associate with the service. If you specify the ``Role`` property, ``LoadBalancers`` must be specified as well. For information about the number of load balancers that you can specify per service, see [Service Load Balancing](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html) in the *Amazon Elastic Container Service Developer Guide*.
11822
11963
  To remove this property from your service resource, specify an empty ``LoadBalancer`` array. */
11823
11964
  LoadBalancers?: EcsService_LoadBalancer[];
11965
+ /** The optional monitoring configuration for the service, which defines the resolution for the service-level ``CPUUtilization`` and ``MemoryUtilization`` Amazon CloudWatch metrics. When not specified, Amazon ECS uses the default resolution of ``60`` seconds. */
11824
11966
  Monitoring?: EcsService_MonitoringConfiguration;
11825
11967
  Name?: string;
11826
11968
  /** The network configuration for the service. This parameter is required for task definitions that use the ``awsvpc`` network mode to receive their own elastic network interface, and it is not supported for other network modes. For more information, see [Task Networking](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html) in the *Amazon Elastic Container Service Developer Guide*. */
@@ -12140,6 +12282,7 @@ export declare class EKSCluster {
12140
12282
  OpenIdConnectIssuerUrl?: string;
12141
12283
  OutpostConfig?: EKSCluster_OutpostConfig;
12142
12284
  RemoteNetworkConfig?: EKSCluster_RemoteNetworkConfig;
12285
+ RollbackConfig?: EKSCluster_RollbackConfig;
12143
12286
  StorageConfig?: EKSCluster_StorageConfig;
12144
12287
  /** An array of key-value pairs to apply to this resource. */
12145
12288
  Tags?: EKSCluster_Tag[];
@@ -13552,16 +13695,12 @@ export declare class EvidentlySegment {
13552
13695
 
13553
13696
  export declare class EVSEnvironment {
13554
13697
  constructor(props: {
13555
- ConnectivityInfo: Record<string, unknown>;
13556
- /** The license information for an EVS environment */
13557
- LicenseInfo: Record<string, unknown>;
13558
13698
  ServiceAccessSubnetId: string;
13559
- SiteId: string;
13560
13699
  TermsAccepted: boolean;
13561
- VcfHostnames: Record<string, unknown>;
13562
- VcfVersion: "VCF-5.2.1" | "VCF-5.2.2";
13700
+ VcfVersion: "SELF_DEPLOYED" | "VCF-5.2.1" | "VCF-5.2.2";
13563
13701
  VpcId: string;
13564
13702
  Checks?: EVSEnvironment_Check[];
13703
+ ConnectivityInfo?: Record<string, unknown>;
13565
13704
  CreatedAt?: string;
13566
13705
  Credentials?: EVSEnvironment_Secret[];
13567
13706
  EnvironmentArn?: string;
@@ -13574,11 +13713,15 @@ export declare class EVSEnvironment {
13574
13713
  /** The initial Vlan configuration only required upon creation. Modification after creation will have no effect */
13575
13714
  InitialVlans?: Record<string, unknown>;
13576
13715
  KmsKeyId?: string;
13716
+ /** The license information for an EVS environment */
13717
+ LicenseInfo?: Record<string, unknown>;
13577
13718
  ModifiedAt?: string;
13578
13719
  ServiceAccessSecurityGroups?: Record<string, unknown>;
13720
+ SiteId?: string;
13579
13721
  StateDetails?: string;
13580
13722
  /** An array of key-value pairs to apply to this resource. */
13581
13723
  Tags?: EVSEnvironment_Tag[];
13724
+ VcfHostnames?: Record<string, unknown>;
13582
13725
  }, attributes?: CFResourceAttributes);
13583
13726
  readonly Checks: EVSEnvironment_Check[];
13584
13727
  readonly CreatedAt: string;
@@ -13655,23 +13798,24 @@ export declare class Export {
13655
13798
 
13656
13799
  export declare class ExpressGatewayService {
13657
13800
  constructor(props: {
13658
- ExecutionRoleArn: string;
13659
13801
  InfrastructureRoleArn: string;
13660
- PrimaryContainer: ExpressGatewayService_ExpressGatewayContainer;
13661
13802
  ActiveConfigurations?: ExpressGatewayService_ExpressGatewayServiceConfiguration[];
13662
13803
  Cluster?: string;
13663
13804
  Cpu?: string;
13664
13805
  CreatedAt?: string;
13665
13806
  ECSManagedResourceArns?: ExpressGatewayService_ECSManagedResourceArns;
13666
13807
  Endpoint?: string;
13808
+ ExecutionRoleArn?: string;
13667
13809
  HealthCheckPath?: string;
13668
13810
  Memory?: string;
13669
13811
  NetworkConfiguration?: ExpressGatewayService_ExpressGatewayServiceNetworkConfiguration;
13812
+ PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
13670
13813
  ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
13671
13814
  ServiceArn?: string;
13672
13815
  ServiceName?: string;
13673
13816
  Status?: ExpressGatewayService_ExpressGatewayServiceStatus;
13674
13817
  Tags?: ExpressGatewayService_Tag[];
13818
+ TaskDefinitionArn?: string;
13675
13819
  TaskRoleArn?: string;
13676
13820
  UpdatedAt?: string;
13677
13821
  }, attributes?: CFResourceAttributes);
@@ -14092,6 +14236,7 @@ export declare class FirewallRuleGroup {
14092
14236
  readonly CreationTime: string;
14093
14237
  readonly CreatorRequestId: string;
14094
14238
  readonly FirewallRules_Item_FirewallThreatProtectionId: string;
14239
+ readonly FirewallRules_Item_Status: string;
14095
14240
  readonly Id: string;
14096
14241
  readonly ModificationTime: string;
14097
14242
  readonly OwnerId: string;
@@ -16212,24 +16357,6 @@ export declare class HttpNamespace {
16212
16357
  readonly Id: string;
16213
16358
  }
16214
16359
 
16215
- export declare class Hub {
16216
- constructor(props: {
16217
- /** An ARN is automatically created for the customer. */
16218
- ARN?: string;
16219
- /** Whether to automatically enable new controls when they are added to standards that are enabled */
16220
- AutoEnableControls?: boolean;
16221
- /** This field, used when enabling Security Hub, specifies whether the calling account has consolidated control findings turned on. If the value for this field is set to SECURITY_CONTROL, Security Hub generates a single finding for a control check even when the check applies to multiple enabled standards. If the value for this field is set to STANDARD_CONTROL, Security Hub generates separate findings for a control check when the check applies to multiple enabled standards. */
16222
- ControlFindingGenerator?: string;
16223
- /** Whether to enable the security standards that Security Hub has designated as automatically enabled. */
16224
- EnableDefaultStandards?: boolean;
16225
- /** The date and time when Security Hub was enabled in the account. */
16226
- SubscribedAt?: string;
16227
- Tags?: Record<string, unknown>;
16228
- }, attributes?: CFResourceAttributes);
16229
- readonly ARN: string;
16230
- readonly SubscribedAt: string;
16231
- }
16232
-
16233
16360
  export declare class HubV2 {
16234
16361
  constructor(props: {
16235
16362
  /** The Amazon Resource Name of the Security Hub V2 resource. */
@@ -16747,6 +16874,8 @@ export declare class ImagePipeline {
16747
16874
  ImageRecipeArn?: string;
16748
16875
  /** Contains settings for vulnerability scans. */
16749
16876
  ImageScanningConfiguration?: ImagePipeline_ImageScanningConfiguration;
16877
+ /** The tags to be applied to images created by this pipeline. */
16878
+ ImageTags?: Record<string, unknown>;
16750
16879
  /** The image tests configuration of the image pipeline. */
16751
16880
  ImageTestsConfiguration?: ImagePipeline_ImageTestsConfiguration;
16752
16881
  /** The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline. */
@@ -17175,14 +17304,12 @@ export declare class InsightRule {
17175
17304
  constructor(props: {
17176
17305
  RuleBody: string;
17177
17306
  RuleName: string;
17178
- RuleState: string;
17307
+ RuleState: "DISABLED" | "ENABLED";
17179
17308
  ApplyOnTransformedLogs?: boolean;
17180
17309
  Arn?: string;
17181
- Id?: string;
17182
17310
  Tags?: InsightRule_Tag[];
17183
17311
  }, attributes?: CFResourceAttributes);
17184
17312
  readonly Arn: string;
17185
- readonly Id: string;
17186
17313
  }
17187
17314
 
17188
17315
  export declare class InspectorV2Filter {
@@ -19079,6 +19206,7 @@ export declare class LambdaCapacityProvider {
19079
19206
  InstanceRequirements?: LambdaCapacityProvider_InstanceRequirements;
19080
19207
  /** The ARN of the KMS key used to encrypt the capacity provider's resources. */
19081
19208
  KmsKeyArn?: string;
19209
+ /** Configuration for tag propagation to managed resources launched by the capacity provider. */
19082
19210
  PropagateTags?: LambdaCapacityProvider_PropagateTagsConfig;
19083
19211
  State?: LambdaCapacityProvider_CapacityProviderState;
19084
19212
  /** A key-value pair that provides metadata for the capacity provider. */
@@ -21059,6 +21187,18 @@ export declare class ManagedBlockchainMember {
21059
21187
  readonly MemberId: string;
21060
21188
  }
21061
21189
 
21190
+ export declare class ManagedBlockchainNode {
21191
+ constructor(props: {
21192
+ NetworkId: string;
21193
+ NodeConfiguration: ManagedBlockchainNode_NodeConfiguration;
21194
+ Arn?: string;
21195
+ MemberId?: string;
21196
+ NodeId?: string;
21197
+ }, attributes?: CFResourceAttributes);
21198
+ readonly Arn: string;
21199
+ readonly NodeId: string;
21200
+ }
21201
+
21062
21202
  export declare class ManagedLoginBranding {
21063
21203
  constructor(props: {
21064
21204
  UserPoolId: string;
@@ -21429,6 +21569,38 @@ export declare class MediaLiveInput {
21429
21569
  readonly Id: string;
21430
21570
  }
21431
21571
 
21572
+ export declare class MediaLiveNode {
21573
+ constructor(props: {
21574
+ /** The ID of the Cluster that the Node belongs to. */
21575
+ ClusterId: string;
21576
+ /** The ARN of the Node. It is automatically assigned when the Node is created. */
21577
+ Arn?: string;
21578
+ /** An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. */
21579
+ ChannelPlacementGroups?: string[];
21580
+ ConnectionState?: MediaLiveNode_NodeConnectionState;
21581
+ /** The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN. */
21582
+ Id?: string;
21583
+ /** The ARN of the EC2 instance hosting the Node. */
21584
+ InstanceArn?: string;
21585
+ /** The user-specified name of the Node. */
21586
+ Name?: string;
21587
+ /** An array of interface mappings for the Node. */
21588
+ NodeInterfaceMappings?: MediaLiveNode_NodeInterfaceMapping[];
21589
+ Role?: MediaLiveNode_NodeRole;
21590
+ /** An array of SDI source mappings. */
21591
+ SdiSourceMappings?: MediaLiveNode_SdiSourceMapping[];
21592
+ State?: MediaLiveNode_NodeState;
21593
+ /** A collection of key-value pairs. */
21594
+ Tags?: MediaLiveNode_Tag[];
21595
+ }, attributes?: CFResourceAttributes);
21596
+ readonly Arn: string;
21597
+ readonly ChannelPlacementGroups: string[];
21598
+ readonly ConnectionState: MediaLiveNode_NodeConnectionState;
21599
+ readonly Id: string;
21600
+ readonly InstanceArn: string;
21601
+ readonly State: MediaLiveNode_NodeState;
21602
+ }
21603
+
21432
21604
  export declare class MediaPackageAsset {
21433
21605
  constructor(props: {
21434
21606
  /** The unique identifier for the Asset. */
@@ -22325,6 +22497,34 @@ export declare class ModelCard {
22325
22497
  readonly ModelCardVersion: number;
22326
22498
  }
22327
22499
 
22500
+ export declare class ModelCardExportJob {
22501
+ constructor(props: {
22502
+ /** The name of the model card export job. */
22503
+ ModelCardExportJobName: string;
22504
+ /** The name or Amazon Resource Name (ARN) of the model card to export. */
22505
+ ModelCardName: string;
22506
+ /** The model card output configuration that specifies the Amazon S3 path for exporting. */
22507
+ OutputConfig: ModelCardExportJob_ModelCardExportOutputConfig;
22508
+ /** The date and time that the model card export job was created. */
22509
+ CreatedAt?: string;
22510
+ /** The exported model card artifacts. */
22511
+ ExportArtifacts?: ModelCardExportJob_ModelCardExportArtifacts;
22512
+ /** The date and time that the model card export job was last modified. */
22513
+ LastModifiedAt?: string;
22514
+ /** The Amazon Resource Name (ARN) of the model card export job. */
22515
+ ModelCardExportJobArn?: string;
22516
+ /** The version of the model card to export. If a version is not provided, then the latest version of the model card is exported. */
22517
+ ModelCardVersion?: number;
22518
+ /** The completion status of the model card export job. */
22519
+ Status?: "Completed" | "Failed" | "InProgress";
22520
+ }, attributes?: CFResourceAttributes);
22521
+ readonly CreatedAt: string;
22522
+ readonly ExportArtifacts: ModelCardExportJob_ModelCardExportArtifacts;
22523
+ readonly LastModifiedAt: string;
22524
+ readonly ModelCardExportJobArn: string;
22525
+ readonly Status: "Completed" | "Failed" | "InProgress";
22526
+ }
22527
+
22328
22528
  export declare class ModelExplainabilityJobDefinition {
22329
22529
  constructor(props: {
22330
22530
  JobResources: ModelExplainabilityJobDefinition_MonitoringResources;
@@ -23560,6 +23760,31 @@ export declare class NetworkManagerLink {
23560
23760
  readonly State: string;
23561
23761
  }
23562
23762
 
23763
+ export declare class NetworkManagerSite {
23764
+ constructor(props: {
23765
+ /** The ID of the global network. */
23766
+ GlobalNetworkId: string;
23767
+ /** The date and time that the device was created. */
23768
+ CreatedAt?: string;
23769
+ /** The description of the site. */
23770
+ Description?: string;
23771
+ /** The location of the site. */
23772
+ Location?: NetworkManagerSite_Location;
23773
+ /** The Amazon Resource Name (ARN) of the site. */
23774
+ SiteArn?: string;
23775
+ /** The ID of the site. */
23776
+ SiteId?: string;
23777
+ /** The state of the site. */
23778
+ State?: string;
23779
+ /** The tags for the site. */
23780
+ Tags?: NetworkManagerSite_Tag[];
23781
+ }, attributes?: CFResourceAttributes);
23782
+ readonly CreatedAt: string;
23783
+ readonly SiteArn: string;
23784
+ readonly SiteId: string;
23785
+ readonly State: string;
23786
+ }
23787
+
23563
23788
  export declare class NetworkPerformanceMetricSubscription {
23564
23789
  constructor(props: {
23565
23790
  /** The target Region or Availability Zone for the metric to subscribe to. */
@@ -23586,18 +23811,6 @@ export declare class NetworkSettings {
23586
23811
  readonly NetworkSettingsArn: string;
23587
23812
  }
23588
23813
 
23589
- export declare class Node {
23590
- constructor(props: {
23591
- NetworkId: string;
23592
- NodeConfiguration: Node_NodeConfiguration;
23593
- Arn?: string;
23594
- MemberId?: string;
23595
- NodeId?: string;
23596
- }, attributes?: CFResourceAttributes);
23597
- readonly Arn: string;
23598
- readonly NodeId: string;
23599
- }
23600
-
23601
23814
  export declare class Nodegroup {
23602
23815
  constructor(props: {
23603
23816
  /** Name of the cluster to create the node group in. */
@@ -23818,6 +24031,28 @@ export declare class OAuth2CredentialProvider {
23818
24031
  readonly Oauth2ProviderConfigOutput: OAuth2CredentialProvider_Oauth2ProviderConfigOutput;
23819
24032
  }
23820
24033
 
24034
+ export declare class OAuthClientApplication {
24035
+ constructor(props: {
24036
+ Name: string;
24037
+ OAuthClientApplicationId: string;
24038
+ OAuthClientAuthenticationType: "TOKEN";
24039
+ OAuthTokenEndpointUrl: string;
24040
+ Arn?: string;
24041
+ ClientId?: string;
24042
+ ClientSecret?: string;
24043
+ CreatedTime?: string;
24044
+ DataSourceType?: "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "BIGQUERY" | "CONFLUENCE" | "DATABRICKS" | "EXASOL" | "GITHUB" | "GOOGLESHEETS" | "GOOGLE_DRIVE" | "JIRA" | "MARIADB" | "MYSQL" | "ONE_DRIVE" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "QBUSINESS" | "REDSHIFT" | "S3" | "S3_KNOWLEDGE_BASE" | "S3_TABLES" | "SALESFORCE" | "SERVICENOW" | "SHAREPOINT" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "STARBURST" | "TERADATA" | "TIMESTREAM" | "TRINO" | "TWITTER" | "WEB_CRAWLER";
24045
+ IdentityProviderVpcConnectionProperties?: OAuthClientApplication_IdentityProviderVpcConnectionProperties;
24046
+ LastUpdatedTime?: string;
24047
+ OAuthAuthorizationEndpointUrl?: string;
24048
+ OAuthScopes?: string;
24049
+ Tags?: OAuthClientApplication_Tag[];
24050
+ }, attributes?: CFResourceAttributes);
24051
+ readonly Arn: string;
24052
+ readonly CreatedTime: string;
24053
+ readonly LastUpdatedTime: string;
24054
+ }
24055
+
23821
24056
  export declare class ObjectType {
23822
24057
  constructor(props: {
23823
24058
  /** Description of the profile object type. */
@@ -24773,6 +25008,22 @@ export declare class OutpostResolver {
24773
25008
  readonly StatusMessage: string;
24774
25009
  }
24775
25010
 
25011
+ export declare class OutpostsSite {
25012
+ constructor(props: {
25013
+ Name: string;
25014
+ Description?: string;
25015
+ Notes?: string;
25016
+ OperatingAddress?: OutpostsSite_Address;
25017
+ RackPhysicalProperties?: OutpostsSite_RackPhysicalProperties;
25018
+ ShippingAddress?: OutpostsSite_Address;
25019
+ SiteArn?: string;
25020
+ SiteId?: string;
25021
+ Tags?: OutpostsSite_Tag[];
25022
+ }, attributes?: CFResourceAttributes);
25023
+ readonly SiteArn: string;
25024
+ readonly SiteId: string;
25025
+ }
25026
+
24776
25027
  export declare class Owner {
24777
25028
  constructor(props: {
24778
25029
  /** The ID of the domain in which you want to add the entity owner. */
@@ -25234,10 +25485,14 @@ export declare class Pentest {
25234
25485
  Assets: Pentest_Assets;
25235
25486
  /** Service role for accessing resources */
25236
25487
  ServiceRole: string;
25488
+ /** Strategy for cleaning up resources after pentest job completion */
25489
+ CleanUpStrategy?: Pentest_CleanUpStrategy;
25237
25490
  /** Strategy for code remediation on findings */
25238
25491
  CodeRemediationStrategy?: Pentest_CodeRemediationStrategy;
25239
25492
  /** Timestamp when the pentest was created */
25240
25493
  CreatedAt?: string;
25494
+ /** A list of managed skills to disable for this pentest */
25495
+ DisableManagedSkills?: Pentest_SkillType[];
25241
25496
  /** A list of risk types excluded from the pentest execution */
25242
25497
  ExcludeRiskTypes?: Pentest_RiskType[];
25243
25498
  /** CloudWatch logs config */
@@ -25277,7 +25532,7 @@ export declare class Permission {
25277
25532
  /** The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html). */
25278
25533
  FunctionUrlAuthType?: "AWS_IAM" | "NONE";
25279
25534
  Id?: string;
25280
- /** Restricts the ``lambda:InvokeFunction`` action to function URL calls. When specified, this option prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html). */
25535
+ /** Indicates whether the permission applies when the function is invoked through a function URL. */
25281
25536
  InvokedViaFunctionUrl?: boolean;
25282
25537
  /** The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization. */
25283
25538
  PrincipalOrgID?: string;
@@ -27036,6 +27291,28 @@ export declare class QuickSightDataSource {
27036
27291
  readonly Status: QuickSightDataSource_ResourceStatus;
27037
27292
  }
27038
27293
 
27294
+ export declare class QuickSightFlow {
27295
+ constructor(props: {
27296
+ AwsAccountId: string;
27297
+ FlowDefinition: any;
27298
+ Name: string;
27299
+ Arn?: string;
27300
+ CreatedTime?: string;
27301
+ Description?: string;
27302
+ FlowId?: string;
27303
+ LastUpdatedTime?: string;
27304
+ Permissions?: QuickSightFlow_Permission[];
27305
+ PublishState?: QuickSightFlow_FlowPublishState;
27306
+ StepAliases?: QuickSightFlow_StepAliasMapping[];
27307
+ }, attributes?: CFResourceAttributes);
27308
+ readonly Arn: string;
27309
+ readonly CreatedTime: string;
27310
+ readonly FlowId: string;
27311
+ readonly LastUpdatedTime: string;
27312
+ readonly PublishState: QuickSightFlow_FlowPublishState;
27313
+ readonly StepAliases: QuickSightFlow_StepAliasMapping[];
27314
+ }
27315
+
27039
27316
  export declare class QuickSightTemplate {
27040
27317
  constructor(props: {
27041
27318
  AwsAccountId: string;
@@ -27988,14 +28265,12 @@ export declare class RemediationConfiguration {
27988
28265
  TargetType: string;
27989
28266
  Automatic?: boolean;
27990
28267
  ExecutionControls?: RemediationConfiguration_ExecutionControls;
27991
- Id?: string;
27992
28268
  MaximumAutomaticAttempts?: number;
27993
28269
  Parameters?: Record<string, unknown>;
27994
28270
  ResourceType?: string;
27995
28271
  RetryAttemptSeconds?: number;
27996
28272
  TargetVersion?: string;
27997
28273
  }, attributes?: CFResourceAttributes);
27998
- readonly Id: string;
27999
28274
  }
28000
28275
 
28001
28276
  export declare class ReplicaKey {
@@ -30516,6 +30791,35 @@ export declare class SageMakerEndpoint {
30516
30791
  readonly EndpointName: string;
30517
30792
  }
30518
30793
 
30794
+ export declare class SageMakerHub {
30795
+ constructor(props: {
30796
+ /** A description of the hub. */
30797
+ HubDescription: string;
30798
+ /** The name of the hub. */
30799
+ HubName: string;
30800
+ /** The date and time that the hub was created. */
30801
+ CreationTime?: string;
30802
+ /** The Amazon Resource Name (ARN) of the hub. */
30803
+ HubArn?: string;
30804
+ /** The display name of the hub. */
30805
+ HubDisplayName?: string;
30806
+ /** The searchable keywords for the hub. */
30807
+ HubSearchKeywords?: string[];
30808
+ /** The status of the hub. */
30809
+ HubStatus?: "CreateFailed" | "Creating" | "DeleteFailed" | "Deleting" | "InService" | "UpdateFailed" | "Updating";
30810
+ /** The date and time that the hub was last modified. */
30811
+ LastModifiedTime?: string;
30812
+ /** The Amazon S3 storage configuration for the hub. */
30813
+ S3StorageConfig?: Record<string, unknown>;
30814
+ /** Tags to associate with the hub. */
30815
+ Tags?: SageMakerHub_Tag[];
30816
+ }, attributes?: CFResourceAttributes);
30817
+ readonly CreationTime: string;
30818
+ readonly HubArn: string;
30819
+ readonly HubStatus: "CreateFailed" | "Creating" | "DeleteFailed" | "Deleting" | "InService" | "UpdateFailed" | "Updating";
30820
+ readonly LastModifiedTime: string;
30821
+ }
30822
+
30519
30823
  export declare class SageMakerImage {
30520
30824
  constructor(props: {
30521
30825
  ImageName: string;
@@ -31035,6 +31339,8 @@ export declare class SecurityAgentAgentSpace {
31035
31339
  }, attributes?: CFResourceAttributes);
31036
31340
  readonly AgentSpaceId: string;
31037
31341
  readonly CreatedAt: string;
31342
+ readonly IntegratedResources_Item_ProviderResources_Item_ConfluenceDocument_SpaceTitle: string;
31343
+ readonly IntegratedResources_Item_ProviderResources_Item_ConfluenceDocument_Title: string;
31038
31344
  readonly UpdatedAt: string;
31039
31345
  }
31040
31346
 
@@ -31191,6 +31497,24 @@ export declare class SecurityHubAutomationRule {
31191
31497
  readonly UpdatedAt: string;
31192
31498
  }
31193
31499
 
31500
+ export declare class SecurityHubHub {
31501
+ constructor(props: {
31502
+ /** An ARN is automatically created for the customer. */
31503
+ ARN?: string;
31504
+ /** Whether to automatically enable new controls when they are added to standards that are enabled */
31505
+ AutoEnableControls?: boolean;
31506
+ /** This field, used when enabling Security Hub, specifies whether the calling account has consolidated control findings turned on. If the value for this field is set to SECURITY_CONTROL, Security Hub generates a single finding for a control check even when the check applies to multiple enabled standards. If the value for this field is set to STANDARD_CONTROL, Security Hub generates separate findings for a control check when the check applies to multiple enabled standards. */
31507
+ ControlFindingGenerator?: string;
31508
+ /** Whether to enable the security standards that Security Hub has designated as automatically enabled. */
31509
+ EnableDefaultStandards?: boolean;
31510
+ /** The date and time when Security Hub was enabled in the account. */
31511
+ SubscribedAt?: string;
31512
+ Tags?: Record<string, unknown>;
31513
+ }, attributes?: CFResourceAttributes);
31514
+ readonly ARN: string;
31515
+ readonly SubscribedAt: string;
31516
+ }
31517
+
31194
31518
  export declare class SecurityKey {
31195
31519
  constructor(props: {
31196
31520
  InstanceId: string;
@@ -31212,6 +31536,26 @@ export declare class SecurityPolicy {
31212
31536
  }, attributes?: CFResourceAttributes);
31213
31537
  }
31214
31538
 
31539
+ export declare class SecurityRequirementPack {
31540
+ constructor(props: {
31541
+ /** Name of the security requirement pack */
31542
+ Name: string;
31543
+ /** Description of the pack */
31544
+ Description?: string;
31545
+ /** KMS key for client-side encryption of pack contents */
31546
+ KmsKeyId?: string;
31547
+ /** Unique identifier of the security requirement pack */
31548
+ PackId?: string;
31549
+ /** Security requirements within this pack */
31550
+ SecurityRequirements?: SecurityRequirementPack_SecurityRequirement[];
31551
+ /** Whether the pack is enabled or disabled */
31552
+ Status?: "DISABLED" | "ENABLED";
31553
+ /** Tags for the security requirement pack */
31554
+ Tags?: SecurityRequirementPack_Tag[];
31555
+ }, attributes?: CFResourceAttributes);
31556
+ readonly PackId: string;
31557
+ }
31558
+
31215
31559
  export declare class SegmentDefinition {
31216
31560
  constructor(props: {
31217
31561
  /** The display name of the segment definition. */
@@ -32167,31 +32511,6 @@ export declare class Sink {
32167
32511
  readonly Arn: string;
32168
32512
  }
32169
32513
 
32170
- export declare class Site {
32171
- constructor(props: {
32172
- /** The ID of the global network. */
32173
- GlobalNetworkId: string;
32174
- /** The date and time that the device was created. */
32175
- CreatedAt?: string;
32176
- /** The description of the site. */
32177
- Description?: string;
32178
- /** The location of the site. */
32179
- Location?: Site_Location;
32180
- /** The Amazon Resource Name (ARN) of the site. */
32181
- SiteArn?: string;
32182
- /** The ID of the site. */
32183
- SiteId?: string;
32184
- /** The state of the site. */
32185
- State?: string;
32186
- /** The tags for the site. */
32187
- Tags?: Site_Tag[];
32188
- }, attributes?: CFResourceAttributes);
32189
- readonly CreatedAt: string;
32190
- readonly SiteArn: string;
32191
- readonly SiteId: string;
32192
- readonly State: string;
32193
- }
32194
-
32195
32514
  export declare class SiteToSiteVpnAttachment {
32196
32515
  constructor(props: {
32197
32516
  /** The ID of a core network where you're creating a site-to-site VPN attachment. */
@@ -33552,6 +33871,8 @@ export declare class System {
33552
33871
  Description?: string;
33553
33872
  /** The KMS key ID for encrypting system data. */
33554
33873
  KmsKeyId?: string;
33874
+ /** Whether the system is enabled to be shared with other members of the Organization. Only applicable if the system owner is a management account or delegated admin. */
33875
+ SharingEnabled?: boolean;
33555
33876
  /** The ARN of the system. */
33556
33877
  SystemArn?: string;
33557
33878
  /** The system ID. */
@@ -34125,29 +34446,6 @@ export declare class Terms {
34125
34446
  readonly TermsId: string;
34126
34447
  }
34127
34448
 
34128
- export declare class TestCase {
34129
- constructor(props: {
34130
- Name: string;
34131
- Steps: TestCase_Step[];
34132
- CreationTime?: string;
34133
- Description?: string;
34134
- LastUpdateTime?: string;
34135
- LatestVersion?: TestCase_TestCaseLatestVersion;
34136
- Status?: TestCase_TestCaseLifecycle;
34137
- Tags?: Record<string, unknown>;
34138
- TestCaseArn?: string;
34139
- TestCaseId?: string;
34140
- TestCaseVersion?: number;
34141
- }, attributes?: CFResourceAttributes);
34142
- readonly CreationTime: string;
34143
- readonly LastUpdateTime: string;
34144
- readonly LatestVersion: TestCase_TestCaseLatestVersion;
34145
- readonly Status: TestCase_TestCaseLifecycle;
34146
- readonly TestCaseArn: string;
34147
- readonly TestCaseId: string;
34148
- readonly TestCaseVersion: number;
34149
- }
34150
-
34151
34449
  export declare class Thing {
34152
34450
  constructor(props: {
34153
34451
  Arn?: string;
@@ -35553,6 +35851,8 @@ export declare class UserPool {
35553
35851
  EmailVerificationMessage?: string;
35554
35852
  EmailVerificationSubject?: string;
35555
35853
  EnabledMfas?: string[];
35854
+ IssuerConfiguration?: UserPool_IssuerConfiguration;
35855
+ KeyConfiguration?: UserPool_KeyConfiguration;
35556
35856
  LambdaConfig?: UserPool_LambdaConfig;
35557
35857
  MfaConfiguration?: string;
35558
35858
  Policies?: UserPool_Policies;
@@ -35648,6 +35948,26 @@ export declare class UserPoolIdentityProvider {
35648
35948
  }, attributes?: CFResourceAttributes);
35649
35949
  }
35650
35950
 
35951
+ export declare class UserPoolRegionalConfigurationAttachment {
35952
+ constructor(props: {
35953
+ UserPoolId: string;
35954
+ EmailConfiguration?: UserPoolRegionalConfigurationAttachment_EmailConfiguration;
35955
+ LambdaConfig?: UserPoolRegionalConfigurationAttachment_LambdaConfig;
35956
+ SmsConfiguration?: UserPoolRegionalConfigurationAttachment_SmsConfiguration;
35957
+ /** The status of the replica. Set to ACTIVE or INACTIVE. */
35958
+ Status?: string;
35959
+ UserPoolTags?: Record<string, unknown>;
35960
+ }, attributes?: CFResourceAttributes);
35961
+ }
35962
+
35963
+ export declare class UserPoolReplica {
35964
+ constructor(props: {
35965
+ RegionName: string;
35966
+ UserPoolId: string;
35967
+ UserPoolTagsAtCreate?: Record<string, unknown>;
35968
+ }, attributes?: CFResourceAttributes);
35969
+ }
35970
+
35651
35971
  export declare class UserPoolResourceServer {
35652
35972
  constructor(props: {
35653
35973
  Identifier: string;
@@ -36710,6 +37030,7 @@ export declare class VpcLatticeService {
36710
37030
  CustomDomainName?: string;
36711
37031
  DnsEntry?: VpcLatticeService_DnsEntry;
36712
37032
  Id?: string;
37033
+ IdleTimeoutSeconds?: number;
36713
37034
  LastUpdatedAt?: string;
36714
37035
  Name?: string;
36715
37036
  Status?: "ACTIVE" | "CREATE_FAILED" | "CREATE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_IN_PROGRESS";
@@ -37482,15 +37803,15 @@ export declare class Workgroup {
37482
37803
  PricePerformanceTarget?: Workgroup_PerformanceTarget;
37483
37804
  /** A value that specifies whether the workgroup can be accessible from a public network. */
37484
37805
  PubliclyAccessible?: boolean;
37485
- /** The recovery point id to restore from. */
37806
+ /** The identifier of the recovery point to restore the namespace from. When this resource is first created, the namespace is restored from this recovery point. On subsequent updates, a restore occurs only when RecoveryPointId changes from its previous value. If the value is unchanged or removed, no restore takes place and existing data is preserved. */
37486
37807
  RecoveryPointId?: string;
37487
37808
  /** A list of security group IDs to associate with the workgroup. */
37488
37809
  SecurityGroupIds?: string[];
37489
- /** The Amazon Resource Name (ARN) of the snapshot to restore from. */
37810
+ /** The Amazon Resource Name (ARN) of the snapshot to restore the namespace from. Specify either SnapshotArn or SnapshotName, but not both. When this resource is first created, the namespace is restored from this snapshot. On subsequent updates, a restore occurs only when SnapshotArn changes from its previous value. If the value is unchanged or removed, no restore takes place and existing data is preserved. */
37490
37811
  SnapshotArn?: string;
37491
- /** The snapshot name to restore from. */
37812
+ /** The name of the snapshot to restore the namespace from. Because snapshot names are unique only within an account, also specify SnapshotOwnerAccount when restoring from a snapshot owned by a different account. Specify either SnapshotName or SnapshotArn, but not both. When this resource is first created, the namespace is restored from this snapshot. On subsequent updates, a restore occurs only when SnapshotName or SnapshotOwnerAccount changes from its previous value. If both values are unchanged or SnapshotName is removed, no restore takes place and existing data is preserved. */
37492
37813
  SnapshotName?: string;
37493
- /** The Amazon Web Services account that owns the snapshot. */
37814
+ /** The AWS account ID that owns the snapshot. Required when restoring from a snapshot shared by another account. Used in combination with SnapshotName. On updates, changing this value while SnapshotName is set triggers a restore from the newly referenced snapshot. If the value is unchanged, no restore takes place and existing data is preserved. */
37494
37815
  SnapshotOwnerAccount?: string;
37495
37816
  /** A list of subnet IDs the workgroup is associated with. */
37496
37817
  SubnetIds?: string[];
@@ -38256,6 +38577,62 @@ export declare class AcmCertificate_Tag {
38256
38577
  });
38257
38578
  }
38258
38579
 
38580
+ export declare class AcmeDomainValidation_DnsPrevalidationOptions {
38581
+ constructor(props: {
38582
+ DomainScope?: AcmeDomainValidation_DomainScope;
38583
+ /** The Route 53 hosted zone ID for automatic DNS record management. When provided, the service creates the validation DNS record on the customer's behalf. */
38584
+ HostedZoneId?: string;
38585
+ });
38586
+ }
38587
+
38588
+ export declare class AcmeDomainValidation_DomainScope {
38589
+ constructor(props: {
38590
+ /** Whether certificates may be issued for the exact domain. */
38591
+ ExactDomain?: string;
38592
+ /** Whether certificates may be issued for subdomains of the domain. */
38593
+ Subdomains?: string;
38594
+ /** Whether wildcard certificates may be issued for the domain. */
38595
+ Wildcards?: string;
38596
+ });
38597
+ }
38598
+
38599
+ export declare class AcmeDomainValidation_PrevalidationOptions {
38600
+ constructor(props: {
38601
+ DnsPrevalidation: AcmeDomainValidation_DnsPrevalidationOptions;
38602
+ });
38603
+ }
38604
+
38605
+ export declare class AcmeEndpoint_CertificateAuthority {
38606
+ constructor(props: {
38607
+ PublicCertificateAuthority: AcmeEndpoint_PublicCertificateAuthority;
38608
+ });
38609
+ }
38610
+
38611
+ export declare class AcmeEndpoint_PublicCertificateAuthority {
38612
+ constructor(props: {
38613
+ /** The allowed key algorithms for certificates issued via this endpoint. */
38614
+ AllowedKeyAlgorithms?: string[];
38615
+ });
38616
+ }
38617
+
38618
+ export declare class AcmeEndpoint_Tag {
38619
+ constructor(props: {
38620
+ /** The key name of the tag. */
38621
+ Key: string;
38622
+ /** The value for the tag. */
38623
+ Value: string;
38624
+ });
38625
+ }
38626
+
38627
+ export declare class AcmeExternalAccountBinding_Expiration {
38628
+ constructor(props: {
38629
+ /** The time unit for the expiration value. */
38630
+ Type: string;
38631
+ /** The expiration value. */
38632
+ Value: number;
38633
+ });
38634
+ }
38635
+
38259
38636
  export declare class ACMPCACertificate_ApiPassthrough {
38260
38637
  constructor(props: {
38261
38638
  /** Specifies X.509 extension information for a certificate. */
@@ -38648,6 +39025,22 @@ export declare class Addon_Tag {
38648
39025
  });
38649
39026
  }
38650
39027
 
39028
+ export declare class Address {
39029
+ constructor(props: {
39030
+ AddressLine1: string;
39031
+ City: string;
39032
+ ContactName: string;
39033
+ ContactPhoneNumber: string;
39034
+ CountryCode: string;
39035
+ PostalCode: string;
39036
+ StateOrRegion: string;
39037
+ AddressLine2?: string;
39038
+ AddressLine3?: string;
39039
+ DistrictOrCounty?: string;
39040
+ Municipality?: string;
39041
+ });
39042
+ }
39043
+
38651
39044
  export declare class AddThingsToThingGroupParams {
38652
39045
  constructor(props: {
38653
39046
  /** The list of groups to which you want to add the things that triggered the mitigation action. */
@@ -38754,6 +39147,32 @@ export declare class AfterContactWorkConfigPerChannel {
38754
39147
  });
38755
39148
  }
38756
39149
 
39150
+ export declare class AgentAccessConfig {
39151
+ constructor(props: {
39152
+ /** The image format for agent screen captures. */
39153
+ ScreenImageFormat: string;
39154
+ /** The screen resolution for the agent streaming environment. */
39155
+ ScreenResolution: string;
39156
+ /** The list of agent access settings that define permissions for each agent action. You must specify at least one setting. */
39157
+ Settings: AppStreamStack_AgentAccessSetting[];
39158
+ /** The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent screenshots are stored. Required when ScreenshotsUploadEnabled is true. */
39159
+ S3BucketArn?: string;
39160
+ /** Indicates whether screenshot uploads to Amazon S3 are enabled for agent sessions. */
39161
+ ScreenshotsUploadEnabled?: boolean;
39162
+ /** The user control mode for agent sessions. This setting determines how users can interact with agent sessions. Valid values are VIEW_ONLY, VIEW_STOP, and DISABLED. */
39163
+ UserControlMode?: string;
39164
+ });
39165
+ }
39166
+
39167
+ export declare class AgentAccessSetting {
39168
+ constructor(props: {
39169
+ /** The agent action to configure. Valid values are COMPUTER_VISION, COMPUTER_INPUT, and FORWARD_MCP_TOOLS. COMPUTER_VISION allows agents to take screenshots of the desktop. COMPUTER_INPUT allows agents to click, type, and scroll on the desktop and requires COMPUTER_VISION to also be enabled. FORWARD_MCP_TOOLS allows agents to interact with applications and the desktop operating system through direct MCP calls rather than using computer use tools. Forwards MCP tools configured on the WorkSpaces application session to the agent. */
39170
+ AgentAction: string;
39171
+ /** Whether the agent action is enabled or disabled. */
39172
+ Permission: string;
39173
+ });
39174
+ }
39175
+
38757
39176
  export declare class AgentActionGroup {
38758
39177
  constructor(props: {
38759
39178
  /** Name of the action group */
@@ -39247,6 +39666,101 @@ export declare class AlarmRule {
39247
39666
  });
39248
39667
  }
39249
39668
 
39669
+ export declare class Algorithm_ChannelSpecification {
39670
+ constructor(props: {
39671
+ Name: string;
39672
+ SupportedContentTypes: string[];
39673
+ SupportedInputModes: "FastFile" | "File" | "Pipe"[];
39674
+ Description?: string;
39675
+ IsRequired?: boolean;
39676
+ SupportedCompressionTypes?: "Gzip" | "None"[];
39677
+ });
39678
+ }
39679
+
39680
+ export declare class Algorithm_HyperParameterSpecification {
39681
+ constructor(props: {
39682
+ Name: string;
39683
+ Type: "Categorical" | "Continuous" | "FreeText" | "Integer";
39684
+ DefaultValue?: string;
39685
+ Description?: string;
39686
+ IsRequired?: boolean;
39687
+ IsTunable?: boolean;
39688
+ Range?: Algorithm_ParameterRange;
39689
+ });
39690
+ }
39691
+
39692
+ export declare class Algorithm_HyperParameterTuningJobObjective {
39693
+ constructor(props: {
39694
+ MetricName: string;
39695
+ Type: "Maximize" | "Minimize";
39696
+ });
39697
+ }
39698
+
39699
+ export declare class Algorithm_InferenceSpecification {
39700
+ constructor(props: {
39701
+ Containers: Algorithm_ModelPackageContainerDefinition[];
39702
+ SupportedContentTypes?: string[];
39703
+ SupportedRealtimeInferenceInstanceTypes?: string[];
39704
+ SupportedResponseMIMETypes?: string[];
39705
+ SupportedTransformInstanceTypes?: string[];
39706
+ });
39707
+ }
39708
+
39709
+ export declare class Algorithm_MetricDefinition {
39710
+ constructor(props: {
39711
+ Name: string;
39712
+ Regex: string;
39713
+ });
39714
+ }
39715
+
39716
+ export declare class Algorithm_ModelInput {
39717
+ constructor(props: {
39718
+ DataInputConfig: string;
39719
+ });
39720
+ }
39721
+
39722
+ export declare class Algorithm_ModelPackageContainerDefinition {
39723
+ constructor(props: {
39724
+ Image: string;
39725
+ ContainerHostname?: string;
39726
+ Environment?: Record<string, unknown>;
39727
+ Framework?: string;
39728
+ FrameworkVersion?: string;
39729
+ ImageDigest?: string;
39730
+ IsCheckpoint?: boolean;
39731
+ ModelInput?: Algorithm_ModelInput;
39732
+ NearestModelName?: string;
39733
+ });
39734
+ }
39735
+
39736
+ export declare class Algorithm_ParameterRange {
39737
+ constructor(props: {
39738
+ CategoricalParameterRangeSpecification?: Record<string, unknown>;
39739
+ ContinuousParameterRangeSpecification?: Record<string, unknown>;
39740
+ IntegerParameterRangeSpecification?: Record<string, unknown>;
39741
+ });
39742
+ }
39743
+
39744
+ export declare class Algorithm_Tag {
39745
+ constructor(props: {
39746
+ Key: string;
39747
+ Value: string;
39748
+ });
39749
+ }
39750
+
39751
+ export declare class Algorithm_TrainingSpecification {
39752
+ constructor(props: {
39753
+ SupportedTrainingInstanceTypes: string[];
39754
+ TrainingChannels: Algorithm_ChannelSpecification[];
39755
+ TrainingImage: string;
39756
+ MetricDefinitions?: Algorithm_MetricDefinition[];
39757
+ SupportedHyperParameters?: Algorithm_HyperParameterSpecification[];
39758
+ SupportedTuningJobObjectiveMetrics?: Algorithm_HyperParameterTuningJobObjective[];
39759
+ SupportsDistributedTraining?: boolean;
39760
+ TrainingImageDigest?: string;
39761
+ });
39762
+ }
39763
+
39250
39764
  export declare class Alias {
39251
39765
  constructor(props: {
39252
39766
  /** The value of the Object Lambda alias. */
@@ -41366,6 +41880,20 @@ export declare class AppInstanceBot_Tag {
41366
41880
  });
41367
41881
  }
41368
41882
 
41883
+ export declare class AppInstanceUser_ExpirationSettings {
41884
+ constructor(props: {
41885
+ ExpirationCriterion: "CREATED_TIMESTAMP";
41886
+ ExpirationDays: number;
41887
+ });
41888
+ }
41889
+
41890
+ export declare class AppInstanceUser_Tag {
41891
+ constructor(props: {
41892
+ Key: string;
41893
+ Value: string;
41894
+ });
41895
+ }
41896
+
41369
41897
  export declare class AppIntegrationsApplication_ApplicationConfig {
41370
41898
  constructor(props: {
41371
41899
  ContactHandling?: AppIntegrationsApplication_ContactHandling;
@@ -42465,11 +42993,37 @@ export declare class AppStreamStack_AccessEndpoint {
42465
42993
  });
42466
42994
  }
42467
42995
 
42996
+ export declare class AppStreamStack_AgentAccessConfig {
42997
+ constructor(props: {
42998
+ /** The image format for agent screen captures. */
42999
+ ScreenImageFormat: string;
43000
+ /** The screen resolution for the agent streaming environment. */
43001
+ ScreenResolution: string;
43002
+ /** The list of agent access settings that define permissions for each agent action. You must specify at least one setting. */
43003
+ Settings: AppStreamStack_AgentAccessSetting[];
43004
+ /** The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent screenshots are stored. Required when ScreenshotsUploadEnabled is true. */
43005
+ S3BucketArn?: string;
43006
+ /** Indicates whether screenshot uploads to Amazon S3 are enabled for agent sessions. */
43007
+ ScreenshotsUploadEnabled?: boolean;
43008
+ /** The user control mode for agent sessions. This setting determines how users can interact with agent sessions. Valid values are VIEW_ONLY, VIEW_STOP, and DISABLED. */
43009
+ UserControlMode?: string;
43010
+ });
43011
+ }
43012
+
43013
+ export declare class AppStreamStack_AgentAccessSetting {
43014
+ constructor(props: {
43015
+ /** The agent action to configure. Valid values are COMPUTER_VISION, COMPUTER_INPUT, and FORWARD_MCP_TOOLS. COMPUTER_VISION allows agents to take screenshots of the desktop. COMPUTER_INPUT allows agents to click, type, and scroll on the desktop and requires COMPUTER_VISION to also be enabled. FORWARD_MCP_TOOLS allows agents to interact with applications and the desktop operating system through direct MCP calls rather than using computer use tools. Forwards MCP tools configured on the WorkSpaces application session to the agent. */
43016
+ AgentAction: string;
43017
+ /** Whether the agent action is enabled or disabled. */
43018
+ Permission: string;
43019
+ });
43020
+ }
43021
+
42468
43022
  export declare class AppStreamStack_ApplicationSettings {
42469
43023
  constructor(props: {
42470
43024
  /** Enables or disables persistent application settings for users during their streaming sessions. */
42471
43025
  Enabled: boolean;
42472
- /** The path prefix for the S3 bucket where users persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack. */
43026
+ /** The path prefix for the S3 bucket where users' persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack. */
42473
43027
  SettingsGroup?: string;
42474
43028
  });
42475
43029
  }
@@ -42764,6 +43318,21 @@ export declare class AppSyncParameters {
42764
43318
  });
42765
43319
  }
42766
43320
 
43321
+ export declare class AppTestTestCase_Step {
43322
+ constructor(props: {
43323
+ Action: any;
43324
+ Name: string;
43325
+ Description?: string;
43326
+ });
43327
+ }
43328
+
43329
+ export declare class AppTestTestCase_TestCaseLatestVersion {
43330
+ constructor(props: {
43331
+ Status: AppTestTestCase_TestCaseLifecycle;
43332
+ Version: number;
43333
+ });
43334
+ }
43335
+
42767
43336
  export declare class APSAnomalyDetector_AnomalyDetectorConfiguration {
42768
43337
  constructor(props: {
42769
43338
  RandomCutForest: APSAnomalyDetector_RandomCutForestConfiguration;
@@ -44262,7 +44831,7 @@ export declare class AutoScalingGroup_AvailabilityZoneDistribution {
44262
44831
  /** If launches fail in an Availability Zone, the following strategies are available. The default is ``balanced-best-effort``.
44263
44832
  + ``balanced-only`` - If launches fail in an Availability Zone, Auto Scaling will continue to attempt to launch in the unhealthy zone to preserve a balanced distribution.
44264
44833
  + ``balanced-best-effort`` - If launches fail in an Availability Zone, Auto Scaling will attempt to launch in another healthy Availability Zone instead. */
44265
- CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only";
44834
+ CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only" | "reservations-then-balanced";
44266
44835
  });
44267
44836
  }
44268
44837
 
@@ -44720,7 +45289,7 @@ export declare class AvailabilityZoneDistribution {
44720
45289
  /** If launches fail in an Availability Zone, the following strategies are available. The default is ``balanced-best-effort``.
44721
45290
  + ``balanced-only`` - If launches fail in an Availability Zone, Auto Scaling will continue to attempt to launch in the unhealthy zone to preserve a balanced distribution.
44722
45291
  + ``balanced-best-effort`` - If launches fail in an Availability Zone, Auto Scaling will attempt to launch in another healthy Availability Zone instead. */
44723
- CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only";
45292
+ CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only" | "reservations-then-balanced";
44724
45293
  });
44725
45294
  }
44726
45295
 
@@ -45793,6 +46362,7 @@ export declare class BedrockDataSource_DataSourceConfiguration {
45793
46362
  constructor(props: {
45794
46363
  Type: BedrockDataSource_DataSourceType;
45795
46364
  ConfluenceConfiguration?: BedrockDataSource_ConfluenceDataSourceConfiguration;
46365
+ ManagedKnowledgeBaseConnectorConfiguration?: BedrockDataSource_ManagedKnowledgeBaseConnectorConfiguration;
45796
46366
  S3Configuration?: BedrockDataSource_S3DataSourceConfiguration;
45797
46367
  SalesforceConfiguration?: BedrockDataSource_SalesforceDataSourceConfiguration;
45798
46368
  SharePointConfiguration?: BedrockDataSource_SharePointDataSourceConfiguration;
@@ -45800,6 +46370,14 @@ export declare class BedrockDataSource_DataSourceConfiguration {
45800
46370
  });
45801
46371
  }
45802
46372
 
46373
+ export declare class BedrockDataSource_DeletionProtectionConfiguration {
46374
+ constructor(props: {
46375
+ DeletionProtectionStatus: BedrockDataSource_EnabledOrDisabledState;
46376
+ /** Threshold for deletion protection. */
46377
+ DeletionProtectionThreshold?: number;
46378
+ });
46379
+ }
46380
+
45803
46381
  export declare class BedrockDataSource_FixedSizeChunkingConfiguration {
45804
46382
  constructor(props: {
45805
46383
  /** The maximum number of tokens to include in a chunk. */
@@ -45824,6 +46402,23 @@ export declare class BedrockDataSource_IntermediateStorage {
45824
46402
  });
45825
46403
  }
45826
46404
 
46405
+ export declare class BedrockDataSource_ManagedKnowledgeBaseConnectorConfiguration {
46406
+ constructor(props: {
46407
+ /** Connector-specific parameters. */
46408
+ ConnectorParameters?: Record<string, unknown>;
46409
+ DeletionProtectionConfiguration?: BedrockDataSource_DeletionProtectionConfiguration;
46410
+ MediaExtractionConfiguration?: BedrockDataSource_MediaExtractionConfiguration;
46411
+ });
46412
+ }
46413
+
46414
+ export declare class BedrockDataSource_MediaExtractionConfiguration {
46415
+ constructor(props: {
46416
+ AudioExtractionConfiguration?: Record<string, unknown>;
46417
+ ImageExtractionConfiguration?: Record<string, unknown>;
46418
+ VideoExtractionConfiguration?: Record<string, unknown>;
46419
+ });
46420
+ }
46421
+
45827
46422
  export declare class BedrockDataSource_ParsingConfiguration {
45828
46423
  constructor(props: {
45829
46424
  ParsingStrategy: BedrockDataSource_ParsingStrategy;
@@ -46054,11 +46649,29 @@ export declare class BedrockKnowledgeBase_KnowledgeBaseConfiguration {
46054
46649
  constructor(props: {
46055
46650
  Type: BedrockKnowledgeBase_KnowledgeBaseType;
46056
46651
  KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBase_KendraKnowledgeBaseConfiguration;
46652
+ ManagedKnowledgeBaseConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration;
46057
46653
  SqlKnowledgeBaseConfiguration?: BedrockKnowledgeBase_SqlKnowledgeBaseConfiguration;
46058
46654
  VectorKnowledgeBaseConfiguration?: BedrockKnowledgeBase_VectorKnowledgeBaseConfiguration;
46059
46655
  });
46060
46656
  }
46061
46657
 
46658
+ export declare class BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration {
46659
+ constructor(props: {
46660
+ /** The ARN of the model used to create vector embeddings for the knowledge base. */
46661
+ EmbeddingModelArn?: string;
46662
+ EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
46663
+ EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
46664
+ ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
46665
+ });
46666
+ }
46667
+
46668
+ export declare class BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration {
46669
+ constructor(props: {
46670
+ /** The ARN of the AWS KMS key used to encrypt the managed knowledge base. */
46671
+ KmsKeyArn?: string;
46672
+ });
46673
+ }
46674
+
46062
46675
  export declare class BedrockKnowledgeBase_MongoDbAtlasConfiguration {
46063
46676
  constructor(props: {
46064
46677
  /** Name of the collection within MongoDB Atlas. */
@@ -48949,9 +49562,7 @@ export declare class CapacityProviderConfig {
48949
49562
 
48950
49563
  export declare class CapacityProviderLoggingConfig {
48951
49564
  constructor(props: {
48952
- /** The log group name. */
48953
49565
  LogGroup?: string;
48954
- /** System log granularity level */
48955
49566
  SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
48956
49567
  });
48957
49568
  }
@@ -48976,7 +49587,6 @@ export declare class CapacityProviderScalingConfig {
48976
49587
 
48977
49588
  export declare class CapacityProviderTelemetryConfig {
48978
49589
  constructor(props: {
48979
- /** The logging configuration for the capacity provider. */
48980
49590
  LoggingConfig?: LambdaCapacityProvider_CapacityProviderLoggingConfig;
48981
49591
  });
48982
49592
  }
@@ -50392,6 +51002,17 @@ export declare class ChannelPlacementGroup_Tags {
50392
51002
  });
50393
51003
  }
50394
51004
 
51005
+ export declare class ChannelSpecification {
51006
+ constructor(props: {
51007
+ Name: string;
51008
+ SupportedContentTypes: string[];
51009
+ SupportedInputModes: "FastFile" | "File" | "Pipe"[];
51010
+ Description?: string;
51011
+ IsRequired?: boolean;
51012
+ SupportedCompressionTypes?: "Gzip" | "None"[];
51013
+ });
51014
+ }
51015
+
50395
51016
  export declare class ChannelStorage {
50396
51017
  constructor(props: {
50397
51018
  CustomerManagedS3?: IoTAnalyticsChannel_CustomerManagedS3;
@@ -51312,6 +51933,7 @@ export declare class Code {
51312
51933
  S3Bucket?: string;
51313
51934
  /** The Amazon S3 key of the deployment package. */
51314
51935
  S3Key?: string;
51936
+ S3ObjectStorageMode?: "COPY" | "REFERENCE";
51315
51937
  /** For versioned objects, the version of the deployment package object to use. */
51316
51938
  S3ObjectVersion?: string;
51317
51939
  /** The ARN of the KMSlong (KMS) customer managed key that's used to encrypt your function's .zip deployment package. If you don't provide a customer managed key, Lambda uses an [owned key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk). */
@@ -53953,7 +54575,9 @@ export declare class ConnectionParameters {
53953
54575
 
53954
54576
  export declare class ConnectionPasswordEncryption {
53955
54577
  constructor(props: {
54578
+ /** An AWS KMS key that is used to encrypt the connection password. */
53956
54579
  KmsKeyId?: string;
54580
+ /** When the ReturnConnectionPasswordEncrypted flag is set to 'true', passwords remain encrypted in the responses of GetConnection and GetConnections. This encryption takes effect independently from catalog encryption. */
53957
54581
  ReturnConnectionPasswordEncrypted?: boolean;
53958
54582
  });
53959
54583
  }
@@ -54661,6 +55285,26 @@ export declare class ConnectSecurityProfile_Tag {
54661
55285
  });
54662
55286
  }
54663
55287
 
55288
+ export declare class ConnectTestCase_EntryPoint {
55289
+ constructor(props: {
55290
+ /** The chat entry point parameters for the test case */
55291
+ ChatEntryPointParameters?: Record<string, unknown>;
55292
+ /** The type of the Entry Point */
55293
+ Type?: "CHAT" | "VOICE_CALL";
55294
+ /** The voice call entry point parameters for the test case */
55295
+ VoiceCallEntryPointParameters?: Record<string, unknown>;
55296
+ });
55297
+ }
55298
+
55299
+ export declare class ConnectTestCase_Tag {
55300
+ constructor(props: {
55301
+ /** 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 -. */
55302
+ Key: string;
55303
+ /** The value for the tag. You can specify a value that is maximum of 256 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 -. */
55304
+ Value: string;
55305
+ });
55306
+ }
55307
+
54664
55308
  export declare class ConnectUser_AfterContactWorkConfig {
54665
55309
  constructor(props: {
54666
55310
  AfterContactWorkTimeLimit?: number;
@@ -56427,13 +57071,6 @@ export declare class CustomDomainConfigType {
56427
57071
  });
56428
57072
  }
56429
57073
 
56430
- export declare class CustomEmailSender {
56431
- constructor(props: {
56432
- LambdaArn?: string;
56433
- LambdaVersion?: string;
56434
- });
56435
- }
56436
-
56437
57074
  export declare class CustomerContact {
56438
57075
  constructor(props: {
56439
57076
  /** The email address of the contact. */
@@ -57402,13 +58039,6 @@ export declare class CustomRule {
57402
58039
  });
57403
58040
  }
57404
58041
 
57405
- export declare class CustomSMSSender {
57406
- constructor(props: {
57407
- LambdaArn?: string;
57408
- LambdaVersion?: string;
57409
- });
57410
- }
57411
-
57412
58042
  export declare class CustomTransformationConfiguration {
57413
58043
  constructor(props: {
57414
58044
  IntermediateStorage: BedrockDataSource_IntermediateStorage;
@@ -58923,7 +59553,9 @@ export declare class DataCaptureConfig {
58923
59553
 
58924
59554
  export declare class DataCatalogEncryptionSettings_ConnectionPasswordEncryption {
58925
59555
  constructor(props: {
59556
+ /** An AWS KMS key that is used to encrypt the connection password. */
58926
59557
  KmsKeyId?: string;
59558
+ /** When the ReturnConnectionPasswordEncrypted flag is set to 'true', passwords remain encrypted in the responses of GetConnection and GetConnections. This encryption takes effect independently from catalog encryption. */
58927
59559
  ReturnConnectionPasswordEncrypted?: boolean;
58928
59560
  });
58929
59561
  }
@@ -58937,8 +59569,11 @@ export declare class DataCatalogEncryptionSettings_DataCatalogEncryptionSettings
58937
59569
 
58938
59570
  export declare class DataCatalogEncryptionSettings_EncryptionAtRest {
58939
59571
  constructor(props: {
59572
+ /** The encryption-at-rest mode for encrypting Data Catalog data. */
58940
59573
  CatalogEncryptionMode?: string;
59574
+ /** The role that AWS Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf. */
58941
59575
  CatalogEncryptionServiceRole?: string;
59576
+ /** The ID of the AWS KMS key to use for encryption at rest. */
58942
59577
  SseAwsKmsKeyId?: string;
58943
59578
  });
58944
59579
  }
@@ -61162,6 +61797,14 @@ export declare class DeletionProtection {
61162
61797
  });
61163
61798
  }
61164
61799
 
61800
+ export declare class DeletionProtectionConfiguration {
61801
+ constructor(props: {
61802
+ DeletionProtectionStatus: BedrockDataSource_EnabledOrDisabledState;
61803
+ /** Threshold for deletion protection. */
61804
+ DeletionProtectionThreshold?: number;
61805
+ });
61806
+ }
61807
+
61165
61808
  export declare class DeletionSettings {
61166
61809
  constructor(props: {
61167
61810
  /** The execution role to use for deleting the image, as well as underlying resources. */
@@ -61851,6 +62494,8 @@ export declare class DeploymentCircuitBreaker {
61851
62494
  Enable: boolean;
61852
62495
  /** 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. */
61853
62496
  Rollback: boolean;
62497
+ ResetOnHealthyTask?: boolean;
62498
+ ThresholdConfiguration?: EcsService_ThresholdConfiguration;
61854
62499
  });
61855
62500
  }
61856
62501
 
@@ -63799,6 +64444,14 @@ export declare class DnsOptionsSpecification {
63799
64444
  });
63800
64445
  }
63801
64446
 
64447
+ export declare class DnsPrevalidationOptions {
64448
+ constructor(props: {
64449
+ DomainScope?: AcmeDomainValidation_DomainScope;
64450
+ /** The Route 53 hosted zone ID for automatic DNS record management. When provided, the service creates the validation DNS record on the customer's behalf. */
64451
+ HostedZoneId?: string;
64452
+ });
64453
+ }
64454
+
63802
64455
  export declare class DnsRecord {
63803
64456
  constructor(props: {
63804
64457
  TTL: number;
@@ -64282,6 +64935,17 @@ export declare class DomainResult {
64282
64935
  });
64283
64936
  }
64284
64937
 
64938
+ export declare class DomainScope {
64939
+ constructor(props: {
64940
+ /** Whether certificates may be issued for the exact domain. */
64941
+ ExactDomain?: string;
64942
+ /** Whether certificates may be issued for subdomains of the domain. */
64943
+ Subdomains?: string;
64944
+ /** Whether wildcard certificates may be issued for the domain. */
64945
+ Wildcards?: string;
64946
+ });
64947
+ }
64948
+
64285
64949
  export declare class DomainSettings {
64286
64950
  constructor(props: {
64287
64951
  DockerSettings?: SageMakerDomain_DockerSettings;
@@ -64396,6 +65060,7 @@ export declare class DurableConfig {
64396
65060
  constructor(props: {
64397
65061
  /** The maximum time (in seconds) that a durable execution can run before timing out. This timeout applies to the entire durable execution, not individual function invocations. */
64398
65062
  ExecutionTimeout: number;
65063
+ KMSKeyArn?: string;
64399
65064
  /** The number of days to retain execution history after a durable execution completes. After this period, execution history is no longer available through the GetDurableExecutionHistory API. */
64400
65065
  RetentionPeriodInDays?: number;
64401
65066
  });
@@ -64911,7 +65576,7 @@ export declare class ECSCapacityProvider_InstanceRequirementsRequest {
64911
65576
  VCpuCount: Record<string, unknown>;
64912
65577
  AcceleratorCount?: Record<string, unknown>;
64913
65578
  AcceleratorManufacturers?: "amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx"[];
64914
- AcceleratorNames?: "a100" | "a10g" | "h100" | "inferentia" | "k520" | "k80" | "l40s" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "v100" | "vu9p"[];
65579
+ AcceleratorNames?: "a100" | "a10g" | "gaudi-hl-205" | "h100" | "inferentia" | "inferentia2" | "k520" | "k80" | "l4" | "l40s" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "trainium" | "trainium2" | "u30" | "v100" | "vu9p"[];
64915
65580
  AcceleratorTotalMemoryMiB?: Record<string, unknown>;
64916
65581
  AcceleratorTypes?: "fpga" | "gpu" | "inference"[];
64917
65582
  AllowedInstanceTypes?: string[];
@@ -65215,6 +65880,8 @@ export declare class EcsService_DeploymentCircuitBreaker {
65215
65880
  Enable: boolean;
65216
65881
  /** 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. */
65217
65882
  Rollback: boolean;
65883
+ ResetOnHealthyTask?: boolean;
65884
+ ThresholdConfiguration?: EcsService_ThresholdConfiguration;
65218
65885
  });
65219
65886
  }
65220
65887
 
@@ -65448,13 +66115,16 @@ export declare class EcsService_LogConfiguration {
65448
66115
 
65449
66116
  export declare class EcsService_MetricConfiguration {
65450
66117
  constructor(props: {
66118
+ /** The list of metric names to configure. The supported metric names are ``CPUUtilization`` and ``MemoryUtilization``. */
65451
66119
  MetricNames: "CPUUtilization" | "MemoryUtilization"[];
66120
+ /** The resolution, in seconds, at which to collect the metrics. The valid values are ``20`` and ``60``. */
65452
66121
  ResolutionSeconds: 20 | 60;
65453
66122
  });
65454
66123
  }
65455
66124
 
65456
66125
  export declare class EcsService_MonitoringConfiguration {
65457
66126
  constructor(props: {
66127
+ /** The list of metric configurations for the service monitoring. */
65458
66128
  MetricConfigurations: EcsService_MetricConfiguration[];
65459
66129
  });
65460
66130
  }
@@ -65661,6 +66331,13 @@ export declare class EcsService_Tag {
65661
66331
  });
65662
66332
  }
65663
66333
 
66334
+ export declare class EcsService_ThresholdConfiguration {
66335
+ constructor(props: {
66336
+ Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
66337
+ Value: number;
66338
+ });
66339
+ }
66340
+
65664
66341
  export declare class EcsService_TimeoutConfiguration {
65665
66342
  constructor(props: {
65666
66343
  /** The amount of time in seconds a connection will stay active while idle. A value of ``0`` can be set to disable ``idleTimeout``.
@@ -66121,6 +66798,13 @@ export declare class EKSCluster_ResourcesVpcConfig {
66121
66798
  });
66122
66799
  }
66123
66800
 
66801
+ export declare class EKSCluster_RollbackConfig {
66802
+ constructor(props: {
66803
+ /** The timeout in minutes for the version rollback operation. If not specified, defaults to 720 minutes (12 hours). */
66804
+ TimeoutMinutes?: number;
66805
+ });
66806
+ }
66807
+
66124
66808
  export declare class EKSCluster_StorageConfig {
66125
66809
  constructor(props: {
66126
66810
  /** Todo: add description */
@@ -66680,16 +67364,6 @@ export declare class EmailChannelSubtypeConfig {
66680
67364
  });
66681
67365
  }
66682
67366
 
66683
- export declare class EmailConfiguration {
66684
- constructor(props: {
66685
- ConfigurationSet?: string;
66686
- EmailSendingAccount?: string;
66687
- From?: string;
66688
- ReplyToEmailAddress?: string;
66689
- SourceArn?: string;
66690
- });
66691
- }
66692
-
66693
67367
  export declare class EmailContact_EmailContact {
66694
67368
  constructor(props: {
66695
67369
  Address: string;
@@ -67849,6 +68523,17 @@ export declare class EntryLimitsConfig {
67849
68523
  });
67850
68524
  }
67851
68525
 
68526
+ export declare class EntryPoint {
68527
+ constructor(props: {
68528
+ /** The chat entry point parameters for the test case */
68529
+ ChatEntryPointParameters?: Record<string, unknown>;
68530
+ /** The type of the Entry Point */
68531
+ Type?: "CHAT" | "VOICE_CALL";
68532
+ /** The voice call entry point parameters for the test case */
68533
+ VoiceCallEntryPointParameters?: Record<string, unknown>;
68534
+ });
68535
+ }
68536
+
67852
68537
  export declare class Environment {
67853
68538
  constructor(props: {
67854
68539
  /** Environment variable key-value pairs. For more information, see [Using Lambda environment variables](https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html).
@@ -68020,6 +68705,17 @@ export declare class EvaluationForm_EvaluationFormLanguageConfiguration {
68020
68705
  });
68021
68706
  }
68022
68707
 
68708
+ export declare class EvaluationForm_EvaluationFormScoreThreshold {
68709
+ constructor(props: {
68710
+ /** The performance category name. */
68711
+ PerformanceCategory: "EXCEEDS_EXPECTATIONS" | "NEEDS_IMPROVEMENT";
68712
+ /** The maximum score percentage for this threshold. */
68713
+ MaxScorePercentage?: number;
68714
+ /** The minimum score percentage for this threshold. */
68715
+ MinScorePercentage?: number;
68716
+ });
68717
+ }
68718
+
68023
68719
  export declare class EvaluationForm_EvaluationFormSection {
68024
68720
  constructor(props: {
68025
68721
  /** The identifier of the section. An identifier must be unique within the evaluation form.
@@ -68030,9 +68726,11 @@ export declare class EvaluationForm_EvaluationFormSection {
68030
68726
  Title: string;
68031
68727
  /** The instructions of the section. */
68032
68728
  Instructions?: string;
68729
+ IsExcludedFromScoring?: boolean;
68033
68730
  /** The items of the section.
68034
68731
  *Minimum*: 1 */
68035
68732
  Items?: EvaluationForm_EvaluationFormItem[];
68733
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
68036
68734
  /** The scoring weight of the section.
68037
68735
  *Minimum*: 0
68038
68736
  *Maximum*: 100 */
@@ -68076,10 +68774,11 @@ export declare class EvaluationForm_ScoringStrategy {
68076
68774
  constructor(props: {
68077
68775
  /** The scoring mode of the evaluation form.
68078
68776
  *Allowed values*: ``QUESTION_ONLY`` | ``SECTION_ONLY`` */
68079
- Mode: "QUESTION_ONLY" | "SECTION_ONLY";
68777
+ Mode: "POINTS_BASED" | "QUESTION_ONLY" | "SECTION_ONLY";
68080
68778
  /** The scoring status of the evaluation form.
68081
68779
  *Allowed values*: ``ENABLED`` | ``DISABLED`` */
68082
68780
  Status: "DISABLED" | "ENABLED";
68781
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
68083
68782
  });
68084
68783
  }
68085
68784
 
@@ -68115,6 +68814,17 @@ export declare class EvaluationFormLanguageConfiguration {
68115
68814
  });
68116
68815
  }
68117
68816
 
68817
+ export declare class EvaluationFormScoreThreshold {
68818
+ constructor(props: {
68819
+ /** The performance category name. */
68820
+ PerformanceCategory: "EXCEEDS_EXPECTATIONS" | "NEEDS_IMPROVEMENT";
68821
+ /** The maximum score percentage for this threshold. */
68822
+ MaxScorePercentage?: number;
68823
+ /** The minimum score percentage for this threshold. */
68824
+ MinScorePercentage?: number;
68825
+ });
68826
+ }
68827
+
68118
68828
  export declare class EvaluationFormSection {
68119
68829
  constructor(props: {
68120
68830
  /** The identifier of the section. An identifier must be unique within the evaluation form.
@@ -68125,9 +68835,11 @@ export declare class EvaluationFormSection {
68125
68835
  Title: string;
68126
68836
  /** The instructions of the section. */
68127
68837
  Instructions?: string;
68838
+ IsExcludedFromScoring?: boolean;
68128
68839
  /** The items of the section.
68129
68840
  *Minimum*: 1 */
68130
68841
  Items?: EvaluationForm_EvaluationFormItem[];
68842
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
68131
68843
  /** The scoring weight of the section.
68132
68844
  *Minimum*: 0
68133
68845
  *Maximum*: 100 */
@@ -69311,15 +70023,16 @@ export declare class ExperimentTemplateLogConfiguration {
69311
70023
  });
69312
70024
  }
69313
70025
 
69314
- export declare class Expiration {
70026
+ export declare class ExpirationDataRule {
69315
70027
  constructor(props: {
69316
- Days?: number;
70028
+ DaysAfterLastAccess: number;
69317
70029
  });
69318
70030
  }
69319
70031
 
69320
- export declare class ExpirationDataRule {
70032
+ export declare class ExpirationSettings {
69321
70033
  constructor(props: {
69322
- DaysAfterLastAccess: number;
70034
+ ExpirationCriterion: "CREATED_TIMESTAMP";
70035
+ ExpirationDays: number;
69323
70036
  });
69324
70037
  }
69325
70038
 
@@ -69558,6 +70271,7 @@ export declare class ExpressGatewayService_ExpressGatewayServiceConfiguration {
69558
70271
  PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
69559
70272
  ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
69560
70273
  ServiceRevisionArn?: string;
70274
+ TaskDefinitionArn?: string;
69561
70275
  TaskRoleArn?: string;
69562
70276
  });
69563
70277
  }
@@ -69633,6 +70347,7 @@ export declare class ExpressGatewayServiceConfiguration {
69633
70347
  PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
69634
70348
  ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
69635
70349
  ServiceRevisionArn?: string;
70350
+ TaskDefinitionArn?: string;
69636
70351
  TaskRoleArn?: string;
69637
70352
  });
69638
70353
  }
@@ -70436,6 +71151,8 @@ export declare class FirewallRuleGroup_FirewallRule {
70436
71151
  FirewallThreatProtectionId?: string;
70437
71152
  /** Qtype */
70438
71153
  Qtype?: string;
71154
+ /** The status of the firewall rule. */
71155
+ Status?: "COMPLETE" | "CREATING" | "CREATION_FAILED";
70439
71156
  });
70440
71157
  }
70441
71158
 
@@ -70443,6 +71160,14 @@ export declare class FirewallRuleGroup_FirewallRuleType {
70443
71160
  constructor(props: {
70444
71161
  FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
70445
71162
  FirewallAdvancedThreatCategory?: FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig;
71163
+ PartnerThreatProtection?: FirewallRuleGroup_PartnerThreatProtectionConfig;
71164
+ });
71165
+ }
71166
+
71167
+ export declare class FirewallRuleGroup_PartnerThreatProtectionConfig {
71168
+ constructor(props: {
71169
+ /** The partner identifier value. */
71170
+ Partner: string;
70446
71171
  });
70447
71172
  }
70448
71173
 
@@ -70468,6 +71193,7 @@ export declare class FirewallRuleType {
70468
71193
  constructor(props: {
70469
71194
  FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
70470
71195
  FirewallAdvancedThreatCategory?: FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig;
71196
+ PartnerThreatProtection?: FirewallRuleGroup_PartnerThreatProtectionConfig;
70471
71197
  });
70472
71198
  }
70473
71199
 
@@ -71715,6 +72441,7 @@ export declare class Function_Code {
71715
72441
  S3Bucket?: string;
71716
72442
  /** The Amazon S3 key of the deployment package. */
71717
72443
  S3Key?: string;
72444
+ S3ObjectStorageMode?: "COPY" | "REFERENCE";
71718
72445
  /** For versioned objects, the version of the deployment package object to use. */
71719
72446
  S3ObjectVersion?: string;
71720
72447
  /** The ARN of the KMSlong (KMS) customer managed key that's used to encrypt your function's .zip deployment package. If you don't provide a customer managed key, Lambda uses an [owned key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk). */
@@ -71739,6 +72466,7 @@ export declare class Function_DurableConfig {
71739
72466
  constructor(props: {
71740
72467
  /** The maximum time (in seconds) that a durable execution can run before timing out. This timeout applies to the entire durable execution, not individual function invocations. */
71741
72468
  ExecutionTimeout: number;
72469
+ KMSKeyArn?: string;
71742
72470
  /** The number of days to retain execution history after a durable execution completes. After this period, execution history is no longer available through the GetDurableExecutionHistory API. */
71743
72471
  RetentionPeriodInDays?: number;
71744
72472
  });
@@ -75302,6 +76030,25 @@ export declare class HudiTarget {
75302
76030
  });
75303
76031
  }
75304
76032
 
76033
+ export declare class HyperParameterSpecification {
76034
+ constructor(props: {
76035
+ Name: string;
76036
+ Type: "Categorical" | "Continuous" | "FreeText" | "Integer";
76037
+ DefaultValue?: string;
76038
+ Description?: string;
76039
+ IsRequired?: boolean;
76040
+ IsTunable?: boolean;
76041
+ Range?: Algorithm_ParameterRange;
76042
+ });
76043
+ }
76044
+
76045
+ export declare class HyperParameterTuningJobObjective {
76046
+ constructor(props: {
76047
+ MetricName: string;
76048
+ Type: "Maximize" | "Minimize";
76049
+ });
76050
+ }
76051
+
75305
76052
  export declare class Hypervisor_Tag {
75306
76053
  constructor(props: {
75307
76054
  Key: string;
@@ -75692,6 +76439,12 @@ export declare class IdentityProviderConfiguration {
75692
76439
  });
75693
76440
  }
75694
76441
 
76442
+ export declare class IdentityProviderVpcConnectionProperties {
76443
+ constructor(props: {
76444
+ VpcConnectionArn: string;
76445
+ });
76446
+ }
76447
+
75695
76448
  export declare class IdentitySourceDetails {
75696
76449
  constructor(props: {
75697
76450
  ClientIds?: string[];
@@ -76607,13 +77360,6 @@ export declare class InboundExternalLink_ResponderErrorMaskingForHttpCode {
76607
77360
  });
76608
77361
  }
76609
77362
 
76610
- export declare class InboundFederation {
76611
- constructor(props: {
76612
- LambdaArn?: string;
76613
- LambdaVersion?: string;
76614
- });
76615
- }
76616
-
76617
77363
  export declare class IncidentTemplate {
76618
77364
  constructor(props: {
76619
77365
  /** The impact value. */
@@ -76689,6 +77435,8 @@ export declare class IndexCapacityConfiguration {
76689
77435
 
76690
77436
  export declare class IndexSettings {
76691
77437
  constructor(props: {
77438
+ /** Custom analysis configuration including analyzers, tokenizers, and filters */
77439
+ Analysis?: Record<string, unknown>;
76692
77440
  Index?: Record<string, unknown>;
76693
77441
  });
76694
77442
  }
@@ -79864,6 +80612,12 @@ export declare class Ipv6Add {
79864
80612
  });
79865
80613
  }
79866
80614
 
80615
+ export declare class IssuerConfiguration {
80616
+ constructor(props: {
80617
+ Type?: "ORIGINAL" | "UPDATED";
80618
+ });
80619
+ }
80620
+
79867
80621
  export declare class IssuerData {
79868
80622
  constructor(props: {
79869
80623
  Name: string;
@@ -81185,6 +81939,13 @@ export declare class KeyAttributes {
81185
81939
  });
81186
81940
  }
81187
81941
 
81942
+ export declare class KeyConfiguration {
81943
+ constructor(props: {
81944
+ KeyType?: UserPool_EncryptionKeyType;
81945
+ KmsKeyArn?: string;
81946
+ });
81947
+ }
81948
+
81188
81949
  export declare class KeyGroup_KeyGroupConfig {
81189
81950
  constructor(props: {
81190
81951
  /** A list of the identifiers of the public keys in the key group. */
@@ -81889,6 +82650,7 @@ export declare class KnowledgeBaseConfiguration {
81889
82650
  constructor(props: {
81890
82651
  Type: BedrockKnowledgeBase_KnowledgeBaseType;
81891
82652
  KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBase_KendraKnowledgeBaseConfiguration;
82653
+ ManagedKnowledgeBaseConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration;
81892
82654
  SqlKnowledgeBaseConfiguration?: BedrockKnowledgeBase_SqlKnowledgeBaseConfiguration;
81893
82655
  VectorKnowledgeBaseConfiguration?: BedrockKnowledgeBase_VectorKnowledgeBaseConfiguration;
81894
82656
  });
@@ -81974,9 +82736,7 @@ export declare class LambdaAuthorizerConfig {
81974
82736
 
81975
82737
  export declare class LambdaCapacityProvider_CapacityProviderLoggingConfig {
81976
82738
  constructor(props: {
81977
- /** The log group name. */
81978
82739
  LogGroup?: string;
81979
- /** System log granularity level */
81980
82740
  SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
81981
82741
  });
81982
82742
  }
@@ -82001,7 +82761,6 @@ export declare class LambdaCapacityProvider_CapacityProviderScalingConfig {
82001
82761
 
82002
82762
  export declare class LambdaCapacityProvider_CapacityProviderTelemetryConfig {
82003
82763
  constructor(props: {
82004
- /** The logging configuration for the capacity provider. */
82005
82764
  LoggingConfig?: LambdaCapacityProvider_CapacityProviderLoggingConfig;
82006
82765
  });
82007
82766
  }
@@ -82028,7 +82787,9 @@ export declare class LambdaCapacityProvider_InstanceRequirements {
82028
82787
 
82029
82788
  export declare class LambdaCapacityProvider_PropagateTagsConfig {
82030
82789
  constructor(props: {
82790
+ /** A list of tags to explicitly propagate to managed resources. Maximum of 40 tags. */
82031
82791
  ExplicitTags?: LambdaCapacityProvider_Tag[];
82792
+ /** The mode for tag propagation. Use ``Explicit`` to propagate specific tags, or ``None`` to disable propagation. */
82032
82793
  Mode?: LambdaCapacityProvider_PropagateTagsMode;
82033
82794
  });
82034
82795
  }
@@ -85933,6 +86694,13 @@ export declare class ManagedBlockchainMember_VotingPolicy {
85933
86694
  });
85934
86695
  }
85935
86696
 
86697
+ export declare class ManagedBlockchainNode_NodeConfiguration {
86698
+ constructor(props: {
86699
+ AvailabilityZone: string;
86700
+ InstanceType: string;
86701
+ });
86702
+ }
86703
+
85936
86704
  export declare class ManagedCertificateRequest {
85937
86705
  constructor(props: {
85938
86706
  /** You can opt out of certificate transparency logging by specifying the ``disabled`` option. Opt in by specifying ``enabled``. For more information, see [Certificate Transparency Logging](https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency) in the *User Guide*. */
@@ -85984,6 +86752,32 @@ export declare class ManagedInstancesStorageConfiguration {
85984
86752
  });
85985
86753
  }
85986
86754
 
86755
+ export declare class ManagedKnowledgeBaseConfiguration {
86756
+ constructor(props: {
86757
+ /** The ARN of the model used to create vector embeddings for the knowledge base. */
86758
+ EmbeddingModelArn?: string;
86759
+ EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
86760
+ EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
86761
+ ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
86762
+ });
86763
+ }
86764
+
86765
+ export declare class ManagedKnowledgeBaseConnectorConfiguration {
86766
+ constructor(props: {
86767
+ /** Connector-specific parameters. */
86768
+ ConnectorParameters?: Record<string, unknown>;
86769
+ DeletionProtectionConfiguration?: BedrockDataSource_DeletionProtectionConfiguration;
86770
+ MediaExtractionConfiguration?: BedrockDataSource_MediaExtractionConfiguration;
86771
+ });
86772
+ }
86773
+
86774
+ export declare class ManagedKnowledgeBaseServerSideEncryptionConfiguration {
86775
+ constructor(props: {
86776
+ /** The ARN of the AWS KMS key used to encrypt the managed knowledge base. */
86777
+ KmsKeyArn?: string;
86778
+ });
86779
+ }
86780
+
85987
86781
  export declare class ManagedLoggingConfiguration {
85988
86782
  constructor(props: {
85989
86783
  /** Enables managed log persistence. */
@@ -86835,14 +87629,6 @@ export declare class MediaConvertJobTemplate_HopDestination {
86835
87629
  });
86836
87630
  }
86837
87631
 
86838
- export declare class MediaExtractionConfiguration {
86839
- constructor(props: {
86840
- AudioExtractionConfiguration?: QBusinessDataSource_AudioExtractionConfiguration;
86841
- ImageExtractionConfiguration?: QBusinessDataSource_ImageExtractionConfiguration;
86842
- VideoExtractionConfiguration?: QBusinessDataSource_VideoExtractionConfiguration;
86843
- });
86844
- }
86845
-
86846
87632
  export declare class MediaItem {
86847
87633
  constructor(props: {
86848
87634
  Type: ConnectWorkspace_MediaType;
@@ -87492,6 +88278,37 @@ export declare class MediaLiveInput_SrtSettingsRequest {
87492
88278
  });
87493
88279
  }
87494
88280
 
88281
+ export declare class MediaLiveNode_NodeInterfaceMapping {
88282
+ constructor(props: {
88283
+ /** The logical name for this interface. */
88284
+ LogicalInterfaceName?: string;
88285
+ /** The network interface mode. */
88286
+ NetworkInterfaceMode?: "BRIDGE" | "NAT";
88287
+ /** The physical interface name. */
88288
+ PhysicalInterfaceName?: string;
88289
+ });
88290
+ }
88291
+
88292
+ export declare class MediaLiveNode_SdiSourceMapping {
88293
+ constructor(props: {
88294
+ /** The card number. */
88295
+ CardNumber?: number;
88296
+ /** The channel number. */
88297
+ ChannelNumber?: number;
88298
+ /** The SDI source. */
88299
+ SdiSource?: string;
88300
+ });
88301
+ }
88302
+
88303
+ export declare class MediaLiveNode_Tag {
88304
+ constructor(props: {
88305
+ /** The key name of the tag. */
88306
+ Key: string;
88307
+ /** The value for the tag. */
88308
+ Value: string;
88309
+ });
88310
+ }
88311
+
87495
88312
  export declare class MediaPackageAsset_EgressEndpoint {
87496
88313
  constructor(props: {
87497
88314
  /** The ID of the PackagingConfiguration being applied to the Asset. */
@@ -88942,7 +89759,9 @@ export declare class MetricCharacteristics {
88942
89759
 
88943
89760
  export declare class MetricConfiguration {
88944
89761
  constructor(props: {
89762
+ /** The list of metric names to configure. The supported metric names are ``CPUUtilization`` and ``MemoryUtilization``. */
88945
89763
  MetricNames: "CPUUtilization" | "MemoryUtilization"[];
89764
+ /** The resolution, in seconds, at which to collect the metrics. The valid values are ``20`` and ``60``. */
88946
89765
  ResolutionSeconds: 20 | 60;
88947
89766
  });
88948
89767
  }
@@ -89954,6 +90773,34 @@ export declare class ModelCard_UserContext {
89954
90773
  });
89955
90774
  }
89956
90775
 
90776
+ export declare class ModelCardExportArtifacts {
90777
+ constructor(props: {
90778
+ /** The Amazon S3 URI of the exported model artifacts. */
90779
+ S3ExportArtifacts: string;
90780
+ });
90781
+ }
90782
+
90783
+ export declare class ModelCardExportJob_ModelCardExportArtifacts {
90784
+ constructor(props: {
90785
+ /** The Amazon S3 URI of the exported model artifacts. */
90786
+ S3ExportArtifacts: string;
90787
+ });
90788
+ }
90789
+
90790
+ export declare class ModelCardExportJob_ModelCardExportOutputConfig {
90791
+ constructor(props: {
90792
+ /** The Amazon S3 output path to export your model card PDF. */
90793
+ S3OutputPath: string;
90794
+ });
90795
+ }
90796
+
90797
+ export declare class ModelCardExportOutputConfig {
90798
+ constructor(props: {
90799
+ /** The Amazon S3 output path to export your model card PDF. */
90800
+ S3OutputPath: string;
90801
+ });
90802
+ }
90803
+
89957
90804
  export declare class ModelDataQuality {
89958
90805
  constructor(props: {
89959
90806
  Constraints?: ModelPackage_MetricsSource;
@@ -90167,6 +91014,12 @@ export declare class ModelInfrastructureConfig {
90167
91014
  });
90168
91015
  }
90169
91016
 
91017
+ export declare class ModelInput {
91018
+ constructor(props: {
91019
+ DataInputConfig: string;
91020
+ });
91021
+ }
91022
+
90170
91023
  export declare class ModelManifest_Tag {
90171
91024
  constructor(props: {
90172
91025
  Key: string;
@@ -90450,28 +91303,6 @@ export declare class ModelPackage_ValidationSpecification {
90450
91303
  });
90451
91304
  }
90452
91305
 
90453
- export declare class ModelPackageContainerDefinition {
90454
- constructor(props: {
90455
- /** The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored. */
90456
- Image: string;
90457
- /** The DNS host name for the Docker container. */
90458
- ContainerHostname?: string;
90459
- Environment?: Record<string, unknown>;
90460
- /** The machine learning framework of the model package container image. */
90461
- Framework?: string;
90462
- /** The framework version of the Model Package Container Image. */
90463
- FrameworkVersion?: string;
90464
- /** An MD5 hash of the training algorithm that identifies the Docker image used for training. */
90465
- ImageDigest?: string;
90466
- ModelDataSource?: ModelPackage_ModelDataSource;
90467
- /** A structure with Model Input details. */
90468
- ModelDataUrl?: string;
90469
- ModelInput?: Record<string, unknown>;
90470
- /** The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model. */
90471
- NearestModelName?: string;
90472
- });
90473
- }
90474
-
90475
91306
  export declare class ModelPackageCreator {
90476
91307
  constructor(props: {
90477
91308
  /** The name of the user's profile in Studio */
@@ -92641,6 +93472,26 @@ export declare class NetworkManagerLink_Tag {
92641
93472
  });
92642
93473
  }
92643
93474
 
93475
+ export declare class NetworkManagerSite_Location {
93476
+ constructor(props: {
93477
+ /** The physical address. */
93478
+ Address?: string;
93479
+ /** The latitude. */
93480
+ Latitude?: string;
93481
+ /** The longitude. */
93482
+ Longitude?: string;
93483
+ });
93484
+ }
93485
+
93486
+ export declare class NetworkManagerSite_Tag {
93487
+ constructor(props: {
93488
+ /** 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 -. */
93489
+ Key: string;
93490
+ /** The value for the tag. You can specify a value that is 0 to 256 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 -. */
93491
+ Value: string;
93492
+ });
93493
+ }
93494
+
92644
93495
  export declare class NetworkPerformanceOptions {
92645
93496
  constructor(props: {
92646
93497
  /** Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:
@@ -92690,13 +93541,6 @@ export declare class NielsenConfiguration {
92690
93541
  });
92691
93542
  }
92692
93543
 
92693
- export declare class Node_NodeConfiguration {
92694
- constructor(props: {
92695
- AvailabilityZone: string;
92696
- InstanceType: string;
92697
- });
92698
- }
92699
-
92700
93544
  export declare class NodeConfig {
92701
93545
  constructor(props: {
92702
93546
  Count?: number;
@@ -92830,6 +93674,17 @@ export declare class NodeGroupConfiguration {
92830
93674
  });
92831
93675
  }
92832
93676
 
93677
+ export declare class NodeInterfaceMapping {
93678
+ constructor(props: {
93679
+ /** The logical name for this interface. */
93680
+ LogicalInterfaceName?: string;
93681
+ /** The network interface mode. */
93682
+ NetworkInterfaceMode?: "BRIDGE" | "NAT";
93683
+ /** The physical interface name. */
93684
+ PhysicalInterfaceName?: string;
93685
+ });
93686
+ }
93687
+
92833
93688
  export declare class NodeOption {
92834
93689
  constructor(props: {
92835
93690
  NodeConfig?: OpenSearchServiceDomain_NodeConfig;
@@ -93336,6 +94191,19 @@ export declare class Oauth2ProviderConfigOutput {
93336
94191
  });
93337
94192
  }
93338
94193
 
94194
+ export declare class OAuthClientApplication_IdentityProviderVpcConnectionProperties {
94195
+ constructor(props: {
94196
+ VpcConnectionArn: string;
94197
+ });
94198
+ }
94199
+
94200
+ export declare class OAuthClientApplication_Tag {
94201
+ constructor(props: {
94202
+ Key: string;
94203
+ Value: string;
94204
+ });
94205
+ }
94206
+
93339
94207
  export declare class ObjectiveFunction {
93340
94208
  constructor(props: {
93341
94209
  /** objective function that training job is optimized for. */
@@ -94020,6 +94888,8 @@ export declare class OpenSearchServerlessFieldMapping {
94020
94888
 
94021
94889
  export declare class OpenSearchServerlessIndex_IndexSettings {
94022
94890
  constructor(props: {
94891
+ /** Custom analysis configuration including analyzers, tokenizers, and filters */
94892
+ Analysis?: Record<string, unknown>;
94023
94893
  Index?: Record<string, unknown>;
94024
94894
  });
94025
94895
  }
@@ -95310,6 +96180,43 @@ export declare class OutpostResolver_Tag {
95310
96180
  });
95311
96181
  }
95312
96182
 
96183
+ export declare class OutpostsSite_Address {
96184
+ constructor(props: {
96185
+ AddressLine1: string;
96186
+ City: string;
96187
+ ContactName: string;
96188
+ ContactPhoneNumber: string;
96189
+ CountryCode: string;
96190
+ PostalCode: string;
96191
+ StateOrRegion: string;
96192
+ AddressLine2?: string;
96193
+ AddressLine3?: string;
96194
+ DistrictOrCounty?: string;
96195
+ Municipality?: string;
96196
+ });
96197
+ }
96198
+
96199
+ export declare class OutpostsSite_RackPhysicalProperties {
96200
+ constructor(props: {
96201
+ FiberOpticCableType?: "MULTI_MODE" | "SINGLE_MODE";
96202
+ MaximumSupportedWeightLbs?: "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS" | "NO_LIMIT";
96203
+ OpticalStandard?: "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_10GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_40GBASE_SR";
96204
+ PowerConnector?: "AH530P7W" | "AH532P6W" | "CS8365C" | "IEC309" | "L6_30P";
96205
+ PowerDrawKva?: "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA" | "POWER_5_KVA";
96206
+ PowerFeedDrop?: "ABOVE_RACK" | "BELOW_RACK";
96207
+ PowerPhase?: "SINGLE_PHASE" | "THREE_PHASE";
96208
+ UplinkCount?: "UPLINK_COUNT_1" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8";
96209
+ UplinkGbps?: "UPLINK_100G" | "UPLINK_10G" | "UPLINK_1G" | "UPLINK_40G";
96210
+ });
96211
+ }
96212
+
96213
+ export declare class OutpostsSite_Tag {
96214
+ constructor(props: {
96215
+ Key: string;
96216
+ Value: string;
96217
+ });
96218
+ }
96219
+
95313
96220
  export declare class OutputArtifact {
95314
96221
  constructor(props: {
95315
96222
  /** The name of the output of an artifact, such as "My App". */
@@ -95777,6 +96684,14 @@ export declare class ParameterObject {
95777
96684
  });
95778
96685
  }
95779
96686
 
96687
+ export declare class ParameterRange {
96688
+ constructor(props: {
96689
+ CategoricalParameterRangeSpecification?: Record<string, unknown>;
96690
+ ContinuousParameterRangeSpecification?: Record<string, unknown>;
96691
+ IntegerParameterRangeSpecification?: Record<string, unknown>;
96692
+ });
96693
+ }
96694
+
95780
96695
  export declare class ParametersInCacheKeyAndForwardedToOrigin {
95781
96696
  constructor(props: {
95782
96697
  /** An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and in requests that CloudFront sends to the origin. */
@@ -96072,6 +96987,13 @@ export declare class Partnership_X12InboundEdiOptions {
96072
96987
  });
96073
96988
  }
96074
96989
 
96990
+ export declare class PartnerThreatProtectionConfig {
96991
+ constructor(props: {
96992
+ /** The partner identifier value. */
96993
+ Partner: string;
96994
+ });
96995
+ }
96996
+
96075
96997
  export declare class PasswordPolicy {
96076
96998
  constructor(props: {
96077
96999
  MinimumLength?: number;
@@ -98383,10 +99305,9 @@ export declare class PrestoParameters {
98383
99305
  });
98384
99306
  }
98385
99307
 
98386
- export declare class PreTokenGenerationConfig {
99308
+ export declare class PrevalidationOptions {
98387
99309
  constructor(props: {
98388
- LambdaArn?: string;
98389
- LambdaVersion?: string;
99310
+ DnsPrevalidation: AcmeDomainValidation_DnsPrevalidationOptions;
98390
99311
  });
98391
99312
  }
98392
99313
 
@@ -99169,7 +100090,9 @@ export declare class PromptVersion_PromptVariant {
99169
100090
 
99170
100091
  export declare class PropagateTagsConfig {
99171
100092
  constructor(props: {
100093
+ /** A list of tags to explicitly propagate to managed resources. Maximum of 40 tags. */
99172
100094
  ExplicitTags?: LambdaCapacityProvider_Tag[];
100095
+ /** The mode for tag propagation. Use ``Explicit`` to propagate specific tags, or ``None`` to disable propagation. */
99173
100096
  Mode?: LambdaCapacityProvider_PropagateTagsMode;
99174
100097
  });
99175
100098
  }
@@ -99385,6 +100308,13 @@ export declare class PublicAccessBlockConfiguration {
99385
100308
  });
99386
100309
  }
99387
100310
 
100311
+ export declare class PublicCertificateAuthority {
100312
+ constructor(props: {
100313
+ /** The allowed key algorithms for certificates issued via this endpoint. */
100314
+ AllowedKeyAlgorithms?: string[];
100315
+ });
100316
+ }
100317
+
99388
100318
  export declare class PublicDnsNamespace_Properties {
99389
100319
  constructor(props: {
99390
100320
  DnsProperties?: PublicDnsNamespace_PublicDnsPropertiesMutable;
@@ -100952,6 +101882,20 @@ export declare class QuickSightDataSource_VpcConnectionProperties {
100952
101882
  });
100953
101883
  }
100954
101884
 
101885
+ export declare class QuickSightFlow_Permission {
101886
+ constructor(props: {
101887
+ Actions: string[];
101888
+ Principal: string;
101889
+ });
101890
+ }
101891
+
101892
+ export declare class QuickSightFlow_StepAliasMapping {
101893
+ constructor(props: {
101894
+ StepAlias: string;
101895
+ StepId: string;
101896
+ });
101897
+ }
101898
+
100955
101899
  export declare class QuickSightTemplate_AnalysisDefaults {
100956
101900
  constructor(props: {
100957
101901
  DefaultNewSheetConfiguration: QuickSightTemplate_DefaultNewSheetConfiguration;
@@ -101791,6 +102735,20 @@ export declare class QuotaShareResourceSharingConfiguration {
101791
102735
  });
101792
102736
  }
101793
102737
 
102738
+ export declare class RackPhysicalProperties {
102739
+ constructor(props: {
102740
+ FiberOpticCableType?: "MULTI_MODE" | "SINGLE_MODE";
102741
+ MaximumSupportedWeightLbs?: "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS" | "NO_LIMIT";
102742
+ OpticalStandard?: "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_10GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_40GBASE_SR";
102743
+ PowerConnector?: "AH530P7W" | "AH532P6W" | "CS8365C" | "IEC309" | "L6_30P";
102744
+ PowerDrawKva?: "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA" | "POWER_5_KVA";
102745
+ PowerFeedDrop?: "ABOVE_RACK" | "BELOW_RACK";
102746
+ PowerPhase?: "SINGLE_PHASE" | "THREE_PHASE";
102747
+ UplinkCount?: "UPLINK_COUNT_1" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8";
102748
+ UplinkGbps?: "UPLINK_100G" | "UPLINK_10G" | "UPLINK_1G" | "UPLINK_40G";
102749
+ });
102750
+ }
102751
+
101794
102752
  export declare class RAMPermission_Tag {
101795
102753
  constructor(props: {
101796
102754
  /** 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 -. */
@@ -105215,6 +106173,13 @@ export declare class RoleValues {
105215
106173
  });
105216
106174
  }
105217
106175
 
106176
+ export declare class RollbackConfig {
106177
+ constructor(props: {
106178
+ /** The timeout in minutes for the version rollback operation. If not specified, defaults to 720 minutes (12 hours). */
106179
+ TimeoutMinutes?: number;
106180
+ });
106181
+ }
106182
+
105218
106183
  export declare class RollingInterval {
105219
106184
  constructor(props: {
105220
106185
  Duration: number;
@@ -107493,6 +108458,13 @@ export declare class SageMakerEndpoint_VariantProperty {
107493
108458
  });
107494
108459
  }
107495
108460
 
108461
+ export declare class SageMakerHub_Tag {
108462
+ constructor(props: {
108463
+ Key: string;
108464
+ Value: string;
108465
+ });
108466
+ }
108467
+
107496
108468
  export declare class SageMakerImage_Tag {
107497
108469
  constructor(props: {
107498
108470
  /** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
@@ -108865,10 +109837,11 @@ export declare class ScoringStrategy {
108865
109837
  constructor(props: {
108866
109838
  /** The scoring mode of the evaluation form.
108867
109839
  *Allowed values*: ``QUESTION_ONLY`` | ``SECTION_ONLY`` */
108868
- Mode: "QUESTION_ONLY" | "SECTION_ONLY";
109840
+ Mode: "POINTS_BASED" | "QUESTION_ONLY" | "SECTION_ONLY";
108869
109841
  /** The scoring status of the evaluation form.
108870
109842
  *Allowed values*: ``ENABLED`` | ``DISABLED`` */
108871
109843
  Status: "DISABLED" | "ENABLED";
109844
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
108872
109845
  });
108873
109846
  }
108874
109847
 
@@ -109055,6 +110028,17 @@ export declare class SdiSource_Tags {
109055
110028
  });
109056
110029
  }
109057
110030
 
110031
+ export declare class SdiSourceMapping {
110032
+ constructor(props: {
110033
+ /** The card number. */
110034
+ CardNumber?: number;
110035
+ /** The channel number. */
110036
+ ChannelNumber?: number;
110037
+ /** The SDI source. */
110038
+ SdiSource?: string;
110039
+ });
110040
+ }
110041
+
109058
110042
  export declare class SearchFilter {
109059
110043
  constructor(props: {
109060
110044
  FilterString: string;
@@ -109628,6 +110612,45 @@ export declare class SecurityHubPolicy {
109628
110612
  });
109629
110613
  }
109630
110614
 
110615
+ export declare class SecurityRequirement {
110616
+ constructor(props: {
110617
+ /** Description of the security requirement */
110618
+ Description: string;
110619
+ /** Security domain this requirement belongs to */
110620
+ Domain: string;
110621
+ /** How to evaluate compliance with this requirement */
110622
+ Evaluation: string;
110623
+ /** Name of the security requirement */
110624
+ Name: string;
110625
+ /** How to remediate non-compliance */
110626
+ Remediation?: string;
110627
+ });
110628
+ }
110629
+
110630
+ export declare class SecurityRequirementPack_SecurityRequirement {
110631
+ constructor(props: {
110632
+ /** Description of the security requirement */
110633
+ Description: string;
110634
+ /** Security domain this requirement belongs to */
110635
+ Domain: string;
110636
+ /** How to evaluate compliance with this requirement */
110637
+ Evaluation: string;
110638
+ /** Name of the security requirement */
110639
+ Name: string;
110640
+ /** How to remediate non-compliance */
110641
+ Remediation?: string;
110642
+ });
110643
+ }
110644
+
110645
+ export declare class SecurityRequirementPack_Tag {
110646
+ constructor(props: {
110647
+ /** The key name of the tag */
110648
+ Key: string;
110649
+ /** The value for the tag */
110650
+ Value: string;
110651
+ });
110652
+ }
110653
+
109631
110654
  export declare class SecurityServicePolicyData {
109632
110655
  constructor(props: {
109633
110656
  Type: FMSPolicy_PolicyType;
@@ -111406,26 +112429,6 @@ export declare class SingularSourceProperties {
111406
112429
  });
111407
112430
  }
111408
112431
 
111409
- export declare class Site_Location {
111410
- constructor(props: {
111411
- /** The physical address. */
111412
- Address?: string;
111413
- /** The latitude. */
111414
- Latitude?: string;
111415
- /** The longitude. */
111416
- Longitude?: string;
111417
- });
111418
- }
111419
-
111420
- export declare class Site_Tag {
111421
- constructor(props: {
111422
- /** 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 -. */
111423
- Key: string;
111424
- /** The value for the tag. You can specify a value that is 0 to 256 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 -. */
111425
- Value: string;
111426
- });
111427
- }
111428
-
111429
112432
  export declare class SiteToSiteVpnAttachment_ProposedNetworkFunctionGroupChange {
111430
112433
  constructor(props: {
111431
112434
  /** The rule number in the policy document that applies to this change. */
@@ -111653,14 +112656,6 @@ export declare class SmsChannelSubtypeConfig {
111653
112656
  });
111654
112657
  }
111655
112658
 
111656
- export declare class SmsConfiguration {
111657
- constructor(props: {
111658
- ExternalId?: string;
111659
- SnsCallerArn?: string;
111660
- SnsRegion?: string;
111661
- });
111662
- }
111663
-
111664
112659
  export declare class SmsMessageTemplateContent {
111665
112660
  constructor(props: {
111666
112661
  Body: MessageTemplate_SmsMessageTemplateContentBody;
@@ -113563,6 +114558,13 @@ export declare class Step_KeyValue {
113563
114558
  });
113564
114559
  }
113565
114560
 
114561
+ export declare class StepAliasMapping {
114562
+ constructor(props: {
114563
+ StepAlias: string;
114564
+ StepId: string;
114565
+ });
114566
+ }
114567
+
113566
114568
  export declare class StepFunctionsAction {
113567
114569
  constructor(props: {
113568
114570
  RoleArn: string;
@@ -116443,24 +117445,9 @@ export declare class TestBotAliasSettings {
116443
117445
  });
116444
117446
  }
116445
117447
 
116446
- export declare class TestCase_Step {
116447
- constructor(props: {
116448
- Action: any;
116449
- Name: string;
116450
- Description?: string;
116451
- });
116452
- }
116453
-
116454
- export declare class TestCase_TestCaseLatestVersion {
116455
- constructor(props: {
116456
- Status: TestCase_TestCaseLifecycle;
116457
- Version: number;
116458
- });
116459
- }
116460
-
116461
117448
  export declare class TestCaseLatestVersion {
116462
117449
  constructor(props: {
116463
- Status: TestCase_TestCaseLifecycle;
117450
+ Status: AppTestTestCase_TestCaseLifecycle;
116464
117451
  Version: number;
116465
117452
  });
116466
117453
  }
@@ -116574,6 +117561,13 @@ export declare class ThreatIntelSet_TagItem {
116574
117561
  });
116575
117562
  }
116576
117563
 
117564
+ export declare class ThresholdConfiguration {
117565
+ constructor(props: {
117566
+ Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
117567
+ Value: number;
117568
+ });
117569
+ }
117570
+
116577
117571
  export declare class ThrottleSettings {
116578
117572
  constructor(props: {
116579
117573
  BurstLimit?: number;
@@ -117661,6 +118655,19 @@ export declare class TrainingMetrics {
117661
118655
  });
117662
118656
  }
117663
118657
 
118658
+ export declare class TrainingSpecification {
118659
+ constructor(props: {
118660
+ SupportedTrainingInstanceTypes: string[];
118661
+ TrainingChannels: Algorithm_ChannelSpecification[];
118662
+ TrainingImage: string;
118663
+ MetricDefinitions?: Algorithm_MetricDefinition[];
118664
+ SupportedHyperParameters?: Algorithm_HyperParameterSpecification[];
118665
+ SupportedTuningJobObjectiveMetrics?: Algorithm_HyperParameterTuningJobObjective[];
118666
+ SupportsDistributedTraining?: boolean;
118667
+ TrainingImageDigest?: string;
118668
+ });
118669
+ }
118670
+
117664
118671
  export declare class TransferCertificate_Tag {
117665
118672
  constructor(props: {
117666
118673
  /** 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 -. */
@@ -118711,6 +119718,19 @@ export declare class UserPool_InviteMessageTemplate {
118711
119718
  });
118712
119719
  }
118713
119720
 
119721
+ export declare class UserPool_IssuerConfiguration {
119722
+ constructor(props: {
119723
+ Type?: "ORIGINAL" | "UPDATED";
119724
+ });
119725
+ }
119726
+
119727
+ export declare class UserPool_KeyConfiguration {
119728
+ constructor(props: {
119729
+ KeyType?: UserPool_EncryptionKeyType;
119730
+ KmsKeyArn?: string;
119731
+ });
119732
+ }
119733
+
118714
119734
  export declare class UserPool_LambdaConfig {
118715
119735
  constructor(props: {
118716
119736
  CreateAuthChallenge?: string;
@@ -118898,6 +119918,72 @@ export declare class UserPoolDomain_RoutingType {
118898
119918
  });
118899
119919
  }
118900
119920
 
119921
+ export declare class UserPoolRegionalConfigurationAttachment_CustomEmailSender {
119922
+ constructor(props: {
119923
+ LambdaArn?: string;
119924
+ LambdaVersion?: string;
119925
+ });
119926
+ }
119927
+
119928
+ export declare class UserPoolRegionalConfigurationAttachment_CustomSMSSender {
119929
+ constructor(props: {
119930
+ LambdaArn?: string;
119931
+ LambdaVersion?: string;
119932
+ });
119933
+ }
119934
+
119935
+ export declare class UserPoolRegionalConfigurationAttachment_EmailConfiguration {
119936
+ constructor(props: {
119937
+ ConfigurationSet?: string;
119938
+ EmailSendingAccount?: string;
119939
+ From?: string;
119940
+ ReplyToEmailAddress?: string;
119941
+ SourceArn?: string;
119942
+ });
119943
+ }
119944
+
119945
+ export declare class UserPoolRegionalConfigurationAttachment_InboundFederation {
119946
+ constructor(props: {
119947
+ LambdaArn?: string;
119948
+ LambdaVersion?: string;
119949
+ });
119950
+ }
119951
+
119952
+ export declare class UserPoolRegionalConfigurationAttachment_LambdaConfig {
119953
+ constructor(props: {
119954
+ CreateAuthChallenge?: string;
119955
+ CustomEmailSender?: UserPoolRegionalConfigurationAttachment_CustomEmailSender;
119956
+ CustomMessage?: string;
119957
+ CustomSMSSender?: UserPoolRegionalConfigurationAttachment_CustomSMSSender;
119958
+ DefineAuthChallenge?: string;
119959
+ InboundFederation?: UserPoolRegionalConfigurationAttachment_InboundFederation;
119960
+ KMSKeyID?: string;
119961
+ PostAuthentication?: string;
119962
+ PostConfirmation?: string;
119963
+ PreAuthentication?: string;
119964
+ PreSignUp?: string;
119965
+ PreTokenGeneration?: string;
119966
+ PreTokenGenerationConfig?: UserPoolRegionalConfigurationAttachment_PreTokenGenerationConfig;
119967
+ UserMigration?: string;
119968
+ VerifyAuthChallengeResponse?: string;
119969
+ });
119970
+ }
119971
+
119972
+ export declare class UserPoolRegionalConfigurationAttachment_PreTokenGenerationConfig {
119973
+ constructor(props: {
119974
+ LambdaArn?: string;
119975
+ LambdaVersion?: string;
119976
+ });
119977
+ }
119978
+
119979
+ export declare class UserPoolRegionalConfigurationAttachment_SmsConfiguration {
119980
+ constructor(props: {
119981
+ ExternalId?: string;
119982
+ SnsCallerArn?: string;
119983
+ SnsRegion?: string;
119984
+ });
119985
+ }
119986
+
118901
119987
  export declare class UserPoolResourceServer_ResourceServerScopeType {
118902
119988
  constructor(props: {
118903
119989
  ScopeDescription: string;
@@ -124143,6 +125229,26 @@ export type AppSyncApi_AuthenticationType =
124143
125229
 
124144
125230
  export type AppSyncApi_EventLogLevel = "ALL" | "DEBUG" | "ERROR" | "INFO" | "NONE";
124145
125231
 
125232
+ export type AppTestTestCase_CaptureTool = "AWS DMS" | "Precisely";
125233
+
125234
+ export type AppTestTestCase_CloudFormationActionType = "Create" | "Delete";
125235
+
125236
+ export type AppTestTestCase_DataSetType = "PS";
125237
+
125238
+ export type AppTestTestCase_Format = "FIXED" | "LINE_SEQUENTIAL" | "VARIABLE";
125239
+
125240
+ export type AppTestTestCase_M2ManagedActionType = "Configure" | "Deconfigure";
125241
+
125242
+ export type AppTestTestCase_M2NonManagedActionType = "Configure" | "Deconfigure";
125243
+
125244
+ export type AppTestTestCase_ScriptType = "Selenium";
125245
+
125246
+ export type AppTestTestCase_SourceDatabase = "z/OS-DB2";
125247
+
125248
+ export type AppTestTestCase_TargetDatabase = "PostgreSQL";
125249
+
125250
+ export type AppTestTestCase_TestCaseLifecycle = "Active" | "Deleting";
125251
+
124146
125252
  export type ARCRegionSwitchPlan_AlarmCondition = "green" | "red";
124147
125253
 
124148
125254
  export type ARCRegionSwitchPlan_AlarmType = "applicationHealth" | "trigger";
@@ -125152,24 +126258,34 @@ export type BedrockDataSource_ContextEnrichmentType = "BEDROCK_FOUNDATION_MODEL"
125152
126258
 
125153
126259
  export type BedrockDataSource_DataDeletionPolicy = "DELETE" | "RETAIN";
125154
126260
 
125155
- export type BedrockDataSource_DataSourceStatus = "AVAILABLE" | "DELETE_UNSUCCESSFUL" | "DELETING";
126261
+ export type BedrockDataSource_DataSourceStatus =
126262
+ | "AVAILABLE"
126263
+ | "CREATING"
126264
+ | "DELETE_UNSUCCESSFUL"
126265
+ | "DELETING"
126266
+ | "FAILED"
126267
+ | "UPDATING";
125156
126268
 
125157
126269
  export type BedrockDataSource_DataSourceType =
125158
126270
  | "CONFLUENCE"
125159
126271
  | "CUSTOM"
126272
+ | "MANAGED_KNOWLEDGE_BASE_CONNECTOR"
125160
126273
  | "REDSHIFT_METADATA"
125161
126274
  | "S3"
125162
126275
  | "SALESFORCE"
125163
126276
  | "SHAREPOINT"
125164
126277
  | "WEB";
125165
126278
 
126279
+ export type BedrockDataSource_EnabledOrDisabledState = "DISABLED" | "ENABLED";
126280
+
125166
126281
  export type BedrockDataSource_EnrichmentStrategyMethod = "CHUNK_ENTITY_EXTRACTION";
125167
126282
 
125168
126283
  export type BedrockDataSource_ParsingModality = "MULTIMODAL";
125169
126284
 
125170
126285
  export type BedrockDataSource_ParsingStrategy =
125171
126286
  | "BEDROCK_DATA_AUTOMATION"
125172
- | "BEDROCK_FOUNDATION_MODEL";
126287
+ | "BEDROCK_FOUNDATION_MODEL"
126288
+ | "SMART_PARSING";
125173
126289
 
125174
126290
  export type BedrockDataSource_WebScopeType = "HOST_ONLY" | "SUBDOMAINS";
125175
126291
 
@@ -125212,6 +126328,8 @@ export type BedrockFlow_SupportedLanguages = "Python_3";
125212
126328
 
125213
126329
  export type BedrockFlow_VectorSearchRerankingConfigurationType = "BEDROCK_RERANKING_MODEL";
125214
126330
 
126331
+ export type BedrockKnowledgeBase_EmbeddingModelType = "CUSTOM" | "MANAGED";
126332
+
125215
126333
  export type BedrockKnowledgeBase_InclusionType = "EXCLUDE" | "INCLUDE";
125216
126334
 
125217
126335
  export type BedrockKnowledgeBase_KnowledgeBaseStatus =
@@ -125220,6 +126338,7 @@ export type BedrockKnowledgeBase_KnowledgeBaseStatus =
125220
126338
  | "DELETE_UNSUCCESSFUL"
125221
126339
  | "DELETING"
125222
126340
  | "FAILED"
126341
+ | "UPDATE_UNSUCCESSFUL"
125223
126342
  | "UPDATING";
125224
126343
 
125225
126344
  export type BedrockKnowledgeBase_KnowledgeBaseStorageType =
@@ -125231,7 +126350,7 @@ export type BedrockKnowledgeBase_KnowledgeBaseStorageType =
125231
126350
  | "RDS"
125232
126351
  | "S3_VECTORS";
125233
126352
 
125234
- export type BedrockKnowledgeBase_KnowledgeBaseType = "KENDRA" | "SQL" | "VECTOR";
126353
+ export type BedrockKnowledgeBase_KnowledgeBaseType = "KENDRA" | "MANAGED" | "SQL" | "VECTOR";
125235
126354
 
125236
126355
  export type BedrockKnowledgeBase_QueryEngineType = "REDSHIFT";
125237
126356
 
@@ -127434,6 +128553,24 @@ export type MediaLiveCluster_ClusterType =
127434
128553
  | "OUTPOSTS_RACK"
127435
128554
  | "OUTPOSTS_SERVER";
127436
128555
 
128556
+ export type MediaLiveNode_NodeConnectionState = "CONNECTED" | "DISCONNECTED";
128557
+
128558
+ export type MediaLiveNode_NodeRole = "ACTIVE" | "BACKUP";
128559
+
128560
+ export type MediaLiveNode_NodeState =
128561
+ | "ACTIVATION_FAILED"
128562
+ | "ACTIVE"
128563
+ | "CREATED"
128564
+ | "DEREGISTERED"
128565
+ | "DEREGISTERING"
128566
+ | "DEREGISTRATION_FAILED"
128567
+ | "DRAINING"
128568
+ | "IN_USE"
128569
+ | "READY"
128570
+ | "READY_TO_ACTIVATE"
128571
+ | "REGISTERING"
128572
+ | "REGISTRATION_FAILED";
128573
+
127437
128574
  export type MediaPackageOriginEndpoint_AdsOnDeliveryRestrictions =
127438
128575
  | "BOTH"
127439
128576
  | "NONE"
@@ -127998,6 +129135,8 @@ export type PCAConnectorADTemplate_ValidityPeriodType =
127998
129135
 
127999
129136
  export type PCAConnectorSCEPConnector_ConnectorType = "GENERAL_PURPOSE" | "INTUNE";
128000
129137
 
129138
+ export type Pentest_CleanUpStrategy = "BEST_EFFORT_DELETE" | "RETAIN_ALL";
129139
+
128001
129140
  export type Pentest_CodeRemediationStrategy = "AUTOMATIC" | "DISABLED";
128002
129141
 
128003
129142
  export type Pentest_RiskType =
@@ -128030,6 +129169,8 @@ export type Pentest_RiskType =
128030
129169
  | "UNKNOWN"
128031
129170
  | "XML_EXTERNAL_ENTITY";
128032
129171
 
129172
+ export type Pentest_SkillType = "FINDING_PERSONALIZATION" | "LOGIN_OPTIMIZATION";
129173
+
128033
129174
  export type Pipe_AssignPublicIp = "DISABLED" | "ENABLED";
128034
129175
 
128035
129176
  export type Pipe_BatchJobDependencyType = "N_TO_N" | "SEQUENTIAL";
@@ -128806,6 +129947,8 @@ export type QuickSightDataSource_ResourceStatus =
128806
129947
 
128807
129948
  export type QuickSightDataSource_StarburstProductType = "ENTERPRISE" | "GALAXY";
128808
129949
 
129950
+ export type QuickSightFlow_FlowPublishState = "DRAFT" | "PENDING_APPROVAL" | "PUBLISHED";
129951
+
128809
129952
  export type QuickSightTemplate_AnchorOption = "NOW";
128810
129953
 
128811
129954
  export type QuickSightTemplate_ArcThickness = "LARGE" | "MEDIUM" | "SMALL" | "WHOLE";
@@ -130453,26 +131596,6 @@ export type Terms_TermsEnforcementType = "NONE";
130453
131596
 
130454
131597
  export type Terms_TermsSourceType = "LINK";
130455
131598
 
130456
- export type TestCase_CaptureTool = "AWS DMS" | "Precisely";
130457
-
130458
- export type TestCase_CloudFormationActionType = "Create" | "Delete";
130459
-
130460
- export type TestCase_DataSetType = "PS";
130461
-
130462
- export type TestCase_Format = "FIXED" | "LINE_SEQUENTIAL" | "VARIABLE";
130463
-
130464
- export type TestCase_M2ManagedActionType = "Configure" | "Deconfigure";
130465
-
130466
- export type TestCase_M2NonManagedActionType = "Configure" | "Deconfigure";
130467
-
130468
- export type TestCase_ScriptType = "Selenium";
130469
-
130470
- export type TestCase_SourceDatabase = "z/OS-DB2";
130471
-
130472
- export type TestCase_TargetDatabase = "PostgreSQL";
130473
-
130474
- export type TestCase_TestCaseLifecycle = "Active" | "Deleting";
130475
-
130476
131599
  export type TimestreamScheduledQuery_DimensionValueType = "VARCHAR";
130477
131600
 
130478
131601
  export type TimestreamScheduledQuery_EncryptionOption = "SSE_KMS" | "SSE_S3";
@@ -130572,6 +131695,8 @@ export type TrustAnchor_NotificationEvent =
130572
131695
 
130573
131696
  export type TrustAnchor_TrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE";
130574
131697
 
131698
+ export type UserPool_EncryptionKeyType = "AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY";
131699
+
130575
131700
  export type UserSettings_ColorTheme = "Dark" | "Light";
130576
131701
 
130577
131702
  export type UserSettings_EnabledType = "Disabled" | "Enabled";