@intentius/chant-lexicon-aws 0.13.1 → 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. */
@@ -2309,6 +2359,8 @@ export declare class AppStreamStack {
2309
2359
  constructor(props: {
2310
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. */
2311
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;
2312
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. */
2313
2365
  ApplicationSettings?: AppStreamStack_ApplicationSettings;
2314
2366
  /** The stack attributes to delete. */
@@ -2510,6 +2562,29 @@ export declare class AppSyncGraphQLApi {
2510
2562
  readonly RealtimeUrl: string;
2511
2563
  }
2512
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
+
2513
2588
  export declare class APSAnomalyDetector {
2514
2589
  constructor(props: {
2515
2590
  /** The AnomalyDetector alias. */
@@ -2653,62 +2728,6 @@ export declare class AssessmentTemplate {
2653
2728
  readonly Arn: string;
2654
2729
  }
2655
2730
 
2656
- export declare class AssetBundleExportJob {
2657
- constructor(props: {
2658
- /** The ID of the export job. */
2659
- AssetBundleExportJobId: string;
2660
- /** The export data format. */
2661
- ExportFormat: "CLOUDFORMATION_JSON" | "QUICKSIGHT_JSON";
2662
- /** An array of resource ARNs to export. */
2663
- ResourceArns: string[];
2664
- /** The Amazon Resource Name (ARN) for the export job. */
2665
- Arn?: string;
2666
- /** The ID of the Amazon Web Services account to export assets from. */
2667
- AwsAccountId?: string;
2668
- /** The time that the export job was created. */
2669
- CreatedTime?: string;
2670
- /** A Boolean that determines whether all dependencies of each resource ARN are recursively exported with the job. */
2671
- IncludeAllDependencies?: boolean;
2672
- /** A setting that indicates whether you want to include folder assets. */
2673
- IncludeFolderMembers?: "NONE" | "ONE_LEVEL" | "RECURSE";
2674
- /** A Boolean that determines if the exported asset carries over information about the folders that the asset is a member of. */
2675
- IncludeFolderMemberships?: boolean;
2676
- /** A Boolean that determines whether all permissions for each resource ARN are exported with the job. */
2677
- IncludePermissions?: boolean;
2678
- /** A Boolean that determines whether all tags for each resource ARN are exported with the job. */
2679
- IncludeTags?: boolean;
2680
- /** Indicates the status of a job through its queuing and execution. */
2681
- JobStatus?: "FAILED" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
2682
- }, attributes?: CFResourceAttributes);
2683
- readonly Arn: string;
2684
- readonly CreatedTime: string;
2685
- readonly JobStatus: "FAILED" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
2686
- }
2687
-
2688
- export declare class AssetBundleImportJob {
2689
- constructor(props: {
2690
- /** The ID of the import job. */
2691
- AssetBundleImportJobId: string;
2692
- /** The Amazon Resource Name (ARN) for the import job. */
2693
- Arn?: string;
2694
- /** The source of the asset bundle zip file. */
2695
- AssetBundleImportSource?: AssetBundleImportJob_AssetBundleImportSourceDescription;
2696
- /** The ID of the Amazon Web Services account to import assets into. */
2697
- AwsAccountId?: string;
2698
- /** The time that the import job was created. */
2699
- CreatedTime?: string;
2700
- /** The failure action for the import job. */
2701
- FailureAction?: "DO_NOTHING" | "ROLLBACK";
2702
- /** Indicates the status of the import job. */
2703
- JobStatus?: "FAILED" | "FAILED_ROLLBACK_COMPLETED" | "FAILED_ROLLBACK_ERROR" | "FAILED_ROLLBACK_IN_PROGRESS" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
2704
- /** An optional validation strategy override for all analyses and dashboards. */
2705
- OverrideValidationStrategy?: AssetBundleImportJob_AssetBundleImportJobOverrideValidationStrategy;
2706
- }, attributes?: CFResourceAttributes);
2707
- readonly Arn: string;
2708
- readonly CreatedTime: string;
2709
- readonly JobStatus: "FAILED" | "FAILED_ROLLBACK_COMPLETED" | "FAILED_ROLLBACK_ERROR" | "FAILED_ROLLBACK_IN_PROGRESS" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
2710
- }
2711
-
2712
2731
  export declare class AssetModel {
2713
2732
  constructor(props: {
2714
2733
  /** A unique, friendly name for the asset model. */
@@ -4154,44 +4173,27 @@ export declare class BudgetsAction {
4154
4173
  readonly ActionId: string;
4155
4174
  }
4156
4175
 
4157
- export declare class BuildBatch {
4176
+ export declare class Build {
4158
4177
  constructor(props: {
4159
- /** The Amazon Resource Name (ARN) of the batch build. */
4160
- Arn?: string;
4161
- /** The number of the batch build. */
4162
- BuildBatchNumber?: number;
4163
- /** The current status of the batch build. */
4164
- BuildBatchStatus?: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
4165
- /** How long, in minutes, for CodeBuild to wait before timing out the batch build. */
4166
- BuildTimeoutInMinutes?: number;
4167
- /** Whether the batch build is complete. */
4168
- Complete?: boolean;
4169
- /** The current build phase of the batch build. */
4170
- CurrentPhase?: string;
4171
- /** The KMS key used to encrypt the batch build output artifacts. */
4172
- EncryptionKey?: string;
4173
- /** The unique ID for the batch build. */
4174
- Id?: string;
4175
- /** The entity that started the batch build. */
4176
- Initiator?: string;
4177
- /** The name of the CodeBuild build project. */
4178
- ProjectName?: string;
4179
- /** The number of minutes a batch build is allowed to be queued before it times out. */
4180
- QueuedTimeoutInMinutes?: number;
4181
- /** When the batch build started, in ISO 8601 format. */
4182
- StartTime?: string;
4178
+ /** The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift build resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift build ARN, the resource ID matches the BuildId value. */
4179
+ BuildArn?: string;
4180
+ /** A unique identifier for a build to be deployed on the new fleet. If you are deploying the fleet with a custom game build, you must specify this property. The build must have been successfully uploaded to Amazon GameLift and be in a READY status. This fleet setting cannot be changed once the fleet is created. */
4181
+ BuildId?: string;
4182
+ /** A descriptive label that is associated with a build. Build names do not need to be unique. */
4183
+ Name?: string;
4184
+ /** The operating system that the game server binaries are built to run on. This value determines the type of fleet resources that you can use for this build. If your game build contains multiple executables, they all must run on the same operating system. If an operating system is not specified when creating a build, Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be changed later. */
4185
+ OperatingSystem?: "AMAZON_LINUX" | "AMAZON_LINUX_2" | "AMAZON_LINUX_2023" | "WINDOWS_2012" | "WINDOWS_2016" | "WINDOWS_2022";
4186
+ /** A server SDK version you used when integrating your game server build with Amazon GameLift. By default Amazon GameLift sets this value to 4.0.2. */
4187
+ ServerSdkVersion?: string;
4188
+ /** Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region. */
4189
+ StorageLocation?: Build_StorageLocation;
4190
+ /** An array of key-value pairs to apply to this resource. */
4191
+ Tags?: Build_Tag[];
4192
+ /** Version information that is associated with this build. Version strings do not need to be unique. */
4193
+ Version?: string;
4183
4194
  }, attributes?: CFResourceAttributes);
4184
- readonly Arn: string;
4185
- readonly BuildBatchNumber: number;
4186
- readonly BuildBatchStatus: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
4187
- readonly BuildTimeoutInMinutes: number;
4188
- readonly Complete: boolean;
4189
- readonly CurrentPhase: string;
4190
- readonly EncryptionKey: string;
4191
- readonly Id: string;
4192
- readonly Initiator: string;
4193
- readonly QueuedTimeoutInMinutes: number;
4194
- readonly StartTime: string;
4195
+ readonly BuildArn: string;
4196
+ readonly BuildId: string;
4195
4197
  }
4196
4198
 
4197
4199
  export declare class CACertificate {
@@ -5558,52 +5560,6 @@ export declare class CodeArtifactRepository {
5558
5560
  readonly Name: string;
5559
5561
  }
5560
5562
 
5561
- export declare class CodeBuildBuild {
5562
- constructor(props: {
5563
- /** The Amazon Resource Name (ARN) of the build. */
5564
- Arn?: string;
5565
- /** Whether the build is complete. */
5566
- BuildComplete?: boolean;
5567
- /** The number of the build. */
5568
- BuildNumber?: number;
5569
- /** The current status of the build. */
5570
- BuildStatus?: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
5571
- /** The current build phase. */
5572
- CurrentPhase?: string;
5573
- /** The KMS key used to encrypt the build output artifacts. */
5574
- EncryptionKey?: string;
5575
- /** When the build process ended, in ISO 8601 format. */
5576
- EndTime?: string;
5577
- /** The unique ID for the build (format: projectName:buildId). */
5578
- Id?: string;
5579
- /** The entity that started the build. */
5580
- Initiator?: string;
5581
- /** The name of the CodeBuild build project. */
5582
- ProjectName?: string;
5583
- /** The number of minutes a build is allowed to be queued before it times out. */
5584
- QueuedTimeoutInMinutes?: number;
5585
- /** The name of a service role used for this build. */
5586
- ServiceRole?: string;
5587
- /** When the build process started, in ISO 8601 format. */
5588
- StartTime?: string;
5589
- /** How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out the build. */
5590
- TimeoutInMinutes?: number;
5591
- }, attributes?: CFResourceAttributes);
5592
- readonly Arn: string;
5593
- readonly BuildComplete: boolean;
5594
- readonly BuildNumber: number;
5595
- readonly BuildStatus: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
5596
- readonly CurrentPhase: string;
5597
- readonly EncryptionKey: string;
5598
- readonly EndTime: string;
5599
- readonly Id: string;
5600
- readonly Initiator: string;
5601
- readonly QueuedTimeoutInMinutes: number;
5602
- readonly ServiceRole: string;
5603
- readonly StartTime: string;
5604
- readonly TimeoutInMinutes: number;
5605
- }
5606
-
5607
5563
  export declare class CodeBuildFleet {
5608
5564
  constructor(props: {
5609
5565
  Arn?: string;
@@ -5751,6 +5707,8 @@ export declare class CodePipelinePipeline {
5751
5707
  RoleArn: string;
5752
5708
  /** Represents information about a stage and its definition. */
5753
5709
  Stages: CodePipelinePipeline_StageDeclaration[];
5710
+ /** The Amazon Resource Name (ARN) of the pipeline. */
5711
+ Arn?: string;
5754
5712
  /** The S3 bucket where artifacts for the pipeline are stored. */
5755
5713
  ArtifactStore?: CodePipelinePipeline_ArtifactStore;
5756
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. */
@@ -5774,6 +5732,7 @@ export declare class CodePipelinePipeline {
5774
5732
  /** The version of the pipeline. */
5775
5733
  Version?: string;
5776
5734
  }, attributes?: CFResourceAttributes);
5735
+ readonly Arn: string;
5777
5736
  readonly Version: string;
5778
5737
  }
5779
5738
 
@@ -5971,35 +5930,6 @@ export declare class Command {
5971
5930
  readonly CommandArn: string;
5972
5931
  }
5973
5932
 
5974
- export declare class CommonControl {
5975
- constructor(props: {
5976
- /** The Amazon Resource Name (ARN) that identifies the common control. */
5977
- Arn?: string;
5978
- /** The unique identifier of the common control. */
5979
- CommonControlId?: string;
5980
- /** The time when the common control was created. */
5981
- CreateTime?: string;
5982
- /** The description of the common control. */
5983
- Description?: string;
5984
- /** The domain that the common control belongs to. */
5985
- Domain?: Record<string, unknown>;
5986
- /** The time when the common control was most recently updated. */
5987
- LastUpdateTime?: string;
5988
- /** The name of the common control. */
5989
- Name?: string;
5990
- /** The objective that the common control belongs to. */
5991
- Objective?: Record<string, unknown>;
5992
- }, attributes?: CFResourceAttributes);
5993
- readonly Arn: string;
5994
- readonly CommonControlId: string;
5995
- readonly CreateTime: string;
5996
- readonly Description: string;
5997
- readonly Domain: Record<string, unknown>;
5998
- readonly LastUpdateTime: string;
5999
- readonly Name: string;
6000
- readonly Objective: Record<string, unknown>;
6001
- }
6002
-
6003
5933
  export declare class ComponentType {
6004
5934
  constructor(props: {
6005
5935
  /** The ID of the component type. */
@@ -6969,6 +6899,36 @@ export declare class ConnectSecurityProfile {
6969
6899
  readonly SecurityProfileArn: string;
6970
6900
  }
6971
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
+
6972
6932
  export declare class ConnectUser {
6973
6933
  constructor(props: {
6974
6934
  /** The identifier of the Amazon Connect instance. */
@@ -7396,42 +7356,6 @@ export declare class ContinuousDeploymentPolicy {
7396
7356
  readonly LastModifiedTime: string;
7397
7357
  }
7398
7358
 
7399
- export declare class Control {
7400
- constructor(props: {
7401
- /** A list of alternative identifiers for the control. */
7402
- Aliases?: string[];
7403
- /** The Amazon Resource Name (ARN) of the control. */
7404
- Arn?: string;
7405
- /** A term that identifies the control's functional behavior. */
7406
- Behavior?: "DETECTIVE" | "PREVENTIVE" | "PROACTIVE";
7407
- /** The unique opaque identifier of the control. */
7408
- ControlId?: string;
7409
- /** A timestamp that notes the time when the control was released. */
7410
- CreateTime?: string;
7411
- /** A description of what the control does. */
7412
- Description?: string;
7413
- /** A list of AWS resource types that are governed by this control. */
7414
- GovernedResources?: string[];
7415
- Implementation?: Control_ImplementationDetails;
7416
- /** The display name of the control. */
7417
- Name?: string;
7418
- RegionConfiguration?: Control_RegionConfiguration;
7419
- /** The severity of the control. */
7420
- Severity?: "CRITICAL" | "HIGH" | "LOW" | "MEDIUM";
7421
- }, attributes?: CFResourceAttributes);
7422
- readonly Aliases: string[];
7423
- readonly Arn: string;
7424
- readonly Behavior: "DETECTIVE" | "PREVENTIVE" | "PROACTIVE";
7425
- readonly ControlId: string;
7426
- readonly CreateTime: string;
7427
- readonly Description: string;
7428
- readonly GovernedResources: string[];
7429
- readonly Implementation: Control_ImplementationDetails;
7430
- readonly Name: string;
7431
- readonly RegionConfiguration: Control_RegionConfiguration;
7432
- readonly Severity: "CRITICAL" | "HIGH" | "LOW" | "MEDIUM";
7433
- }
7434
-
7435
7359
  export declare class ControlPanel {
7436
7360
  constructor(props: {
7437
7361
  /** The name of the control panel. You can use any non-white space character in the name. */
@@ -8262,11 +8186,10 @@ export declare class DataCatalog {
8262
8186
 
8263
8187
  export declare class DataCatalogEncryptionSettings {
8264
8188
  constructor(props: {
8189
+ /** The ID of the Data Catalog in which the settings are created. */
8265
8190
  CatalogId: string;
8266
8191
  DataCatalogEncryptionSettings: DataCatalogEncryptionSettings_DataCatalogEncryptionSettings;
8267
- Id?: string;
8268
8192
  }, attributes?: CFResourceAttributes);
8269
- readonly Id: string;
8270
8193
  }
8271
8194
 
8272
8195
  export declare class DataCellsFilter {
@@ -8288,30 +8211,6 @@ export declare class DataCellsFilter {
8288
8211
  }, attributes?: CFResourceAttributes);
8289
8212
  }
8290
8213
 
8291
- export declare class DataDeletionJob {
8292
- constructor(props: {
8293
- /** The creation date and time of the data deletion job. */
8294
- CreationDateTime?: string;
8295
- /** The Amazon Resource Name (ARN) of the data deletion job. */
8296
- DataDeletionJobArn?: string;
8297
- /** The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. */
8298
- DatasetGroupArn?: string;
8299
- DataSource?: DataDeletionJob_DataSource;
8300
- /** The name for the data deletion job. */
8301
- JobName?: string;
8302
- /** The date and time the data deletion job was last updated. */
8303
- LastUpdatedDateTime?: string;
8304
- /** The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source. */
8305
- RoleArn?: string;
8306
- /** The status of the data deletion job. */
8307
- Status?: string;
8308
- }, attributes?: CFResourceAttributes);
8309
- readonly CreationDateTime: string;
8310
- readonly DataDeletionJobArn: string;
8311
- readonly LastUpdatedDateTime: string;
8312
- readonly Status: string;
8313
- }
8314
-
8315
8214
  export declare class DataflowEndpointGroup {
8316
8215
  constructor(props: {
8317
8216
  EndpointDetails: DataflowEndpointGroup_EndpointDetails[];
@@ -11666,30 +11565,6 @@ export declare class DSQLCluster {
11666
11565
  readonly VpcEndpointServiceName: string;
11667
11566
  }
11668
11567
 
11669
- export declare class DynamoDBStream {
11670
- constructor(props: {
11671
- /** The date and time when the request to create this stream was issued. */
11672
- CreationRequestDateTime?: string;
11673
- /** The key attribute(s) of the stream's DynamoDB table. */
11674
- KeySchema?: Record<string, unknown>[];
11675
- /** The Amazon Resource Name (ARN) for the stream. */
11676
- StreamArn?: string;
11677
- /** A timestamp, in ISO 8601 format, for this stream. */
11678
- StreamLabel?: string;
11679
- /** Indicates the current status of the stream. */
11680
- StreamStatus?: "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
11681
- /** Indicates the format of the records within this stream. */
11682
- StreamViewType?: "KEYS_ONLY" | "NEW_AND_OLD_IMAGES" | "NEW_IMAGE" | "OLD_IMAGE";
11683
- /** The DynamoDB table with which the stream is associated. */
11684
- TableName?: string;
11685
- }, attributes?: CFResourceAttributes);
11686
- readonly CreationRequestDateTime: string;
11687
- readonly KeySchema: Record<string, unknown>[];
11688
- readonly StreamArn: string;
11689
- readonly StreamLabel: string;
11690
- readonly StreamStatus: "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
11691
- }
11692
-
11693
11568
  export declare class EC2CapacityReservation {
11694
11569
  constructor(props: {
11695
11570
  InstanceCount: number;
@@ -12087,6 +11962,7 @@ export declare class EcsService {
12087
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*.
12088
11963
  To remove this property from your service resource, specify an empty ``LoadBalancer`` array. */
12089
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. */
12090
11966
  Monitoring?: EcsService_MonitoringConfiguration;
12091
11967
  Name?: string;
12092
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*. */
@@ -12406,6 +12282,7 @@ export declare class EKSCluster {
12406
12282
  OpenIdConnectIssuerUrl?: string;
12407
12283
  OutpostConfig?: EKSCluster_OutpostConfig;
12408
12284
  RemoteNetworkConfig?: EKSCluster_RemoteNetworkConfig;
12285
+ RollbackConfig?: EKSCluster_RollbackConfig;
12409
12286
  StorageConfig?: EKSCluster_StorageConfig;
12410
12287
  /** An array of key-value pairs to apply to this resource. */
12411
12288
  Tags?: EKSCluster_Tag[];
@@ -13818,16 +13695,12 @@ export declare class EvidentlySegment {
13818
13695
 
13819
13696
  export declare class EVSEnvironment {
13820
13697
  constructor(props: {
13821
- ConnectivityInfo: Record<string, unknown>;
13822
- /** The license information for an EVS environment */
13823
- LicenseInfo: Record<string, unknown>;
13824
13698
  ServiceAccessSubnetId: string;
13825
- SiteId: string;
13826
13699
  TermsAccepted: boolean;
13827
- VcfHostnames: Record<string, unknown>;
13828
- VcfVersion: "VCF-5.2.1" | "VCF-5.2.2";
13700
+ VcfVersion: "SELF_DEPLOYED" | "VCF-5.2.1" | "VCF-5.2.2";
13829
13701
  VpcId: string;
13830
13702
  Checks?: EVSEnvironment_Check[];
13703
+ ConnectivityInfo?: Record<string, unknown>;
13831
13704
  CreatedAt?: string;
13832
13705
  Credentials?: EVSEnvironment_Secret[];
13833
13706
  EnvironmentArn?: string;
@@ -13840,11 +13713,15 @@ export declare class EVSEnvironment {
13840
13713
  /** The initial Vlan configuration only required upon creation. Modification after creation will have no effect */
13841
13714
  InitialVlans?: Record<string, unknown>;
13842
13715
  KmsKeyId?: string;
13716
+ /** The license information for an EVS environment */
13717
+ LicenseInfo?: Record<string, unknown>;
13843
13718
  ModifiedAt?: string;
13844
13719
  ServiceAccessSecurityGroups?: Record<string, unknown>;
13720
+ SiteId?: string;
13845
13721
  StateDetails?: string;
13846
13722
  /** An array of key-value pairs to apply to this resource. */
13847
13723
  Tags?: EVSEnvironment_Tag[];
13724
+ VcfHostnames?: Record<string, unknown>;
13848
13725
  }, attributes?: CFResourceAttributes);
13849
13726
  readonly Checks: EVSEnvironment_Check[];
13850
13727
  readonly CreatedAt: string;
@@ -13921,23 +13798,24 @@ export declare class Export {
13921
13798
 
13922
13799
  export declare class ExpressGatewayService {
13923
13800
  constructor(props: {
13924
- ExecutionRoleArn: string;
13925
13801
  InfrastructureRoleArn: string;
13926
- PrimaryContainer: ExpressGatewayService_ExpressGatewayContainer;
13927
13802
  ActiveConfigurations?: ExpressGatewayService_ExpressGatewayServiceConfiguration[];
13928
13803
  Cluster?: string;
13929
13804
  Cpu?: string;
13930
13805
  CreatedAt?: string;
13931
13806
  ECSManagedResourceArns?: ExpressGatewayService_ECSManagedResourceArns;
13932
13807
  Endpoint?: string;
13808
+ ExecutionRoleArn?: string;
13933
13809
  HealthCheckPath?: string;
13934
13810
  Memory?: string;
13935
13811
  NetworkConfiguration?: ExpressGatewayService_ExpressGatewayServiceNetworkConfiguration;
13812
+ PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
13936
13813
  ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
13937
13814
  ServiceArn?: string;
13938
13815
  ServiceName?: string;
13939
13816
  Status?: ExpressGatewayService_ExpressGatewayServiceStatus;
13940
13817
  Tags?: ExpressGatewayService_Tag[];
13818
+ TaskDefinitionArn?: string;
13941
13819
  TaskRoleArn?: string;
13942
13820
  UpdatedAt?: string;
13943
13821
  }, attributes?: CFResourceAttributes);
@@ -14283,24 +14161,6 @@ export declare class Firewall {
14283
14161
  readonly TransitGatewayAttachmentId: string;
14284
14162
  }
14285
14163
 
14286
- export declare class FirewallConfig {
14287
- constructor(props: {
14288
- /** The ARN of the firewall configuration. */
14289
- Arn?: string;
14290
- /** Determines how DNS Firewall operates during failures. By default, fail open is disabled, which means the failure mode is closed. If you enable this option, the failure mode is open. This behavior is only enforced for VPCs that have at least one DNS Firewall rule group association. */
14291
- FirewallFailOpen?: "DISABLED" | "ENABLED" | "USE_LOCAL_RESOURCE_SETTING";
14292
- /** The ID of the firewall configuration. */
14293
- Id?: string;
14294
- /** The Amazon Web Services account ID of the owner of the VPC that this firewall configuration applies to. */
14295
- OwnerId?: string;
14296
- /** The ID of the VPC that this firewall configuration applies to. */
14297
- ResourceId?: string;
14298
- }, attributes?: CFResourceAttributes);
14299
- readonly Arn: string;
14300
- readonly Id: string;
14301
- readonly OwnerId: string;
14302
- }
14303
-
14304
14164
  export declare class FirewallPolicy {
14305
14165
  constructor(props: {
14306
14166
  FirewallPolicy: FirewallPolicy_FirewallPolicy;
@@ -14376,6 +14236,7 @@ export declare class FirewallRuleGroup {
14376
14236
  readonly CreationTime: string;
14377
14237
  readonly CreatorRequestId: string;
14378
14238
  readonly FirewallRules_Item_FirewallThreatProtectionId: string;
14239
+ readonly FirewallRules_Item_Status: string;
14379
14240
  readonly Id: string;
14380
14241
  readonly ModificationTime: string;
14381
14242
  readonly OwnerId: string;
@@ -15226,29 +15087,6 @@ export declare class GameLiftAlias {
15226
15087
  readonly AliasId: string;
15227
15088
  }
15228
15089
 
15229
- export declare class GameLiftBuild {
15230
- constructor(props: {
15231
- /** The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift build resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift build ARN, the resource ID matches the BuildId value. */
15232
- BuildArn?: string;
15233
- /** A unique identifier for a build to be deployed on the new fleet. If you are deploying the fleet with a custom game build, you must specify this property. The build must have been successfully uploaded to Amazon GameLift and be in a READY status. This fleet setting cannot be changed once the fleet is created. */
15234
- BuildId?: string;
15235
- /** A descriptive label that is associated with a build. Build names do not need to be unique. */
15236
- Name?: string;
15237
- /** The operating system that the game server binaries are built to run on. This value determines the type of fleet resources that you can use for this build. If your game build contains multiple executables, they all must run on the same operating system. If an operating system is not specified when creating a build, Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be changed later. */
15238
- OperatingSystem?: "AMAZON_LINUX" | "AMAZON_LINUX_2" | "AMAZON_LINUX_2023" | "WINDOWS_2012" | "WINDOWS_2016" | "WINDOWS_2022";
15239
- /** A server SDK version you used when integrating your game server build with Amazon GameLift. By default Amazon GameLift sets this value to 4.0.2. */
15240
- ServerSdkVersion?: string;
15241
- /** Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region. */
15242
- StorageLocation?: GameLiftBuild_StorageLocation;
15243
- /** An array of key-value pairs to apply to this resource. */
15244
- Tags?: GameLiftBuild_Tag[];
15245
- /** Version information that is associated with this build. Version strings do not need to be unique. */
15246
- Version?: string;
15247
- }, attributes?: CFResourceAttributes);
15248
- readonly BuildArn: string;
15249
- readonly BuildId: string;
15250
- }
15251
-
15252
15090
  export declare class GameLiftFleet {
15253
15091
  constructor(props: {
15254
15092
  /** A descriptive label that is associated with a fleet. Fleet names do not need to be unique. */
@@ -17036,6 +16874,8 @@ export declare class ImagePipeline {
17036
16874
  ImageRecipeArn?: string;
17037
16875
  /** Contains settings for vulnerability scans. */
17038
16876
  ImageScanningConfiguration?: ImagePipeline_ImageScanningConfiguration;
16877
+ /** The tags to be applied to images created by this pipeline. */
16878
+ ImageTags?: Record<string, unknown>;
17039
16879
  /** The image tests configuration of the image pipeline. */
17040
16880
  ImageTestsConfiguration?: ImagePipeline_ImageTestsConfiguration;
17041
16881
  /** The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline. */
@@ -17464,14 +17304,12 @@ export declare class InsightRule {
17464
17304
  constructor(props: {
17465
17305
  RuleBody: string;
17466
17306
  RuleName: string;
17467
- RuleState: string;
17307
+ RuleState: "DISABLED" | "ENABLED";
17468
17308
  ApplyOnTransformedLogs?: boolean;
17469
17309
  Arn?: string;
17470
- Id?: string;
17471
17310
  Tags?: InsightRule_Tag[];
17472
17311
  }, attributes?: CFResourceAttributes);
17473
17312
  readonly Arn: string;
17474
- readonly Id: string;
17475
17313
  }
17476
17314
 
17477
17315
  export declare class InspectorV2Filter {
@@ -18119,22 +17957,6 @@ export declare class IoTFleetWiseFleet {
18119
17957
  readonly LastModificationTime: string;
18120
17958
  }
18121
17959
 
18122
- export declare class IoTIndex {
18123
- constructor(props: {
18124
- /** The Amazon Resource Name (ARN) of the index. */
18125
- Arn?: string;
18126
- /** The index name. */
18127
- IndexName?: string;
18128
- /** The index status. */
18129
- IndexStatus?: "ACTIVE" | "BUILDING" | "REBUILDING";
18130
- /** Contains a value that specifies the type of indexing performed. */
18131
- Schema?: string;
18132
- }, attributes?: CFResourceAttributes);
18133
- readonly Arn: string;
18134
- readonly IndexStatus: "ACTIVE" | "BUILDING" | "REBUILDING";
18135
- readonly Schema: string;
18136
- }
18137
-
18138
17960
  export declare class IoTJobTemplate {
18139
17961
  constructor(props: {
18140
17962
  /** A description of the Job Template. */
@@ -19384,6 +19206,7 @@ export declare class LambdaCapacityProvider {
19384
19206
  InstanceRequirements?: LambdaCapacityProvider_InstanceRequirements;
19385
19207
  /** The ARN of the KMS key used to encrypt the capacity provider's resources. */
19386
19208
  KmsKeyArn?: string;
19209
+ /** Configuration for tag propagation to managed resources launched by the capacity provider. */
19387
19210
  PropagateTags?: LambdaCapacityProvider_PropagateTagsConfig;
19388
19211
  State?: LambdaCapacityProvider_CapacityProviderState;
19389
19212
  /** A key-value pair that provides metadata for the capacity provider. */
@@ -24208,6 +24031,28 @@ export declare class OAuth2CredentialProvider {
24208
24031
  readonly Oauth2ProviderConfigOutput: OAuth2CredentialProvider_Oauth2ProviderConfigOutput;
24209
24032
  }
24210
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
+
24211
24056
  export declare class ObjectType {
24212
24057
  constructor(props: {
24213
24058
  /** Description of the profile object type. */
@@ -25640,10 +25485,14 @@ export declare class Pentest {
25640
25485
  Assets: Pentest_Assets;
25641
25486
  /** Service role for accessing resources */
25642
25487
  ServiceRole: string;
25488
+ /** Strategy for cleaning up resources after pentest job completion */
25489
+ CleanUpStrategy?: Pentest_CleanUpStrategy;
25643
25490
  /** Strategy for code remediation on findings */
25644
25491
  CodeRemediationStrategy?: Pentest_CodeRemediationStrategy;
25645
25492
  /** Timestamp when the pentest was created */
25646
25493
  CreatedAt?: string;
25494
+ /** A list of managed skills to disable for this pentest */
25495
+ DisableManagedSkills?: Pentest_SkillType[];
25647
25496
  /** A list of risk types excluded from the pentest execution */
25648
25497
  ExcludeRiskTypes?: Pentest_RiskType[];
25649
25498
  /** CloudWatch logs config */
@@ -25683,7 +25532,7 @@ export declare class Permission {
25683
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). */
25684
25533
  FunctionUrlAuthType?: "AWS_IAM" | "NONE";
25685
25534
  Id?: string;
25686
- /** 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. */
25687
25536
  InvokedViaFunctionUrl?: boolean;
25688
25537
  /** The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization. */
25689
25538
  PrincipalOrgID?: string;
@@ -27442,6 +27291,28 @@ export declare class QuickSightDataSource {
27442
27291
  readonly Status: QuickSightDataSource_ResourceStatus;
27443
27292
  }
27444
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
+
27445
27316
  export declare class QuickSightTemplate {
27446
27317
  constructor(props: {
27447
27318
  AwsAccountId: string;
@@ -28394,14 +28265,12 @@ export declare class RemediationConfiguration {
28394
28265
  TargetType: string;
28395
28266
  Automatic?: boolean;
28396
28267
  ExecutionControls?: RemediationConfiguration_ExecutionControls;
28397
- Id?: string;
28398
28268
  MaximumAutomaticAttempts?: number;
28399
28269
  Parameters?: Record<string, unknown>;
28400
28270
  ResourceType?: string;
28401
28271
  RetryAttemptSeconds?: number;
28402
28272
  TargetVersion?: string;
28403
28273
  }, attributes?: CFResourceAttributes);
28404
- readonly Id: string;
28405
28274
  }
28406
28275
 
28407
28276
  export declare class ReplicaKey {
@@ -28841,58 +28710,6 @@ export declare class RequestValidator {
28841
28710
  readonly RequestValidatorId: string;
28842
28711
  }
28843
28712
 
28844
- export declare class ReservedDBInstance {
28845
- constructor(props: {
28846
- /** The currency code for the reserved DB instance. */
28847
- CurrencyCode?: string;
28848
- /** The DB instance class for the reserved DB instance. */
28849
- DBInstanceClass?: string;
28850
- /** The number of reserved DB instances. */
28851
- DBInstanceCount?: number;
28852
- /** The duration of the reservation in seconds. */
28853
- Duration?: number;
28854
- /** The fixed price charged for this reserved DB instance. */
28855
- FixedPrice?: number;
28856
- /** Indicates whether the reservation applies to Multi-AZ deployments. */
28857
- MultiAZ?: boolean;
28858
- /** The offering type of this reserved DB instance. */
28859
- OfferingType?: string;
28860
- /** The description of the reserved DB instance. */
28861
- ProductDescription?: string;
28862
- /** The recurring price charged to run this reserved DB instance. */
28863
- RecurringCharges?: ReservedDBInstance_RecurringCharge[];
28864
- /** The Amazon Resource Name (ARN) for the reserved DB instance. */
28865
- ReservedDBInstanceArn?: string;
28866
- /** The unique identifier for the reservation. */
28867
- ReservedDBInstanceId?: string;
28868
- /** The offering identifier. */
28869
- ReservedDBInstancesOfferingId?: string;
28870
- /** The time the reservation started. */
28871
- StartTime?: string;
28872
- /** The state of the reserved DB instance. */
28873
- State?: string;
28874
- /** A list of tags. */
28875
- Tags?: ReservedDBInstance_Tag[];
28876
- /** The hourly price charged for this reserved DB instance. */
28877
- UsagePrice?: number;
28878
- }, attributes?: CFResourceAttributes);
28879
- readonly CurrencyCode: string;
28880
- readonly DBInstanceClass: string;
28881
- readonly Duration: number;
28882
- readonly FixedPrice: number;
28883
- readonly MultiAZ: boolean;
28884
- readonly OfferingType: string;
28885
- readonly ProductDescription: string;
28886
- readonly RecurringCharges: ReservedDBInstance_RecurringCharge[];
28887
- readonly ReservedDBInstanceArn: string;
28888
- readonly ReservedDBInstanceId: string;
28889
- readonly ReservedDBInstancesOfferingId: string;
28890
- readonly StartTime: string;
28891
- readonly State: string;
28892
- readonly Tags: ReservedDBInstance_Tag[];
28893
- readonly UsagePrice: number;
28894
- }
28895
-
28896
28713
  export declare class ResilienceHubApp {
28897
28714
  constructor(props: {
28898
28715
  /** A string containing full ResilienceHub app template body. */
@@ -31522,6 +31339,8 @@ export declare class SecurityAgentAgentSpace {
31522
31339
  }, attributes?: CFResourceAttributes);
31523
31340
  readonly AgentSpaceId: string;
31524
31341
  readonly CreatedAt: string;
31342
+ readonly IntegratedResources_Item_ProviderResources_Item_ConfluenceDocument_SpaceTitle: string;
31343
+ readonly IntegratedResources_Item_ProviderResources_Item_ConfluenceDocument_Title: string;
31525
31344
  readonly UpdatedAt: string;
31526
31345
  }
31527
31346
 
@@ -31717,6 +31536,26 @@ export declare class SecurityPolicy {
31717
31536
  }, attributes?: CFResourceAttributes);
31718
31537
  }
31719
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
+
31720
31559
  export declare class SegmentDefinition {
31721
31560
  constructor(props: {
31722
31561
  /** The display name of the segment definition. */
@@ -34032,6 +33871,8 @@ export declare class System {
34032
33871
  Description?: string;
34033
33872
  /** The KMS key ID for encrypting system data. */
34034
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;
34035
33876
  /** The ARN of the system. */
34036
33877
  SystemArn?: string;
34037
33878
  /** The system ID. */
@@ -34605,29 +34446,6 @@ export declare class Terms {
34605
34446
  readonly TermsId: string;
34606
34447
  }
34607
34448
 
34608
- export declare class TestCase {
34609
- constructor(props: {
34610
- Name: string;
34611
- Steps: TestCase_Step[];
34612
- CreationTime?: string;
34613
- Description?: string;
34614
- LastUpdateTime?: string;
34615
- LatestVersion?: TestCase_TestCaseLatestVersion;
34616
- Status?: TestCase_TestCaseLifecycle;
34617
- Tags?: Record<string, unknown>;
34618
- TestCaseArn?: string;
34619
- TestCaseId?: string;
34620
- TestCaseVersion?: number;
34621
- }, attributes?: CFResourceAttributes);
34622
- readonly CreationTime: string;
34623
- readonly LastUpdateTime: string;
34624
- readonly LatestVersion: TestCase_TestCaseLatestVersion;
34625
- readonly Status: TestCase_TestCaseLifecycle;
34626
- readonly TestCaseArn: string;
34627
- readonly TestCaseId: string;
34628
- readonly TestCaseVersion: number;
34629
- }
34630
-
34631
34449
  export declare class Thing {
34632
34450
  constructor(props: {
34633
34451
  Arn?: string;
@@ -36033,6 +35851,8 @@ export declare class UserPool {
36033
35851
  EmailVerificationMessage?: string;
36034
35852
  EmailVerificationSubject?: string;
36035
35853
  EnabledMfas?: string[];
35854
+ IssuerConfiguration?: UserPool_IssuerConfiguration;
35855
+ KeyConfiguration?: UserPool_KeyConfiguration;
36036
35856
  LambdaConfig?: UserPool_LambdaConfig;
36037
35857
  MfaConfiguration?: string;
36038
35858
  Policies?: UserPool_Policies;
@@ -36128,6 +35948,26 @@ export declare class UserPoolIdentityProvider {
36128
35948
  }, attributes?: CFResourceAttributes);
36129
35949
  }
36130
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
+
36131
35971
  export declare class UserPoolResourceServer {
36132
35972
  constructor(props: {
36133
35973
  Identifier: string;
@@ -37190,6 +37030,7 @@ export declare class VpcLatticeService {
37190
37030
  CustomDomainName?: string;
37191
37031
  DnsEntry?: VpcLatticeService_DnsEntry;
37192
37032
  Id?: string;
37033
+ IdleTimeoutSeconds?: number;
37193
37034
  LastUpdatedAt?: string;
37194
37035
  Name?: string;
37195
37036
  Status?: "ACTIVE" | "CREATE_FAILED" | "CREATE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_IN_PROGRESS";
@@ -37962,15 +37803,15 @@ export declare class Workgroup {
37962
37803
  PricePerformanceTarget?: Workgroup_PerformanceTarget;
37963
37804
  /** A value that specifies whether the workgroup can be accessible from a public network. */
37964
37805
  PubliclyAccessible?: boolean;
37965
- /** 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. */
37966
37807
  RecoveryPointId?: string;
37967
37808
  /** A list of security group IDs to associate with the workgroup. */
37968
37809
  SecurityGroupIds?: string[];
37969
- /** 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. */
37970
37811
  SnapshotArn?: string;
37971
- /** 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. */
37972
37813
  SnapshotName?: string;
37973
- /** 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. */
37974
37815
  SnapshotOwnerAccount?: string;
37975
37816
  /** A list of subnet IDs the workgroup is associated with. */
37976
37817
  SubnetIds?: string[];
@@ -38736,6 +38577,62 @@ export declare class AcmCertificate_Tag {
38736
38577
  });
38737
38578
  }
38738
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
+
38739
38636
  export declare class ACMPCACertificate_ApiPassthrough {
38740
38637
  constructor(props: {
38741
38638
  /** Specifies X.509 extension information for a certificate. */
@@ -39250,6 +39147,32 @@ export declare class AfterContactWorkConfigPerChannel {
39250
39147
  });
39251
39148
  }
39252
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
+
39253
39176
  export declare class AgentActionGroup {
39254
39177
  constructor(props: {
39255
39178
  /** Name of the action group */
@@ -43070,11 +42993,37 @@ export declare class AppStreamStack_AccessEndpoint {
43070
42993
  });
43071
42994
  }
43072
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
+
43073
43022
  export declare class AppStreamStack_ApplicationSettings {
43074
43023
  constructor(props: {
43075
43024
  /** Enables or disables persistent application settings for users during their streaming sessions. */
43076
43025
  Enabled: boolean;
43077
- /** 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. */
43078
43027
  SettingsGroup?: string;
43079
43028
  });
43080
43029
  }
@@ -43369,6 +43318,21 @@ export declare class AppSyncParameters {
43369
43318
  });
43370
43319
  }
43371
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
+
43372
43336
  export declare class APSAnomalyDetector_AnomalyDetectorConfiguration {
43373
43337
  constructor(props: {
43374
43338
  RandomCutForest: APSAnomalyDetector_RandomCutForestConfiguration;
@@ -43725,34 +43689,6 @@ export declare class AssessmentTemplate_Tag {
43725
43689
  });
43726
43690
  }
43727
43691
 
43728
- export declare class AssetBundleImportJob_AssetBundleImportJobOverrideValidationStrategy {
43729
- constructor(props: {
43730
- /** A Boolean value that indicates whether to import all analyses and dashboards under strict or lenient mode. */
43731
- StrictModeForAllResources?: boolean;
43732
- });
43733
- }
43734
-
43735
- export declare class AssetBundleImportJob_AssetBundleImportSourceDescription {
43736
- constructor(props: {
43737
- /** The Amazon S3 URI for the asset bundle import file. */
43738
- S3Uri?: string;
43739
- });
43740
- }
43741
-
43742
- export declare class AssetBundleImportJobOverrideValidationStrategy {
43743
- constructor(props: {
43744
- /** A Boolean value that indicates whether to import all analyses and dashboards under strict or lenient mode. */
43745
- StrictModeForAllResources?: boolean;
43746
- });
43747
- }
43748
-
43749
- export declare class AssetBundleImportSourceDescription {
43750
- constructor(props: {
43751
- /** The Amazon S3 URI for the asset bundle import file. */
43752
- S3Uri?: string;
43753
- });
43754
- }
43755
-
43756
43692
  export declare class AssetHierarchy {
43757
43693
  constructor(props: {
43758
43694
  /** The ID of the child asset to be associated. */
@@ -44895,7 +44831,7 @@ export declare class AutoScalingGroup_AvailabilityZoneDistribution {
44895
44831
  /** If launches fail in an Availability Zone, the following strategies are available. The default is ``balanced-best-effort``.
44896
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.
44897
44833
  + ``balanced-best-effort`` - If launches fail in an Availability Zone, Auto Scaling will attempt to launch in another healthy Availability Zone instead. */
44898
- CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only";
44834
+ CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only" | "reservations-then-balanced";
44899
44835
  });
44900
44836
  }
44901
44837
 
@@ -45353,7 +45289,7 @@ export declare class AvailabilityZoneDistribution {
45353
45289
  /** If launches fail in an Availability Zone, the following strategies are available. The default is ``balanced-best-effort``.
45354
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.
45355
45291
  + ``balanced-best-effort`` - If launches fail in an Availability Zone, Auto Scaling will attempt to launch in another healthy Availability Zone instead. */
45356
- CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only";
45292
+ CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only" | "reservations-then-balanced";
45357
45293
  });
45358
45294
  }
45359
45295
 
@@ -46722,7 +46658,7 @@ export declare class BedrockKnowledgeBase_KnowledgeBaseConfiguration {
46722
46658
  export declare class BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration {
46723
46659
  constructor(props: {
46724
46660
  /** The ARN of the model used to create vector embeddings for the knowledge base. */
46725
- EmbeddingModelArn: string;
46661
+ EmbeddingModelArn?: string;
46726
46662
  EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
46727
46663
  EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
46728
46664
  ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
@@ -48791,6 +48727,28 @@ export declare class BufferOptions {
48791
48727
  });
48792
48728
  }
48793
48729
 
48730
+ export declare class Build_StorageLocation {
48731
+ constructor(props: {
48732
+ /** An Amazon S3 bucket identifier. This is the name of the S3 bucket. */
48733
+ Bucket: string;
48734
+ /** The name of the zip file that contains the build files or script files. */
48735
+ Key: string;
48736
+ /** The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket. */
48737
+ RoleArn: string;
48738
+ /** The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from your S3 bucket. To retrieve a specific version of the file, provide an object version. To retrieve the latest version of the file, do not set this parameter. */
48739
+ ObjectVersion?: string;
48740
+ });
48741
+ }
48742
+
48743
+ export declare class Build_Tag {
48744
+ constructor(props: {
48745
+ /** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length. */
48746
+ Key: string;
48747
+ /** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. */
48748
+ Value: string;
48749
+ });
48750
+ }
48751
+
48794
48752
  export declare class BuildStatusConfig {
48795
48753
  constructor(props: {
48796
48754
  Context?: string;
@@ -49604,9 +49562,7 @@ export declare class CapacityProviderConfig {
49604
49562
 
49605
49563
  export declare class CapacityProviderLoggingConfig {
49606
49564
  constructor(props: {
49607
- /** The log group name. */
49608
49565
  LogGroup?: string;
49609
- /** System log granularity level */
49610
49566
  SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
49611
49567
  });
49612
49568
  }
@@ -49631,7 +49587,6 @@ export declare class CapacityProviderScalingConfig {
49631
49587
 
49632
49588
  export declare class CapacityProviderTelemetryConfig {
49633
49589
  constructor(props: {
49634
- /** The logging configuration for the capacity provider. */
49635
49590
  LoggingConfig?: LambdaCapacityProvider_CapacityProviderLoggingConfig;
49636
49591
  });
49637
49592
  }
@@ -51978,6 +51933,7 @@ export declare class Code {
51978
51933
  S3Bucket?: string;
51979
51934
  /** The Amazon S3 key of the deployment package. */
51980
51935
  S3Key?: string;
51936
+ S3ObjectStorageMode?: "COPY" | "REFERENCE";
51981
51937
  /** For versioned objects, the version of the deployment package object to use. */
51982
51938
  S3ObjectVersion?: string;
51983
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). */
@@ -54619,7 +54575,9 @@ export declare class ConnectionParameters {
54619
54575
 
54620
54576
  export declare class ConnectionPasswordEncryption {
54621
54577
  constructor(props: {
54578
+ /** An AWS KMS key that is used to encrypt the connection password. */
54622
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. */
54623
54581
  ReturnConnectionPasswordEncrypted?: boolean;
54624
54582
  });
54625
54583
  }
@@ -55327,6 +55285,26 @@ export declare class ConnectSecurityProfile_Tag {
55327
55285
  });
55328
55286
  }
55329
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
+
55330
55308
  export declare class ConnectUser_AfterContactWorkConfig {
55331
55309
  constructor(props: {
55332
55310
  AfterContactWorkTimeLimit?: number;
@@ -56226,24 +56204,6 @@ export declare class ContinuousIntegrationScanConfiguration {
56226
56204
  });
56227
56205
  }
56228
56206
 
56229
- export declare class Control_ImplementationDetails {
56230
- constructor(props: {
56231
- /** A string that describes a control's implementation type. */
56232
- Type: string;
56233
- /** A service-specific identifier for the control. */
56234
- Identifier?: string;
56235
- });
56236
- }
56237
-
56238
- export declare class Control_RegionConfiguration {
56239
- constructor(props: {
56240
- /** The scope of the control. */
56241
- Scope: "GLOBAL" | "REGIONAL";
56242
- /** Regions in which the control is available to be deployed. */
56243
- DeployableRegions?: string[];
56244
- });
56245
- }
56246
-
56247
56207
  export declare class ControlCondition {
56248
56208
  constructor(props: {
56249
56209
  AlarmIdentifier: string;
@@ -57111,13 +57071,6 @@ export declare class CustomDomainConfigType {
57111
57071
  });
57112
57072
  }
57113
57073
 
57114
- export declare class CustomEmailSender {
57115
- constructor(props: {
57116
- LambdaArn?: string;
57117
- LambdaVersion?: string;
57118
- });
57119
- }
57120
-
57121
57074
  export declare class CustomerContact {
57122
57075
  constructor(props: {
57123
57076
  /** The email address of the contact. */
@@ -58086,13 +58039,6 @@ export declare class CustomRule {
58086
58039
  });
58087
58040
  }
58088
58041
 
58089
- export declare class CustomSMSSender {
58090
- constructor(props: {
58091
- LambdaArn?: string;
58092
- LambdaVersion?: string;
58093
- });
58094
- }
58095
-
58096
58042
  export declare class CustomTransformationConfiguration {
58097
58043
  constructor(props: {
58098
58044
  IntermediateStorage: BedrockDataSource_IntermediateStorage;
@@ -59607,7 +59553,9 @@ export declare class DataCaptureConfig {
59607
59553
 
59608
59554
  export declare class DataCatalogEncryptionSettings_ConnectionPasswordEncryption {
59609
59555
  constructor(props: {
59556
+ /** An AWS KMS key that is used to encrypt the connection password. */
59610
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. */
59611
59559
  ReturnConnectionPasswordEncrypted?: boolean;
59612
59560
  });
59613
59561
  }
@@ -59621,8 +59569,11 @@ export declare class DataCatalogEncryptionSettings_DataCatalogEncryptionSettings
59621
59569
 
59622
59570
  export declare class DataCatalogEncryptionSettings_EncryptionAtRest {
59623
59571
  constructor(props: {
59572
+ /** The encryption-at-rest mode for encrypting Data Catalog data. */
59624
59573
  CatalogEncryptionMode?: string;
59574
+ /** The role that AWS Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf. */
59625
59575
  CatalogEncryptionServiceRole?: string;
59576
+ /** The ID of the AWS KMS key to use for encryption at rest. */
59626
59577
  SseAwsKmsKeyId?: string;
59627
59578
  });
59628
59579
  }
@@ -59702,13 +59653,6 @@ export declare class DataColorPalette {
59702
59653
  });
59703
59654
  }
59704
59655
 
59705
- export declare class DataDeletionJob_DataSource {
59706
- constructor(props: {
59707
- /** The path to the Amazon S3 bucket where the data is stored. */
59708
- DataLocation?: string;
59709
- });
59710
- }
59711
-
59712
59656
  export declare class DataDeliveryObject {
59713
59657
  constructor(props: {
59714
59658
  LogGroup?: string;
@@ -62550,6 +62494,8 @@ export declare class DeploymentCircuitBreaker {
62550
62494
  Enable: boolean;
62551
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. */
62552
62496
  Rollback: boolean;
62497
+ ResetOnHealthyTask?: boolean;
62498
+ ThresholdConfiguration?: EcsService_ThresholdConfiguration;
62553
62499
  });
62554
62500
  }
62555
62501
 
@@ -64498,6 +64444,14 @@ export declare class DnsOptionsSpecification {
64498
64444
  });
64499
64445
  }
64500
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
+
64501
64455
  export declare class DnsRecord {
64502
64456
  constructor(props: {
64503
64457
  TTL: number;
@@ -64981,6 +64935,17 @@ export declare class DomainResult {
64981
64935
  });
64982
64936
  }
64983
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
+
64984
64949
  export declare class DomainSettings {
64985
64950
  constructor(props: {
64986
64951
  DockerSettings?: SageMakerDomain_DockerSettings;
@@ -65095,6 +65060,7 @@ export declare class DurableConfig {
65095
65060
  constructor(props: {
65096
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. */
65097
65062
  ExecutionTimeout: number;
65063
+ KMSKeyArn?: string;
65098
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. */
65099
65065
  RetentionPeriodInDays?: number;
65100
65066
  });
@@ -65610,7 +65576,7 @@ export declare class ECSCapacityProvider_InstanceRequirementsRequest {
65610
65576
  VCpuCount: Record<string, unknown>;
65611
65577
  AcceleratorCount?: Record<string, unknown>;
65612
65578
  AcceleratorManufacturers?: "amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx"[];
65613
- 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"[];
65614
65580
  AcceleratorTotalMemoryMiB?: Record<string, unknown>;
65615
65581
  AcceleratorTypes?: "fpga" | "gpu" | "inference"[];
65616
65582
  AllowedInstanceTypes?: string[];
@@ -65914,6 +65880,8 @@ export declare class EcsService_DeploymentCircuitBreaker {
65914
65880
  Enable: boolean;
65915
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. */
65916
65882
  Rollback: boolean;
65883
+ ResetOnHealthyTask?: boolean;
65884
+ ThresholdConfiguration?: EcsService_ThresholdConfiguration;
65917
65885
  });
65918
65886
  }
65919
65887
 
@@ -66147,13 +66115,16 @@ export declare class EcsService_LogConfiguration {
66147
66115
 
66148
66116
  export declare class EcsService_MetricConfiguration {
66149
66117
  constructor(props: {
66118
+ /** The list of metric names to configure. The supported metric names are ``CPUUtilization`` and ``MemoryUtilization``. */
66150
66119
  MetricNames: "CPUUtilization" | "MemoryUtilization"[];
66120
+ /** The resolution, in seconds, at which to collect the metrics. The valid values are ``20`` and ``60``. */
66151
66121
  ResolutionSeconds: 20 | 60;
66152
66122
  });
66153
66123
  }
66154
66124
 
66155
66125
  export declare class EcsService_MonitoringConfiguration {
66156
66126
  constructor(props: {
66127
+ /** The list of metric configurations for the service monitoring. */
66157
66128
  MetricConfigurations: EcsService_MetricConfiguration[];
66158
66129
  });
66159
66130
  }
@@ -66360,6 +66331,13 @@ export declare class EcsService_Tag {
66360
66331
  });
66361
66332
  }
66362
66333
 
66334
+ export declare class EcsService_ThresholdConfiguration {
66335
+ constructor(props: {
66336
+ Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
66337
+ Value: number;
66338
+ });
66339
+ }
66340
+
66363
66341
  export declare class EcsService_TimeoutConfiguration {
66364
66342
  constructor(props: {
66365
66343
  /** The amount of time in seconds a connection will stay active while idle. A value of ``0`` can be set to disable ``idleTimeout``.
@@ -66820,6 +66798,13 @@ export declare class EKSCluster_ResourcesVpcConfig {
66820
66798
  });
66821
66799
  }
66822
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
+
66823
66808
  export declare class EKSCluster_StorageConfig {
66824
66809
  constructor(props: {
66825
66810
  /** Todo: add description */
@@ -67379,16 +67364,6 @@ export declare class EmailChannelSubtypeConfig {
67379
67364
  });
67380
67365
  }
67381
67366
 
67382
- export declare class EmailConfiguration {
67383
- constructor(props: {
67384
- ConfigurationSet?: string;
67385
- EmailSendingAccount?: string;
67386
- From?: string;
67387
- ReplyToEmailAddress?: string;
67388
- SourceArn?: string;
67389
- });
67390
- }
67391
-
67392
67367
  export declare class EmailContact_EmailContact {
67393
67368
  constructor(props: {
67394
67369
  Address: string;
@@ -68548,6 +68523,17 @@ export declare class EntryLimitsConfig {
68548
68523
  });
68549
68524
  }
68550
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
+
68551
68537
  export declare class Environment {
68552
68538
  constructor(props: {
68553
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).
@@ -68719,6 +68705,17 @@ export declare class EvaluationForm_EvaluationFormLanguageConfiguration {
68719
68705
  });
68720
68706
  }
68721
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
+
68722
68719
  export declare class EvaluationForm_EvaluationFormSection {
68723
68720
  constructor(props: {
68724
68721
  /** The identifier of the section. An identifier must be unique within the evaluation form.
@@ -68729,9 +68726,11 @@ export declare class EvaluationForm_EvaluationFormSection {
68729
68726
  Title: string;
68730
68727
  /** The instructions of the section. */
68731
68728
  Instructions?: string;
68729
+ IsExcludedFromScoring?: boolean;
68732
68730
  /** The items of the section.
68733
68731
  *Minimum*: 1 */
68734
68732
  Items?: EvaluationForm_EvaluationFormItem[];
68733
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
68735
68734
  /** The scoring weight of the section.
68736
68735
  *Minimum*: 0
68737
68736
  *Maximum*: 100 */
@@ -68775,10 +68774,11 @@ export declare class EvaluationForm_ScoringStrategy {
68775
68774
  constructor(props: {
68776
68775
  /** The scoring mode of the evaluation form.
68777
68776
  *Allowed values*: ``QUESTION_ONLY`` | ``SECTION_ONLY`` */
68778
- Mode: "QUESTION_ONLY" | "SECTION_ONLY";
68777
+ Mode: "POINTS_BASED" | "QUESTION_ONLY" | "SECTION_ONLY";
68779
68778
  /** The scoring status of the evaluation form.
68780
68779
  *Allowed values*: ``ENABLED`` | ``DISABLED`` */
68781
68780
  Status: "DISABLED" | "ENABLED";
68781
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
68782
68782
  });
68783
68783
  }
68784
68784
 
@@ -68814,6 +68814,17 @@ export declare class EvaluationFormLanguageConfiguration {
68814
68814
  });
68815
68815
  }
68816
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
+
68817
68828
  export declare class EvaluationFormSection {
68818
68829
  constructor(props: {
68819
68830
  /** The identifier of the section. An identifier must be unique within the evaluation form.
@@ -68824,9 +68835,11 @@ export declare class EvaluationFormSection {
68824
68835
  Title: string;
68825
68836
  /** The instructions of the section. */
68826
68837
  Instructions?: string;
68838
+ IsExcludedFromScoring?: boolean;
68827
68839
  /** The items of the section.
68828
68840
  *Minimum*: 1 */
68829
68841
  Items?: EvaluationForm_EvaluationFormItem[];
68842
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
68830
68843
  /** The scoring weight of the section.
68831
68844
  *Minimum*: 0
68832
68845
  *Maximum*: 100 */
@@ -70010,12 +70023,6 @@ export declare class ExperimentTemplateLogConfiguration {
70010
70023
  });
70011
70024
  }
70012
70025
 
70013
- export declare class Expiration {
70014
- constructor(props: {
70015
- Days?: number;
70016
- });
70017
- }
70018
-
70019
70026
  export declare class ExpirationDataRule {
70020
70027
  constructor(props: {
70021
70028
  DaysAfterLastAccess: number;
@@ -70264,6 +70271,7 @@ export declare class ExpressGatewayService_ExpressGatewayServiceConfiguration {
70264
70271
  PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
70265
70272
  ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
70266
70273
  ServiceRevisionArn?: string;
70274
+ TaskDefinitionArn?: string;
70267
70275
  TaskRoleArn?: string;
70268
70276
  });
70269
70277
  }
@@ -70339,6 +70347,7 @@ export declare class ExpressGatewayServiceConfiguration {
70339
70347
  PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
70340
70348
  ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
70341
70349
  ServiceRevisionArn?: string;
70350
+ TaskDefinitionArn?: string;
70342
70351
  TaskRoleArn?: string;
70343
70352
  });
70344
70353
  }
@@ -71142,6 +71151,8 @@ export declare class FirewallRuleGroup_FirewallRule {
71142
71151
  FirewallThreatProtectionId?: string;
71143
71152
  /** Qtype */
71144
71153
  Qtype?: string;
71154
+ /** The status of the firewall rule. */
71155
+ Status?: "COMPLETE" | "CREATING" | "CREATION_FAILED";
71145
71156
  });
71146
71157
  }
71147
71158
 
@@ -71149,6 +71160,14 @@ export declare class FirewallRuleGroup_FirewallRuleType {
71149
71160
  constructor(props: {
71150
71161
  FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
71151
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;
71152
71171
  });
71153
71172
  }
71154
71173
 
@@ -71174,6 +71193,7 @@ export declare class FirewallRuleType {
71174
71193
  constructor(props: {
71175
71194
  FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
71176
71195
  FirewallAdvancedThreatCategory?: FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig;
71196
+ PartnerThreatProtection?: FirewallRuleGroup_PartnerThreatProtectionConfig;
71177
71197
  });
71178
71198
  }
71179
71199
 
@@ -72421,6 +72441,7 @@ export declare class Function_Code {
72421
72441
  S3Bucket?: string;
72422
72442
  /** The Amazon S3 key of the deployment package. */
72423
72443
  S3Key?: string;
72444
+ S3ObjectStorageMode?: "COPY" | "REFERENCE";
72424
72445
  /** For versioned objects, the version of the deployment package object to use. */
72425
72446
  S3ObjectVersion?: string;
72426
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). */
@@ -72445,6 +72466,7 @@ export declare class Function_DurableConfig {
72445
72466
  constructor(props: {
72446
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. */
72447
72468
  ExecutionTimeout: number;
72469
+ KMSKeyArn?: string;
72448
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. */
72449
72471
  RetentionPeriodInDays?: number;
72450
72472
  });
@@ -72768,28 +72790,6 @@ export declare class GameLiftAlias_Tag {
72768
72790
  });
72769
72791
  }
72770
72792
 
72771
- export declare class GameLiftBuild_StorageLocation {
72772
- constructor(props: {
72773
- /** An Amazon S3 bucket identifier. This is the name of the S3 bucket. */
72774
- Bucket: string;
72775
- /** The name of the zip file that contains the build files or script files. */
72776
- Key: string;
72777
- /** The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket. */
72778
- RoleArn: string;
72779
- /** The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from your S3 bucket. To retrieve a specific version of the file, provide an object version. To retrieve the latest version of the file, do not set this parameter. */
72780
- ObjectVersion?: string;
72781
- });
72782
- }
72783
-
72784
- export declare class GameLiftBuild_Tag {
72785
- constructor(props: {
72786
- /** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length. */
72787
- Key: string;
72788
- /** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. */
72789
- Value: string;
72790
- });
72791
- }
72792
-
72793
72793
  export declare class GameLiftFleet_AnywhereConfiguration {
72794
72794
  constructor(props: {
72795
72795
  /** Cost of compute can be specified on Anywhere Fleets to prioritize placement across Queue destinations based on Cost. */
@@ -76439,6 +76439,12 @@ export declare class IdentityProviderConfiguration {
76439
76439
  });
76440
76440
  }
76441
76441
 
76442
+ export declare class IdentityProviderVpcConnectionProperties {
76443
+ constructor(props: {
76444
+ VpcConnectionArn: string;
76445
+ });
76446
+ }
76447
+
76442
76448
  export declare class IdentitySourceDetails {
76443
76449
  constructor(props: {
76444
76450
  ClientIds?: string[];
@@ -77242,15 +77248,6 @@ export declare class ImageStandardOutputConfiguration {
77242
77248
  });
77243
77249
  }
77244
77250
 
77245
- export declare class ImplementationDetails {
77246
- constructor(props: {
77247
- /** A string that describes a control's implementation type. */
77248
- Type: string;
77249
- /** A service-specific identifier for the control. */
77250
- Identifier?: string;
77251
- });
77252
- }
77253
-
77254
77251
  export declare class ImportDataRule {
77255
77252
  constructor(props: {
77256
77253
  Prefix: string;
@@ -77363,13 +77360,6 @@ export declare class InboundExternalLink_ResponderErrorMaskingForHttpCode {
77363
77360
  });
77364
77361
  }
77365
77362
 
77366
- export declare class InboundFederation {
77367
- constructor(props: {
77368
- LambdaArn?: string;
77369
- LambdaVersion?: string;
77370
- });
77371
- }
77372
-
77373
77363
  export declare class IncidentTemplate {
77374
77364
  constructor(props: {
77375
77365
  /** The impact value. */
@@ -77445,6 +77435,8 @@ export declare class IndexCapacityConfiguration {
77445
77435
 
77446
77436
  export declare class IndexSettings {
77447
77437
  constructor(props: {
77438
+ /** Custom analysis configuration including analyzers, tokenizers, and filters */
77439
+ Analysis?: Record<string, unknown>;
77448
77440
  Index?: Record<string, unknown>;
77449
77441
  });
77450
77442
  }
@@ -80620,6 +80612,12 @@ export declare class Ipv6Add {
80620
80612
  });
80621
80613
  }
80622
80614
 
80615
+ export declare class IssuerConfiguration {
80616
+ constructor(props: {
80617
+ Type?: "ORIGINAL" | "UPDATED";
80618
+ });
80619
+ }
80620
+
80623
80621
  export declare class IssuerData {
80624
80622
  constructor(props: {
80625
80623
  Name: string;
@@ -81941,6 +81939,13 @@ export declare class KeyAttributes {
81941
81939
  });
81942
81940
  }
81943
81941
 
81942
+ export declare class KeyConfiguration {
81943
+ constructor(props: {
81944
+ KeyType?: UserPool_EncryptionKeyType;
81945
+ KmsKeyArn?: string;
81946
+ });
81947
+ }
81948
+
81944
81949
  export declare class KeyGroup_KeyGroupConfig {
81945
81950
  constructor(props: {
81946
81951
  /** A list of the identifiers of the public keys in the key group. */
@@ -82731,9 +82736,7 @@ export declare class LambdaAuthorizerConfig {
82731
82736
 
82732
82737
  export declare class LambdaCapacityProvider_CapacityProviderLoggingConfig {
82733
82738
  constructor(props: {
82734
- /** The log group name. */
82735
82739
  LogGroup?: string;
82736
- /** System log granularity level */
82737
82740
  SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
82738
82741
  });
82739
82742
  }
@@ -82758,7 +82761,6 @@ export declare class LambdaCapacityProvider_CapacityProviderScalingConfig {
82758
82761
 
82759
82762
  export declare class LambdaCapacityProvider_CapacityProviderTelemetryConfig {
82760
82763
  constructor(props: {
82761
- /** The logging configuration for the capacity provider. */
82762
82764
  LoggingConfig?: LambdaCapacityProvider_CapacityProviderLoggingConfig;
82763
82765
  });
82764
82766
  }
@@ -82785,7 +82787,9 @@ export declare class LambdaCapacityProvider_InstanceRequirements {
82785
82787
 
82786
82788
  export declare class LambdaCapacityProvider_PropagateTagsConfig {
82787
82789
  constructor(props: {
82790
+ /** A list of tags to explicitly propagate to managed resources. Maximum of 40 tags. */
82788
82791
  ExplicitTags?: LambdaCapacityProvider_Tag[];
82792
+ /** The mode for tag propagation. Use ``Explicit`` to propagate specific tags, or ``None`` to disable propagation. */
82789
82793
  Mode?: LambdaCapacityProvider_PropagateTagsMode;
82790
82794
  });
82791
82795
  }
@@ -86751,7 +86755,7 @@ export declare class ManagedInstancesStorageConfiguration {
86751
86755
  export declare class ManagedKnowledgeBaseConfiguration {
86752
86756
  constructor(props: {
86753
86757
  /** The ARN of the model used to create vector embeddings for the knowledge base. */
86754
- EmbeddingModelArn: string;
86758
+ EmbeddingModelArn?: string;
86755
86759
  EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
86756
86760
  EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
86757
86761
  ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
@@ -89755,7 +89759,9 @@ export declare class MetricCharacteristics {
89755
89759
 
89756
89760
  export declare class MetricConfiguration {
89757
89761
  constructor(props: {
89762
+ /** The list of metric names to configure. The supported metric names are ``CPUUtilization`` and ``MemoryUtilization``. */
89758
89763
  MetricNames: "CPUUtilization" | "MemoryUtilization"[];
89764
+ /** The resolution, in seconds, at which to collect the metrics. The valid values are ``20`` and ``60``. */
89759
89765
  ResolutionSeconds: 20 | 60;
89760
89766
  });
89761
89767
  }
@@ -94185,6 +94191,19 @@ export declare class Oauth2ProviderConfigOutput {
94185
94191
  });
94186
94192
  }
94187
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
+
94188
94207
  export declare class ObjectiveFunction {
94189
94208
  constructor(props: {
94190
94209
  /** objective function that training job is optimized for. */
@@ -94869,6 +94888,8 @@ export declare class OpenSearchServerlessFieldMapping {
94869
94888
 
94870
94889
  export declare class OpenSearchServerlessIndex_IndexSettings {
94871
94890
  constructor(props: {
94891
+ /** Custom analysis configuration including analyzers, tokenizers, and filters */
94892
+ Analysis?: Record<string, unknown>;
94872
94893
  Index?: Record<string, unknown>;
94873
94894
  });
94874
94895
  }
@@ -96966,6 +96987,13 @@ export declare class Partnership_X12InboundEdiOptions {
96966
96987
  });
96967
96988
  }
96968
96989
 
96990
+ export declare class PartnerThreatProtectionConfig {
96991
+ constructor(props: {
96992
+ /** The partner identifier value. */
96993
+ Partner: string;
96994
+ });
96995
+ }
96996
+
96969
96997
  export declare class PasswordPolicy {
96970
96998
  constructor(props: {
96971
96999
  MinimumLength?: number;
@@ -99277,10 +99305,9 @@ export declare class PrestoParameters {
99277
99305
  });
99278
99306
  }
99279
99307
 
99280
- export declare class PreTokenGenerationConfig {
99308
+ export declare class PrevalidationOptions {
99281
99309
  constructor(props: {
99282
- LambdaArn?: string;
99283
- LambdaVersion?: string;
99310
+ DnsPrevalidation: AcmeDomainValidation_DnsPrevalidationOptions;
99284
99311
  });
99285
99312
  }
99286
99313
 
@@ -100063,7 +100090,9 @@ export declare class PromptVersion_PromptVariant {
100063
100090
 
100064
100091
  export declare class PropagateTagsConfig {
100065
100092
  constructor(props: {
100093
+ /** A list of tags to explicitly propagate to managed resources. Maximum of 40 tags. */
100066
100094
  ExplicitTags?: LambdaCapacityProvider_Tag[];
100095
+ /** The mode for tag propagation. Use ``Explicit`` to propagate specific tags, or ``None`` to disable propagation. */
100067
100096
  Mode?: LambdaCapacityProvider_PropagateTagsMode;
100068
100097
  });
100069
100098
  }
@@ -100279,6 +100308,13 @@ export declare class PublicAccessBlockConfiguration {
100279
100308
  });
100280
100309
  }
100281
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
+
100282
100318
  export declare class PublicDnsNamespace_Properties {
100283
100319
  constructor(props: {
100284
100320
  DnsProperties?: PublicDnsNamespace_PublicDnsPropertiesMutable;
@@ -101846,6 +101882,20 @@ export declare class QuickSightDataSource_VpcConnectionProperties {
101846
101882
  });
101847
101883
  }
101848
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
+
101849
101899
  export declare class QuickSightTemplate_AnalysisDefaults {
101850
101900
  constructor(props: {
101851
101901
  DefaultNewSheetConfiguration: QuickSightTemplate_DefaultNewSheetConfiguration;
@@ -103482,15 +103532,6 @@ export declare class RecurrenceSettings {
103482
103532
  });
103483
103533
  }
103484
103534
 
103485
- export declare class RecurringCharge {
103486
- constructor(props: {
103487
- /** The amount of the recurring charge. */
103488
- RecurringChargeAmount?: number;
103489
- /** The frequency of the recurring charge. */
103490
- RecurringChargeFrequency?: string;
103491
- });
103492
- }
103493
-
103494
103535
  export declare class RedactionPlaceHolder {
103495
103536
  constructor(props: {
103496
103537
  RedactionPlaceHolderType: DataProtectionSettings_RedactionPlaceHolderType;
@@ -103986,15 +104027,6 @@ export declare class RegionalParameter {
103986
104027
  });
103987
104028
  }
103988
104029
 
103989
- export declare class RegionConfiguration {
103990
- constructor(props: {
103991
- /** The scope of the control. */
103992
- Scope: "GLOBAL" | "REGIONAL";
103993
- /** Regions in which the control is available to be deployed. */
103994
- DeployableRegions?: string[];
103995
- });
103996
- }
103997
-
103998
104030
  export declare class RegistrationConfig {
103999
104031
  constructor(props: {
104000
104032
  RoleArn?: string;
@@ -104825,24 +104857,6 @@ export declare class ReservedCapacityOptionsRequest {
104825
104857
  });
104826
104858
  }
104827
104859
 
104828
- export declare class ReservedDBInstance_RecurringCharge {
104829
- constructor(props: {
104830
- /** The amount of the recurring charge. */
104831
- RecurringChargeAmount?: number;
104832
- /** The frequency of the recurring charge. */
104833
- RecurringChargeFrequency?: string;
104834
- });
104835
- }
104836
-
104837
- export declare class ReservedDBInstance_Tag {
104838
- constructor(props: {
104839
- /** The key of the tag. */
104840
- Key: string;
104841
- /** The value of the tag. */
104842
- Value: string;
104843
- });
104844
- }
104845
-
104846
104860
  export declare class ReshardingConfiguration {
104847
104861
  constructor(props: {
104848
104862
  /** Unique identifier for the Node Group. This is either auto-generated by ElastiCache (4-digit id) or a user supplied id. */
@@ -106159,6 +106173,13 @@ export declare class RoleValues {
106159
106173
  });
106160
106174
  }
106161
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
+
106162
106183
  export declare class RollingInterval {
106163
106184
  constructor(props: {
106164
106185
  Duration: number;
@@ -109816,10 +109837,11 @@ export declare class ScoringStrategy {
109816
109837
  constructor(props: {
109817
109838
  /** The scoring mode of the evaluation form.
109818
109839
  *Allowed values*: ``QUESTION_ONLY`` | ``SECTION_ONLY`` */
109819
- Mode: "QUESTION_ONLY" | "SECTION_ONLY";
109840
+ Mode: "POINTS_BASED" | "QUESTION_ONLY" | "SECTION_ONLY";
109820
109841
  /** The scoring status of the evaluation form.
109821
109842
  *Allowed values*: ``ENABLED`` | ``DISABLED`` */
109822
109843
  Status: "DISABLED" | "ENABLED";
109844
+ ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
109823
109845
  });
109824
109846
  }
109825
109847
 
@@ -110590,6 +110612,45 @@ export declare class SecurityHubPolicy {
110590
110612
  });
110591
110613
  }
110592
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
+
110593
110654
  export declare class SecurityServicePolicyData {
110594
110655
  constructor(props: {
110595
110656
  Type: FMSPolicy_PolicyType;
@@ -112595,14 +112656,6 @@ export declare class SmsChannelSubtypeConfig {
112595
112656
  });
112596
112657
  }
112597
112658
 
112598
- export declare class SmsConfiguration {
112599
- constructor(props: {
112600
- ExternalId?: string;
112601
- SnsCallerArn?: string;
112602
- SnsRegion?: string;
112603
- });
112604
- }
112605
-
112606
112659
  export declare class SmsMessageTemplateContent {
112607
112660
  constructor(props: {
112608
112661
  Body: MessageTemplate_SmsMessageTemplateContentBody;
@@ -114505,6 +114558,13 @@ export declare class Step_KeyValue {
114505
114558
  });
114506
114559
  }
114507
114560
 
114561
+ export declare class StepAliasMapping {
114562
+ constructor(props: {
114563
+ StepAlias: string;
114564
+ StepId: string;
114565
+ });
114566
+ }
114567
+
114508
114568
  export declare class StepFunctionsAction {
114509
114569
  constructor(props: {
114510
114570
  RoleArn: string;
@@ -117385,24 +117445,9 @@ export declare class TestBotAliasSettings {
117385
117445
  });
117386
117446
  }
117387
117447
 
117388
- export declare class TestCase_Step {
117389
- constructor(props: {
117390
- Action: any;
117391
- Name: string;
117392
- Description?: string;
117393
- });
117394
- }
117395
-
117396
- export declare class TestCase_TestCaseLatestVersion {
117397
- constructor(props: {
117398
- Status: TestCase_TestCaseLifecycle;
117399
- Version: number;
117400
- });
117401
- }
117402
-
117403
117448
  export declare class TestCaseLatestVersion {
117404
117449
  constructor(props: {
117405
- Status: TestCase_TestCaseLifecycle;
117450
+ Status: AppTestTestCase_TestCaseLifecycle;
117406
117451
  Version: number;
117407
117452
  });
117408
117453
  }
@@ -117516,6 +117561,13 @@ export declare class ThreatIntelSet_TagItem {
117516
117561
  });
117517
117562
  }
117518
117563
 
117564
+ export declare class ThresholdConfiguration {
117565
+ constructor(props: {
117566
+ Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
117567
+ Value: number;
117568
+ });
117569
+ }
117570
+
117519
117571
  export declare class ThrottleSettings {
117520
117572
  constructor(props: {
117521
117573
  BurstLimit?: number;
@@ -119666,6 +119718,19 @@ export declare class UserPool_InviteMessageTemplate {
119666
119718
  });
119667
119719
  }
119668
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
+
119669
119734
  export declare class UserPool_LambdaConfig {
119670
119735
  constructor(props: {
119671
119736
  CreateAuthChallenge?: string;
@@ -119853,6 +119918,72 @@ export declare class UserPoolDomain_RoutingType {
119853
119918
  });
119854
119919
  }
119855
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
+
119856
119987
  export declare class UserPoolResourceServer_ResourceServerScopeType {
119857
119988
  constructor(props: {
119858
119989
  ScopeDescription: string;
@@ -125098,6 +125229,26 @@ export type AppSyncApi_AuthenticationType =
125098
125229
 
125099
125230
  export type AppSyncApi_EventLogLevel = "ALL" | "DEBUG" | "ERROR" | "INFO" | "NONE";
125100
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
+
125101
125252
  export type ARCRegionSwitchPlan_AlarmCondition = "green" | "red";
125102
125253
 
125103
125254
  export type ARCRegionSwitchPlan_AlarmType = "applicationHealth" | "trigger";
@@ -128984,6 +129135,8 @@ export type PCAConnectorADTemplate_ValidityPeriodType =
128984
129135
 
128985
129136
  export type PCAConnectorSCEPConnector_ConnectorType = "GENERAL_PURPOSE" | "INTUNE";
128986
129137
 
129138
+ export type Pentest_CleanUpStrategy = "BEST_EFFORT_DELETE" | "RETAIN_ALL";
129139
+
128987
129140
  export type Pentest_CodeRemediationStrategy = "AUTOMATIC" | "DISABLED";
128988
129141
 
128989
129142
  export type Pentest_RiskType =
@@ -129016,6 +129169,8 @@ export type Pentest_RiskType =
129016
129169
  | "UNKNOWN"
129017
129170
  | "XML_EXTERNAL_ENTITY";
129018
129171
 
129172
+ export type Pentest_SkillType = "FINDING_PERSONALIZATION" | "LOGIN_OPTIMIZATION";
129173
+
129019
129174
  export type Pipe_AssignPublicIp = "DISABLED" | "ENABLED";
129020
129175
 
129021
129176
  export type Pipe_BatchJobDependencyType = "N_TO_N" | "SEQUENTIAL";
@@ -129792,6 +129947,8 @@ export type QuickSightDataSource_ResourceStatus =
129792
129947
 
129793
129948
  export type QuickSightDataSource_StarburstProductType = "ENTERPRISE" | "GALAXY";
129794
129949
 
129950
+ export type QuickSightFlow_FlowPublishState = "DRAFT" | "PENDING_APPROVAL" | "PUBLISHED";
129951
+
129795
129952
  export type QuickSightTemplate_AnchorOption = "NOW";
129796
129953
 
129797
129954
  export type QuickSightTemplate_ArcThickness = "LARGE" | "MEDIUM" | "SMALL" | "WHOLE";
@@ -131439,26 +131596,6 @@ export type Terms_TermsEnforcementType = "NONE";
131439
131596
 
131440
131597
  export type Terms_TermsSourceType = "LINK";
131441
131598
 
131442
- export type TestCase_CaptureTool = "AWS DMS" | "Precisely";
131443
-
131444
- export type TestCase_CloudFormationActionType = "Create" | "Delete";
131445
-
131446
- export type TestCase_DataSetType = "PS";
131447
-
131448
- export type TestCase_Format = "FIXED" | "LINE_SEQUENTIAL" | "VARIABLE";
131449
-
131450
- export type TestCase_M2ManagedActionType = "Configure" | "Deconfigure";
131451
-
131452
- export type TestCase_M2NonManagedActionType = "Configure" | "Deconfigure";
131453
-
131454
- export type TestCase_ScriptType = "Selenium";
131455
-
131456
- export type TestCase_SourceDatabase = "z/OS-DB2";
131457
-
131458
- export type TestCase_TargetDatabase = "PostgreSQL";
131459
-
131460
- export type TestCase_TestCaseLifecycle = "Active" | "Deleting";
131461
-
131462
131599
  export type TimestreamScheduledQuery_DimensionValueType = "VARCHAR";
131463
131600
 
131464
131601
  export type TimestreamScheduledQuery_EncryptionOption = "SSE_KMS" | "SSE_S3";
@@ -131558,6 +131695,8 @@ export type TrustAnchor_NotificationEvent =
131558
131695
 
131559
131696
  export type TrustAnchor_TrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE";
131560
131697
 
131698
+ export type UserPool_EncryptionKeyType = "AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY";
131699
+
131561
131700
  export type UserSettings_ColorTheme = "Dark" | "Light";
131562
131701
 
131563
131702
  export type UserSettings_EnabledType = "Disabled" | "Enabled";