@intentius/chant-lexicon-aws 0.13.1 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/__tests__/mock-cloud-executor.d.ts +106 -0
- package/dist/components/__tests__/mock-cloud-executor.d.ts.map +1 -0
- package/dist/components/apply.d.ts +242 -0
- package/dist/components/apply.d.ts.map +1 -0
- package/dist/components/builders.d.ts +37 -0
- package/dist/components/builders.d.ts.map +1 -0
- package/dist/components/capability-plugin.d.ts +23 -0
- package/dist/components/capability-plugin.d.ts.map +1 -0
- package/dist/components/cloud-executor.d.ts +350 -0
- package/dist/components/cloud-executor.d.ts.map +1 -0
- package/dist/components/config-bom.d.ts +135 -0
- package/dist/components/config-bom.d.ts.map +1 -0
- package/dist/components/host-delivery.d.ts +110 -0
- package/dist/components/host-delivery.d.ts.map +1 -0
- package/dist/components/index.d.ts +19 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/job-submission.d.ts +89 -0
- package/dist/components/job-submission.d.ts.map +1 -0
- package/dist/components/publish.d.ts +194 -0
- package/dist/components/publish.d.ts.map +1 -0
- package/dist/components/safety.d.ts +49 -0
- package/dist/components/safety.d.ts.map +1 -0
- package/dist/components/wait-aws.d.ts +65 -0
- package/dist/components/wait-aws.d.ts.map +1 -0
- package/dist/generated/index.d.ts +68 -40
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/import/live-export.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/lint/audit-catalog.d.ts +10 -0
- package/dist/lint/audit-catalog.d.ts.map +1 -0
- package/dist/manifest.json +1 -1
- package/dist/meta.json +893 -737
- package/dist/op/activities/floci.d.ts +54 -0
- package/dist/op/activities/floci.d.ts.map +1 -0
- package/dist/op/activities/index.d.ts +8 -0
- package/dist/op/activities/index.d.ts.map +1 -0
- package/dist/ownership.d.ts +10 -0
- package/dist/ownership.d.ts.map +1 -0
- package/dist/plugin.d.ts.map +1 -1
- package/dist/serializer.d.ts.map +1 -1
- package/dist/types/index.d.ts +905 -659
- package/package.json +12 -2
- package/src/components/__fixtures__/schemas/cyclonedx-1.5.schema.json +3800 -0
- package/src/components/__fixtures__/schemas/cyclonedx-spdx-license.schema.json +621 -0
- package/src/components/__fixtures__/schemas/jsf-0.82.schema.json +240 -0
- package/src/components/__fixtures__/schemas/spdx-2.3.schema.json +740 -0
- package/src/components/__fixtures__/synthesized-template.json +53 -0
- package/src/components/__tests__/mock-cloud-executor.ts +425 -0
- package/src/components/apply.test.ts +382 -0
- package/src/components/apply.ts +499 -0
- package/src/components/builders.test.ts +49 -0
- package/src/components/builders.ts +59 -0
- package/src/components/capability-plugin.ts +73 -0
- package/src/components/cloud-executor.test.ts +25 -0
- package/src/components/cloud-executor.ts +814 -0
- package/src/components/config-bom.test.ts +273 -0
- package/src/components/config-bom.ts +310 -0
- package/src/components/host-delivery.test.ts +121 -0
- package/src/components/host-delivery.ts +193 -0
- package/src/components/index.ts +19 -0
- package/src/components/job-submission.test.ts +97 -0
- package/src/components/job-submission.ts +138 -0
- package/src/components/pilots-e2e.test.ts +460 -0
- package/src/components/presets-e2e.test.ts +166 -0
- package/src/components/publish.test.ts +318 -0
- package/src/components/publish.ts +356 -0
- package/src/components/safety.test.ts +47 -0
- package/src/components/safety.ts +78 -0
- package/src/components/wait-aws.test.ts +79 -0
- package/src/components/wait-aws.ts +132 -0
- package/src/generated/index.d.ts +905 -659
- package/src/generated/index.ts +79 -51
- package/src/generated/lexicon-aws.json +893 -737
- package/src/import/live-export.ts +2 -1
- package/src/index.ts +5 -0
- package/src/lint/audit-catalog.ts +45 -0
- package/src/lsp/completions.test.ts +4 -2
- package/src/op/activities/floci.test.ts +67 -0
- package/src/op/activities/floci.ts +149 -0
- package/src/op/activities/index.ts +16 -0
- package/src/ownership.test.ts +18 -0
- package/src/ownership.ts +15 -0
- package/src/plugin.ts +3 -0
- package/src/serializer.ts +2 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -33,11 +33,11 @@ export declare class Accelerator {
|
|
|
33
33
|
|
|
34
34
|
export declare class AcceptedPortfolioShare {
|
|
35
35
|
constructor(props: {
|
|
36
|
+
/** The portfolio identifier. */
|
|
36
37
|
PortfolioId: string;
|
|
38
|
+
/** The language code. */
|
|
37
39
|
AcceptLanguage?: string;
|
|
38
|
-
Id?: string;
|
|
39
40
|
}, attributes?: CFResourceAttributes);
|
|
40
|
-
readonly Id: string;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
export declare class AccessEntry {
|
|
@@ -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
|
|
4176
|
+
export declare class Build {
|
|
4158
4177
|
constructor(props: {
|
|
4159
|
-
/** The Amazon Resource Name (ARN)
|
|
4160
|
-
|
|
4161
|
-
/**
|
|
4162
|
-
|
|
4163
|
-
/**
|
|
4164
|
-
|
|
4165
|
-
/**
|
|
4166
|
-
|
|
4167
|
-
/**
|
|
4168
|
-
|
|
4169
|
-
/** The
|
|
4170
|
-
|
|
4171
|
-
/**
|
|
4172
|
-
|
|
4173
|
-
/**
|
|
4174
|
-
|
|
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
|
|
4185
|
-
readonly
|
|
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 {
|
|
@@ -5153,22 +5155,39 @@ export declare class CloudExadataInfrastructure {
|
|
|
5153
5155
|
|
|
5154
5156
|
export declare class CloudFormationProduct {
|
|
5155
5157
|
constructor(props: {
|
|
5158
|
+
/** The name of the product. */
|
|
5156
5159
|
Name: string;
|
|
5160
|
+
/** The owner of the product. */
|
|
5157
5161
|
Owner: string;
|
|
5162
|
+
/** The language code. */
|
|
5158
5163
|
AcceptLanguage?: string;
|
|
5164
|
+
/** The description of the product. */
|
|
5159
5165
|
Description?: string;
|
|
5166
|
+
/** The distributor of the product. */
|
|
5160
5167
|
Distributor?: string;
|
|
5168
|
+
/** The ID of the product, such as prod-tsjbmal34qvek */
|
|
5161
5169
|
Id?: string;
|
|
5170
|
+
/** The name of the product. */
|
|
5162
5171
|
ProductName?: string;
|
|
5163
|
-
|
|
5172
|
+
/** The type of product. */
|
|
5173
|
+
ProductType?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
5174
|
+
/** The IDs of the provisioning artifacts */
|
|
5164
5175
|
ProvisioningArtifactIds?: string;
|
|
5176
|
+
/** The names of the provisioning artifacts */
|
|
5165
5177
|
ProvisioningArtifactNames?: string;
|
|
5178
|
+
/** The configuration of the provisioning artifact (also known as a version). */
|
|
5166
5179
|
ProvisioningArtifactParameters?: CloudFormationProduct_ProvisioningArtifactProperties[];
|
|
5180
|
+
/** This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name. */
|
|
5167
5181
|
ReplaceProvisioningArtifacts?: boolean;
|
|
5182
|
+
/** A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response. */
|
|
5168
5183
|
SourceConnection?: CloudFormationProduct_SourceConnection;
|
|
5184
|
+
/** The support information about the product. */
|
|
5169
5185
|
SupportDescription?: string;
|
|
5186
|
+
/** The contact email for product support. */
|
|
5170
5187
|
SupportEmail?: string;
|
|
5188
|
+
/** The contact URL for product support. */
|
|
5171
5189
|
SupportUrl?: string;
|
|
5190
|
+
/** One or more tags. */
|
|
5172
5191
|
Tags?: CloudFormationProduct_Tag[];
|
|
5173
5192
|
}, attributes?: CFResourceAttributes);
|
|
5174
5193
|
readonly Id: string;
|
|
@@ -5558,52 +5577,6 @@ export declare class CodeArtifactRepository {
|
|
|
5558
5577
|
readonly Name: string;
|
|
5559
5578
|
}
|
|
5560
5579
|
|
|
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
5580
|
export declare class CodeBuildFleet {
|
|
5608
5581
|
constructor(props: {
|
|
5609
5582
|
Arn?: string;
|
|
@@ -5751,6 +5724,8 @@ export declare class CodePipelinePipeline {
|
|
|
5751
5724
|
RoleArn: string;
|
|
5752
5725
|
/** Represents information about a stage and its definition. */
|
|
5753
5726
|
Stages: CodePipelinePipeline_StageDeclaration[];
|
|
5727
|
+
/** The Amazon Resource Name (ARN) of the pipeline. */
|
|
5728
|
+
Arn?: string;
|
|
5754
5729
|
/** The S3 bucket where artifacts for the pipeline are stored. */
|
|
5755
5730
|
ArtifactStore?: CodePipelinePipeline_ArtifactStore;
|
|
5756
5731
|
/** 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 +5749,7 @@ export declare class CodePipelinePipeline {
|
|
|
5774
5749
|
/** The version of the pipeline. */
|
|
5775
5750
|
Version?: string;
|
|
5776
5751
|
}, attributes?: CFResourceAttributes);
|
|
5752
|
+
readonly Arn: string;
|
|
5777
5753
|
readonly Version: string;
|
|
5778
5754
|
}
|
|
5779
5755
|
|
|
@@ -5971,35 +5947,6 @@ export declare class Command {
|
|
|
5971
5947
|
readonly CommandArn: string;
|
|
5972
5948
|
}
|
|
5973
5949
|
|
|
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
5950
|
export declare class ComponentType {
|
|
6004
5951
|
constructor(props: {
|
|
6005
5952
|
/** The ID of the component type. */
|
|
@@ -6226,6 +6173,24 @@ export declare class Config {
|
|
|
6226
6173
|
readonly Type: string;
|
|
6227
6174
|
}
|
|
6228
6175
|
|
|
6176
|
+
export declare class ConfigConnector {
|
|
6177
|
+
constructor(props: {
|
|
6178
|
+
/** The configuration for the connector that specifies the third-party cloud provider connection details. */
|
|
6179
|
+
ConnectorConfiguration: ConfigConnector_ConnectorConfiguration;
|
|
6180
|
+
/** The Amazon Resource Name (ARN) of the connector. */
|
|
6181
|
+
Arn?: string;
|
|
6182
|
+
/** The time at which the connector was created. */
|
|
6183
|
+
CreatedTime?: string;
|
|
6184
|
+
/** The name of the connector. AWS Config automatically assigns the name when creating the Connector. */
|
|
6185
|
+
Name?: string;
|
|
6186
|
+
/** The tags for the connector. */
|
|
6187
|
+
Tags?: ConfigConnector_Tag[];
|
|
6188
|
+
}, attributes?: CFResourceAttributes);
|
|
6189
|
+
readonly Arn: string;
|
|
6190
|
+
readonly CreatedTime: string;
|
|
6191
|
+
readonly Name: string;
|
|
6192
|
+
}
|
|
6193
|
+
|
|
6229
6194
|
export declare class ConfigRule {
|
|
6230
6195
|
constructor(props: {
|
|
6231
6196
|
/** Provides the rule owner (```` for managed rules, ``CUSTOM_POLICY`` for Custom Policy rules, and ``CUSTOM_LAMBDA`` for Custom Lambda rules), the rule identifier, and the notifications that cause the function to evaluate your AWS resources. */
|
|
@@ -6969,6 +6934,36 @@ export declare class ConnectSecurityProfile {
|
|
|
6969
6934
|
readonly SecurityProfileArn: string;
|
|
6970
6935
|
}
|
|
6971
6936
|
|
|
6937
|
+
export declare class ConnectTestCase {
|
|
6938
|
+
constructor(props: {
|
|
6939
|
+
/** The content of the test case. */
|
|
6940
|
+
Content: string;
|
|
6941
|
+
/** The identifier of the Amazon Connect instance. */
|
|
6942
|
+
InstanceArn: string;
|
|
6943
|
+
/** The name of the test case. */
|
|
6944
|
+
Name: string;
|
|
6945
|
+
/** The description of the test case. */
|
|
6946
|
+
Description?: string;
|
|
6947
|
+
/** Entry point for Testcase. */
|
|
6948
|
+
EntryPoint?: ConnectTestCase_EntryPoint;
|
|
6949
|
+
/** The initialization data of the test case. */
|
|
6950
|
+
InitializationData?: string;
|
|
6951
|
+
/** Last modified region. */
|
|
6952
|
+
LastModifiedRegion?: string;
|
|
6953
|
+
/** Last modified time. */
|
|
6954
|
+
LastModifiedTime?: number;
|
|
6955
|
+
/** The status of the test case. */
|
|
6956
|
+
Status?: "PUBLISHED" | "SAVED";
|
|
6957
|
+
/** One or more tags. */
|
|
6958
|
+
Tags?: ConnectTestCase_Tag[];
|
|
6959
|
+
/** The identifier of the test case. */
|
|
6960
|
+
TestCaseArn?: string;
|
|
6961
|
+
}, attributes?: CFResourceAttributes);
|
|
6962
|
+
readonly LastModifiedRegion: string;
|
|
6963
|
+
readonly LastModifiedTime: number;
|
|
6964
|
+
readonly TestCaseArn: string;
|
|
6965
|
+
}
|
|
6966
|
+
|
|
6972
6967
|
export declare class ConnectUser {
|
|
6973
6968
|
constructor(props: {
|
|
6974
6969
|
/** The identifier of the Amazon Connect instance. */
|
|
@@ -7396,42 +7391,6 @@ export declare class ContinuousDeploymentPolicy {
|
|
|
7396
7391
|
readonly LastModifiedTime: string;
|
|
7397
7392
|
}
|
|
7398
7393
|
|
|
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
7394
|
export declare class ControlPanel {
|
|
7436
7395
|
constructor(props: {
|
|
7437
7396
|
/** The name of the control panel. You can use any non-white space character in the name. */
|
|
@@ -8262,11 +8221,10 @@ export declare class DataCatalog {
|
|
|
8262
8221
|
|
|
8263
8222
|
export declare class DataCatalogEncryptionSettings {
|
|
8264
8223
|
constructor(props: {
|
|
8224
|
+
/** The ID of the Data Catalog in which the settings are created. */
|
|
8265
8225
|
CatalogId: string;
|
|
8266
8226
|
DataCatalogEncryptionSettings: DataCatalogEncryptionSettings_DataCatalogEncryptionSettings;
|
|
8267
|
-
Id?: string;
|
|
8268
8227
|
}, attributes?: CFResourceAttributes);
|
|
8269
|
-
readonly Id: string;
|
|
8270
8228
|
}
|
|
8271
8229
|
|
|
8272
8230
|
export declare class DataCellsFilter {
|
|
@@ -8288,30 +8246,6 @@ export declare class DataCellsFilter {
|
|
|
8288
8246
|
}, attributes?: CFResourceAttributes);
|
|
8289
8247
|
}
|
|
8290
8248
|
|
|
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
8249
|
export declare class DataflowEndpointGroup {
|
|
8316
8250
|
constructor(props: {
|
|
8317
8251
|
EndpointDetails: DataflowEndpointGroup_EndpointDetails[];
|
|
@@ -11568,6 +11502,23 @@ export declare class DomainNameV2 {
|
|
|
11568
11502
|
readonly DomainNameId: string;
|
|
11569
11503
|
}
|
|
11570
11504
|
|
|
11505
|
+
export declare class DomainObjectType {
|
|
11506
|
+
constructor(props: {
|
|
11507
|
+
DomainName: string;
|
|
11508
|
+
Fields: Record<string, unknown>;
|
|
11509
|
+
ObjectTypeName: string;
|
|
11510
|
+
/** The timestamp of when the domain object type was created. */
|
|
11511
|
+
CreatedAt?: string;
|
|
11512
|
+
Description?: string;
|
|
11513
|
+
EncryptionKey?: string;
|
|
11514
|
+
/** The timestamp of when the domain object type was most recently edited. */
|
|
11515
|
+
LastUpdatedAt?: string;
|
|
11516
|
+
Tags?: any;
|
|
11517
|
+
}, attributes?: CFResourceAttributes);
|
|
11518
|
+
readonly CreatedAt: string;
|
|
11519
|
+
readonly LastUpdatedAt: string;
|
|
11520
|
+
}
|
|
11521
|
+
|
|
11571
11522
|
export declare class DomainUnit {
|
|
11572
11523
|
constructor(props: {
|
|
11573
11524
|
/** The ID of the domain where you want to create a domain unit. */
|
|
@@ -11666,30 +11617,6 @@ export declare class DSQLCluster {
|
|
|
11666
11617
|
readonly VpcEndpointServiceName: string;
|
|
11667
11618
|
}
|
|
11668
11619
|
|
|
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
11620
|
export declare class EC2CapacityReservation {
|
|
11694
11621
|
constructor(props: {
|
|
11695
11622
|
InstanceCount: number;
|
|
@@ -12087,6 +12014,7 @@ export declare class EcsService {
|
|
|
12087
12014
|
/** 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
12015
|
To remove this property from your service resource, specify an empty ``LoadBalancer`` array. */
|
|
12089
12016
|
LoadBalancers?: EcsService_LoadBalancer[];
|
|
12017
|
+
/** 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
12018
|
Monitoring?: EcsService_MonitoringConfiguration;
|
|
12091
12019
|
Name?: string;
|
|
12092
12020
|
/** 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 +12334,7 @@ export declare class EKSCluster {
|
|
|
12406
12334
|
OpenIdConnectIssuerUrl?: string;
|
|
12407
12335
|
OutpostConfig?: EKSCluster_OutpostConfig;
|
|
12408
12336
|
RemoteNetworkConfig?: EKSCluster_RemoteNetworkConfig;
|
|
12337
|
+
RollbackConfig?: EKSCluster_RollbackConfig;
|
|
12409
12338
|
StorageConfig?: EKSCluster_StorageConfig;
|
|
12410
12339
|
/** An array of key-value pairs to apply to this resource. */
|
|
12411
12340
|
Tags?: EKSCluster_Tag[];
|
|
@@ -12719,6 +12648,8 @@ export declare class EMRContainersEndpoint {
|
|
|
12719
12648
|
VirtualClusterId: string;
|
|
12720
12649
|
/** The ARN of the managed endpoint. */
|
|
12721
12650
|
Arn?: string;
|
|
12651
|
+
/** The auth proxy URL for Spark Connect connections. */
|
|
12652
|
+
AuthProxyUrl?: string;
|
|
12722
12653
|
/** The certificate authority for the managed endpoint. */
|
|
12723
12654
|
CertificateAuthority?: EMRContainersEndpoint_Certificate;
|
|
12724
12655
|
/** The configuration overrides for the managed endpoint. */
|
|
@@ -12735,6 +12666,8 @@ export declare class EMRContainersEndpoint {
|
|
|
12735
12666
|
SecurityGroup?: string;
|
|
12736
12667
|
/** The server URL of the managed endpoint. */
|
|
12737
12668
|
ServerUrl?: string;
|
|
12669
|
+
/** The idle timeout in minutes for sessions on the managed endpoint. */
|
|
12670
|
+
SessionIdleTimeoutInMinutes?: number;
|
|
12738
12671
|
/** The state of the managed endpoint. */
|
|
12739
12672
|
State?: string;
|
|
12740
12673
|
/** Additional details about the state of the managed endpoint. */
|
|
@@ -12743,6 +12676,7 @@ export declare class EMRContainersEndpoint {
|
|
|
12743
12676
|
Tags?: EMRContainersEndpoint_Tag[];
|
|
12744
12677
|
}, attributes?: CFResourceAttributes);
|
|
12745
12678
|
readonly Arn: string;
|
|
12679
|
+
readonly AuthProxyUrl: string;
|
|
12746
12680
|
readonly CertificateAuthority: EMRContainersEndpoint_Certificate;
|
|
12747
12681
|
readonly CreatedAt: string;
|
|
12748
12682
|
readonly FailureReason: string;
|
|
@@ -13818,16 +13752,12 @@ export declare class EvidentlySegment {
|
|
|
13818
13752
|
|
|
13819
13753
|
export declare class EVSEnvironment {
|
|
13820
13754
|
constructor(props: {
|
|
13821
|
-
ConnectivityInfo: Record<string, unknown>;
|
|
13822
|
-
/** The license information for an EVS environment */
|
|
13823
|
-
LicenseInfo: Record<string, unknown>;
|
|
13824
13755
|
ServiceAccessSubnetId: string;
|
|
13825
|
-
SiteId: string;
|
|
13826
13756
|
TermsAccepted: boolean;
|
|
13827
|
-
|
|
13828
|
-
VcfVersion: "VCF-5.2.1" | "VCF-5.2.2";
|
|
13757
|
+
VcfVersion: "SELF_DEPLOYED" | "VCF-5.2.1" | "VCF-5.2.2";
|
|
13829
13758
|
VpcId: string;
|
|
13830
13759
|
Checks?: EVSEnvironment_Check[];
|
|
13760
|
+
ConnectivityInfo?: Record<string, unknown>;
|
|
13831
13761
|
CreatedAt?: string;
|
|
13832
13762
|
Credentials?: EVSEnvironment_Secret[];
|
|
13833
13763
|
EnvironmentArn?: string;
|
|
@@ -13840,11 +13770,15 @@ export declare class EVSEnvironment {
|
|
|
13840
13770
|
/** The initial Vlan configuration only required upon creation. Modification after creation will have no effect */
|
|
13841
13771
|
InitialVlans?: Record<string, unknown>;
|
|
13842
13772
|
KmsKeyId?: string;
|
|
13773
|
+
/** The license information for an EVS environment */
|
|
13774
|
+
LicenseInfo?: Record<string, unknown>;
|
|
13843
13775
|
ModifiedAt?: string;
|
|
13844
13776
|
ServiceAccessSecurityGroups?: Record<string, unknown>;
|
|
13777
|
+
SiteId?: string;
|
|
13845
13778
|
StateDetails?: string;
|
|
13846
13779
|
/** An array of key-value pairs to apply to this resource. */
|
|
13847
13780
|
Tags?: EVSEnvironment_Tag[];
|
|
13781
|
+
VcfHostnames?: Record<string, unknown>;
|
|
13848
13782
|
}, attributes?: CFResourceAttributes);
|
|
13849
13783
|
readonly Checks: EVSEnvironment_Check[];
|
|
13850
13784
|
readonly CreatedAt: string;
|
|
@@ -13921,23 +13855,24 @@ export declare class Export {
|
|
|
13921
13855
|
|
|
13922
13856
|
export declare class ExpressGatewayService {
|
|
13923
13857
|
constructor(props: {
|
|
13924
|
-
ExecutionRoleArn: string;
|
|
13925
13858
|
InfrastructureRoleArn: string;
|
|
13926
|
-
PrimaryContainer: ExpressGatewayService_ExpressGatewayContainer;
|
|
13927
13859
|
ActiveConfigurations?: ExpressGatewayService_ExpressGatewayServiceConfiguration[];
|
|
13928
13860
|
Cluster?: string;
|
|
13929
13861
|
Cpu?: string;
|
|
13930
13862
|
CreatedAt?: string;
|
|
13931
13863
|
ECSManagedResourceArns?: ExpressGatewayService_ECSManagedResourceArns;
|
|
13932
13864
|
Endpoint?: string;
|
|
13865
|
+
ExecutionRoleArn?: string;
|
|
13933
13866
|
HealthCheckPath?: string;
|
|
13934
13867
|
Memory?: string;
|
|
13935
13868
|
NetworkConfiguration?: ExpressGatewayService_ExpressGatewayServiceNetworkConfiguration;
|
|
13869
|
+
PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
|
|
13936
13870
|
ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
|
|
13937
13871
|
ServiceArn?: string;
|
|
13938
13872
|
ServiceName?: string;
|
|
13939
13873
|
Status?: ExpressGatewayService_ExpressGatewayServiceStatus;
|
|
13940
13874
|
Tags?: ExpressGatewayService_Tag[];
|
|
13875
|
+
TaskDefinitionArn?: string;
|
|
13941
13876
|
TaskRoleArn?: string;
|
|
13942
13877
|
UpdatedAt?: string;
|
|
13943
13878
|
}, attributes?: CFResourceAttributes);
|
|
@@ -14283,24 +14218,6 @@ export declare class Firewall {
|
|
|
14283
14218
|
readonly TransitGatewayAttachmentId: string;
|
|
14284
14219
|
}
|
|
14285
14220
|
|
|
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
14221
|
export declare class FirewallPolicy {
|
|
14305
14222
|
constructor(props: {
|
|
14306
14223
|
FirewallPolicy: FirewallPolicy_FirewallPolicy;
|
|
@@ -14376,6 +14293,7 @@ export declare class FirewallRuleGroup {
|
|
|
14376
14293
|
readonly CreationTime: string;
|
|
14377
14294
|
readonly CreatorRequestId: string;
|
|
14378
14295
|
readonly FirewallRules_Item_FirewallThreatProtectionId: string;
|
|
14296
|
+
readonly FirewallRules_Item_Status: string;
|
|
14379
14297
|
readonly Id: string;
|
|
14380
14298
|
readonly ModificationTime: string;
|
|
14381
14299
|
readonly OwnerId: string;
|
|
@@ -15226,29 +15144,6 @@ export declare class GameLiftAlias {
|
|
|
15226
15144
|
readonly AliasId: string;
|
|
15227
15145
|
}
|
|
15228
15146
|
|
|
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
15147
|
export declare class GameLiftFleet {
|
|
15253
15148
|
constructor(props: {
|
|
15254
15149
|
/** A descriptive label that is associated with a fleet. Fleet names do not need to be unique. */
|
|
@@ -17036,6 +16931,8 @@ export declare class ImagePipeline {
|
|
|
17036
16931
|
ImageRecipeArn?: string;
|
|
17037
16932
|
/** Contains settings for vulnerability scans. */
|
|
17038
16933
|
ImageScanningConfiguration?: ImagePipeline_ImageScanningConfiguration;
|
|
16934
|
+
/** The tags to be applied to images created by this pipeline. */
|
|
16935
|
+
ImageTags?: Record<string, unknown>;
|
|
17039
16936
|
/** The image tests configuration of the image pipeline. */
|
|
17040
16937
|
ImageTestsConfiguration?: ImagePipeline_ImageTestsConfiguration;
|
|
17041
16938
|
/** The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline. */
|
|
@@ -17069,6 +16966,8 @@ export declare class ImageRecipe {
|
|
|
17069
16966
|
AdditionalInstanceConfiguration?: ImageRecipe_AdditionalInstanceConfiguration;
|
|
17070
16967
|
/** The tags to apply to the AMI created by this image recipe. */
|
|
17071
16968
|
AmiTags?: Record<string, unknown>;
|
|
16969
|
+
/** The AMI watermark names to attach to the output AMI from this recipe. AMI watermarks are lineage markers that automatically propagate to derivative AMIs when the source AMI is copied or distributed. */
|
|
16970
|
+
AmiWatermarks?: string[];
|
|
17072
16971
|
/** The Amazon Resource Name (ARN) of the image recipe. */
|
|
17073
16972
|
Arn?: string;
|
|
17074
16973
|
/** The block device mappings to apply when creating images from this recipe. */
|
|
@@ -17464,14 +17363,12 @@ export declare class InsightRule {
|
|
|
17464
17363
|
constructor(props: {
|
|
17465
17364
|
RuleBody: string;
|
|
17466
17365
|
RuleName: string;
|
|
17467
|
-
RuleState:
|
|
17366
|
+
RuleState: "DISABLED" | "ENABLED";
|
|
17468
17367
|
ApplyOnTransformedLogs?: boolean;
|
|
17469
17368
|
Arn?: string;
|
|
17470
|
-
Id?: string;
|
|
17471
17369
|
Tags?: InsightRule_Tag[];
|
|
17472
17370
|
}, attributes?: CFResourceAttributes);
|
|
17473
17371
|
readonly Arn: string;
|
|
17474
|
-
readonly Id: string;
|
|
17475
17372
|
}
|
|
17476
17373
|
|
|
17477
17374
|
export declare class InspectorV2Filter {
|
|
@@ -18119,22 +18016,6 @@ export declare class IoTFleetWiseFleet {
|
|
|
18119
18016
|
readonly LastModificationTime: string;
|
|
18120
18017
|
}
|
|
18121
18018
|
|
|
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
18019
|
export declare class IoTJobTemplate {
|
|
18139
18020
|
constructor(props: {
|
|
18140
18021
|
/** A description of the Job Template. */
|
|
@@ -19384,6 +19265,7 @@ export declare class LambdaCapacityProvider {
|
|
|
19384
19265
|
InstanceRequirements?: LambdaCapacityProvider_InstanceRequirements;
|
|
19385
19266
|
/** The ARN of the KMS key used to encrypt the capacity provider's resources. */
|
|
19386
19267
|
KmsKeyArn?: string;
|
|
19268
|
+
/** Configuration for tag propagation to managed resources launched by the capacity provider. */
|
|
19387
19269
|
PropagateTags?: LambdaCapacityProvider_PropagateTagsConfig;
|
|
19388
19270
|
State?: LambdaCapacityProvider_CapacityProviderState;
|
|
19389
19271
|
/** A key-value pair that provides metadata for the capacity provider. */
|
|
@@ -24208,6 +24090,28 @@ export declare class OAuth2CredentialProvider {
|
|
|
24208
24090
|
readonly Oauth2ProviderConfigOutput: OAuth2CredentialProvider_Oauth2ProviderConfigOutput;
|
|
24209
24091
|
}
|
|
24210
24092
|
|
|
24093
|
+
export declare class OAuthClientApplication {
|
|
24094
|
+
constructor(props: {
|
|
24095
|
+
Name: string;
|
|
24096
|
+
OAuthClientApplicationId: string;
|
|
24097
|
+
OAuthClientAuthenticationType: "TOKEN";
|
|
24098
|
+
OAuthTokenEndpointUrl: string;
|
|
24099
|
+
Arn?: string;
|
|
24100
|
+
ClientId?: string;
|
|
24101
|
+
ClientSecret?: string;
|
|
24102
|
+
CreatedTime?: string;
|
|
24103
|
+
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";
|
|
24104
|
+
IdentityProviderVpcConnectionProperties?: OAuthClientApplication_IdentityProviderVpcConnectionProperties;
|
|
24105
|
+
LastUpdatedTime?: string;
|
|
24106
|
+
OAuthAuthorizationEndpointUrl?: string;
|
|
24107
|
+
OAuthScopes?: string;
|
|
24108
|
+
Tags?: OAuthClientApplication_Tag[];
|
|
24109
|
+
}, attributes?: CFResourceAttributes);
|
|
24110
|
+
readonly Arn: string;
|
|
24111
|
+
readonly CreatedTime: string;
|
|
24112
|
+
readonly LastUpdatedTime: string;
|
|
24113
|
+
}
|
|
24114
|
+
|
|
24211
24115
|
export declare class ObjectType {
|
|
24212
24116
|
constructor(props: {
|
|
24213
24117
|
/** Description of the profile object type. */
|
|
@@ -25640,10 +25544,14 @@ export declare class Pentest {
|
|
|
25640
25544
|
Assets: Pentest_Assets;
|
|
25641
25545
|
/** Service role for accessing resources */
|
|
25642
25546
|
ServiceRole: string;
|
|
25547
|
+
/** Strategy for cleaning up resources after pentest job completion */
|
|
25548
|
+
CleanUpStrategy?: Pentest_CleanUpStrategy;
|
|
25643
25549
|
/** Strategy for code remediation on findings */
|
|
25644
25550
|
CodeRemediationStrategy?: Pentest_CodeRemediationStrategy;
|
|
25645
25551
|
/** Timestamp when the pentest was created */
|
|
25646
25552
|
CreatedAt?: string;
|
|
25553
|
+
/** A list of managed skills to disable for this pentest */
|
|
25554
|
+
DisableManagedSkills?: Pentest_SkillType[];
|
|
25647
25555
|
/** A list of risk types excluded from the pentest execution */
|
|
25648
25556
|
ExcludeRiskTypes?: Pentest_RiskType[];
|
|
25649
25557
|
/** CloudWatch logs config */
|
|
@@ -25683,7 +25591,7 @@ export declare class Permission {
|
|
|
25683
25591
|
/** 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
25592
|
FunctionUrlAuthType?: "AWS_IAM" | "NONE";
|
|
25685
25593
|
Id?: string;
|
|
25686
|
-
/**
|
|
25594
|
+
/** Indicates whether the permission applies when the function is invoked through a function URL. */
|
|
25687
25595
|
InvokedViaFunctionUrl?: boolean;
|
|
25688
25596
|
/** The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization. */
|
|
25689
25597
|
PrincipalOrgID?: string;
|
|
@@ -27442,6 +27350,28 @@ export declare class QuickSightDataSource {
|
|
|
27442
27350
|
readonly Status: QuickSightDataSource_ResourceStatus;
|
|
27443
27351
|
}
|
|
27444
27352
|
|
|
27353
|
+
export declare class QuickSightFlow {
|
|
27354
|
+
constructor(props: {
|
|
27355
|
+
AwsAccountId: string;
|
|
27356
|
+
FlowDefinition: any;
|
|
27357
|
+
Name: string;
|
|
27358
|
+
Arn?: string;
|
|
27359
|
+
CreatedTime?: string;
|
|
27360
|
+
Description?: string;
|
|
27361
|
+
FlowId?: string;
|
|
27362
|
+
LastUpdatedTime?: string;
|
|
27363
|
+
Permissions?: QuickSightFlow_Permission[];
|
|
27364
|
+
PublishState?: QuickSightFlow_FlowPublishState;
|
|
27365
|
+
StepAliases?: QuickSightFlow_StepAliasMapping[];
|
|
27366
|
+
}, attributes?: CFResourceAttributes);
|
|
27367
|
+
readonly Arn: string;
|
|
27368
|
+
readonly CreatedTime: string;
|
|
27369
|
+
readonly FlowId: string;
|
|
27370
|
+
readonly LastUpdatedTime: string;
|
|
27371
|
+
readonly PublishState: QuickSightFlow_FlowPublishState;
|
|
27372
|
+
readonly StepAliases: QuickSightFlow_StepAliasMapping[];
|
|
27373
|
+
}
|
|
27374
|
+
|
|
27445
27375
|
export declare class QuickSightTemplate {
|
|
27446
27376
|
constructor(props: {
|
|
27447
27377
|
AwsAccountId: string;
|
|
@@ -28394,14 +28324,12 @@ export declare class RemediationConfiguration {
|
|
|
28394
28324
|
TargetType: string;
|
|
28395
28325
|
Automatic?: boolean;
|
|
28396
28326
|
ExecutionControls?: RemediationConfiguration_ExecutionControls;
|
|
28397
|
-
Id?: string;
|
|
28398
28327
|
MaximumAutomaticAttempts?: number;
|
|
28399
28328
|
Parameters?: Record<string, unknown>;
|
|
28400
28329
|
ResourceType?: string;
|
|
28401
28330
|
RetryAttemptSeconds?: number;
|
|
28402
28331
|
TargetVersion?: string;
|
|
28403
28332
|
}, attributes?: CFResourceAttributes);
|
|
28404
|
-
readonly Id: string;
|
|
28405
28333
|
}
|
|
28406
28334
|
|
|
28407
28335
|
export declare class ReplicaKey {
|
|
@@ -28841,58 +28769,6 @@ export declare class RequestValidator {
|
|
|
28841
28769
|
readonly RequestValidatorId: string;
|
|
28842
28770
|
}
|
|
28843
28771
|
|
|
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
28772
|
export declare class ResilienceHubApp {
|
|
28897
28773
|
constructor(props: {
|
|
28898
28774
|
/** A string containing full ResilienceHub app template body. */
|
|
@@ -30043,6 +29919,8 @@ export declare class RouterInput {
|
|
|
30043
29919
|
Arn?: string;
|
|
30044
29920
|
/** The Availability Zone where you want to create the router input. This must be a valid Availability Zone for the region specified by regionName, or the current region if no regionName is provided. */
|
|
30045
29921
|
AvailabilityZone?: string;
|
|
29922
|
+
ContentQualityAnalysisConfiguration?: any;
|
|
29923
|
+
ContentQualityAnalysisType?: RouterInput_RouterContentQualityAnalysisType;
|
|
30046
29924
|
/** The timestamp when the router input was created. */
|
|
30047
29925
|
CreatedAt?: string;
|
|
30048
29926
|
/** The unique identifier of the router input. */
|
|
@@ -30064,6 +29942,7 @@ export declare class RouterInput {
|
|
|
30064
29942
|
UpdatedAt?: string;
|
|
30065
29943
|
}, attributes?: CFResourceAttributes);
|
|
30066
29944
|
readonly Arn: string;
|
|
29945
|
+
readonly ContentQualityAnalysisType: RouterInput_RouterContentQualityAnalysisType;
|
|
30067
29946
|
readonly CreatedAt: string;
|
|
30068
29947
|
readonly Id: string;
|
|
30069
29948
|
readonly InputType: RouterInput_RouterInputType;
|
|
@@ -31522,6 +31401,8 @@ export declare class SecurityAgentAgentSpace {
|
|
|
31522
31401
|
}, attributes?: CFResourceAttributes);
|
|
31523
31402
|
readonly AgentSpaceId: string;
|
|
31524
31403
|
readonly CreatedAt: string;
|
|
31404
|
+
readonly IntegratedResources_Item_ProviderResources_Item_ConfluenceDocument_SpaceTitle: string;
|
|
31405
|
+
readonly IntegratedResources_Item_ProviderResources_Item_ConfluenceDocument_Title: string;
|
|
31525
31406
|
readonly UpdatedAt: string;
|
|
31526
31407
|
}
|
|
31527
31408
|
|
|
@@ -31717,6 +31598,26 @@ export declare class SecurityPolicy {
|
|
|
31717
31598
|
}, attributes?: CFResourceAttributes);
|
|
31718
31599
|
}
|
|
31719
31600
|
|
|
31601
|
+
export declare class SecurityRequirementPack {
|
|
31602
|
+
constructor(props: {
|
|
31603
|
+
/** Name of the security requirement pack */
|
|
31604
|
+
Name: string;
|
|
31605
|
+
/** Description of the pack */
|
|
31606
|
+
Description?: string;
|
|
31607
|
+
/** KMS key for client-side encryption of pack contents */
|
|
31608
|
+
KmsKeyId?: string;
|
|
31609
|
+
/** Unique identifier of the security requirement pack */
|
|
31610
|
+
PackId?: string;
|
|
31611
|
+
/** Security requirements within this pack */
|
|
31612
|
+
SecurityRequirements?: SecurityRequirementPack_SecurityRequirement[];
|
|
31613
|
+
/** Whether the pack is enabled or disabled */
|
|
31614
|
+
Status?: "DISABLED" | "ENABLED";
|
|
31615
|
+
/** Tags for the security requirement pack */
|
|
31616
|
+
Tags?: SecurityRequirementPack_Tag[];
|
|
31617
|
+
}, attributes?: CFResourceAttributes);
|
|
31618
|
+
readonly PackId: string;
|
|
31619
|
+
}
|
|
31620
|
+
|
|
31720
31621
|
export declare class SegmentDefinition {
|
|
31721
31622
|
constructor(props: {
|
|
31722
31623
|
/** The display name of the segment definition. */
|
|
@@ -33106,6 +33007,7 @@ export declare class SsmParameter {
|
|
|
33106
33007
|
Value: string;
|
|
33107
33008
|
/** A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\d+$`` */
|
|
33108
33009
|
AllowedPattern?: string;
|
|
33010
|
+
Arn?: string;
|
|
33109
33011
|
/** The data type of the parameter, such as ``text`` or ``aws:ec2:image``. The default is ``text``. */
|
|
33110
33012
|
DataType?: "aws:ec2:image" | "text";
|
|
33111
33013
|
/** Information about the parameter. */
|
|
@@ -33122,6 +33024,7 @@ export declare class SsmParameter {
|
|
|
33122
33024
|
/** The parameter tier. */
|
|
33123
33025
|
Tier?: "Advanced" | "Intelligent-Tiering" | "Standard";
|
|
33124
33026
|
}, attributes?: CFResourceAttributes);
|
|
33027
|
+
readonly Arn: string;
|
|
33125
33028
|
}
|
|
33126
33029
|
|
|
33127
33030
|
export declare class SSMResourcePolicy {
|
|
@@ -34032,6 +33935,8 @@ export declare class System {
|
|
|
34032
33935
|
Description?: string;
|
|
34033
33936
|
/** The KMS key ID for encrypting system data. */
|
|
34034
33937
|
KmsKeyId?: string;
|
|
33938
|
+
/** 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. */
|
|
33939
|
+
SharingEnabled?: boolean;
|
|
34035
33940
|
/** The ARN of the system. */
|
|
34036
33941
|
SystemArn?: string;
|
|
34037
33942
|
/** The system ID. */
|
|
@@ -34605,29 +34510,6 @@ export declare class Terms {
|
|
|
34605
34510
|
readonly TermsId: string;
|
|
34606
34511
|
}
|
|
34607
34512
|
|
|
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
34513
|
export declare class Thing {
|
|
34632
34514
|
constructor(props: {
|
|
34633
34515
|
Arn?: string;
|
|
@@ -36033,6 +35915,8 @@ export declare class UserPool {
|
|
|
36033
35915
|
EmailVerificationMessage?: string;
|
|
36034
35916
|
EmailVerificationSubject?: string;
|
|
36035
35917
|
EnabledMfas?: string[];
|
|
35918
|
+
IssuerConfiguration?: UserPool_IssuerConfiguration;
|
|
35919
|
+
KeyConfiguration?: UserPool_KeyConfiguration;
|
|
36036
35920
|
LambdaConfig?: UserPool_LambdaConfig;
|
|
36037
35921
|
MfaConfiguration?: string;
|
|
36038
35922
|
Policies?: UserPool_Policies;
|
|
@@ -36128,6 +36012,26 @@ export declare class UserPoolIdentityProvider {
|
|
|
36128
36012
|
}, attributes?: CFResourceAttributes);
|
|
36129
36013
|
}
|
|
36130
36014
|
|
|
36015
|
+
export declare class UserPoolRegionalConfigurationAttachment {
|
|
36016
|
+
constructor(props: {
|
|
36017
|
+
UserPoolId: string;
|
|
36018
|
+
EmailConfiguration?: UserPoolRegionalConfigurationAttachment_EmailConfiguration;
|
|
36019
|
+
LambdaConfig?: UserPoolRegionalConfigurationAttachment_LambdaConfig;
|
|
36020
|
+
SmsConfiguration?: UserPoolRegionalConfigurationAttachment_SmsConfiguration;
|
|
36021
|
+
/** The status of the replica. Set to ACTIVE or INACTIVE. */
|
|
36022
|
+
Status?: string;
|
|
36023
|
+
UserPoolTags?: Record<string, unknown>;
|
|
36024
|
+
}, attributes?: CFResourceAttributes);
|
|
36025
|
+
}
|
|
36026
|
+
|
|
36027
|
+
export declare class UserPoolReplica {
|
|
36028
|
+
constructor(props: {
|
|
36029
|
+
RegionName: string;
|
|
36030
|
+
UserPoolId: string;
|
|
36031
|
+
UserPoolTagsAtCreate?: Record<string, unknown>;
|
|
36032
|
+
}, attributes?: CFResourceAttributes);
|
|
36033
|
+
}
|
|
36034
|
+
|
|
36131
36035
|
export declare class UserPoolResourceServer {
|
|
36132
36036
|
constructor(props: {
|
|
36133
36037
|
Identifier: string;
|
|
@@ -36540,6 +36444,8 @@ export declare class VirtualCluster {
|
|
|
36540
36444
|
Id?: string;
|
|
36541
36445
|
/** The ID of the security configuration. */
|
|
36542
36446
|
SecurityConfigurationId?: string;
|
|
36447
|
+
/** Whether the virtual cluster is session-enabled for Spark Connect. */
|
|
36448
|
+
SessionEnabled?: boolean;
|
|
36543
36449
|
/** An array of key-value pairs to apply to this virtual cluster. */
|
|
36544
36450
|
Tags?: VirtualCluster_Tag[];
|
|
36545
36451
|
}, attributes?: CFResourceAttributes);
|
|
@@ -37190,6 +37096,7 @@ export declare class VpcLatticeService {
|
|
|
37190
37096
|
CustomDomainName?: string;
|
|
37191
37097
|
DnsEntry?: VpcLatticeService_DnsEntry;
|
|
37192
37098
|
Id?: string;
|
|
37099
|
+
IdleTimeoutSeconds?: number;
|
|
37193
37100
|
LastUpdatedAt?: string;
|
|
37194
37101
|
Name?: string;
|
|
37195
37102
|
Status?: "ACTIVE" | "CREATE_FAILED" | "CREATE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_IN_PROGRESS";
|
|
@@ -37962,15 +37869,15 @@ export declare class Workgroup {
|
|
|
37962
37869
|
PricePerformanceTarget?: Workgroup_PerformanceTarget;
|
|
37963
37870
|
/** A value that specifies whether the workgroup can be accessible from a public network. */
|
|
37964
37871
|
PubliclyAccessible?: boolean;
|
|
37965
|
-
/** The recovery point
|
|
37872
|
+
/** 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
37873
|
RecoveryPointId?: string;
|
|
37967
37874
|
/** A list of security group IDs to associate with the workgroup. */
|
|
37968
37875
|
SecurityGroupIds?: string[];
|
|
37969
|
-
/** The Amazon Resource Name (ARN) of the snapshot to restore from. */
|
|
37876
|
+
/** 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
37877
|
SnapshotArn?: string;
|
|
37971
|
-
/** The snapshot
|
|
37878
|
+
/** 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
37879
|
SnapshotName?: string;
|
|
37973
|
-
/** The
|
|
37880
|
+
/** 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
37881
|
SnapshotOwnerAccount?: string;
|
|
37975
37882
|
/** A list of subnet IDs the workgroup is associated with. */
|
|
37976
37883
|
SubnetIds?: string[];
|
|
@@ -38736,6 +38643,62 @@ export declare class AcmCertificate_Tag {
|
|
|
38736
38643
|
});
|
|
38737
38644
|
}
|
|
38738
38645
|
|
|
38646
|
+
export declare class AcmeDomainValidation_DnsPrevalidationOptions {
|
|
38647
|
+
constructor(props: {
|
|
38648
|
+
DomainScope?: AcmeDomainValidation_DomainScope;
|
|
38649
|
+
/** 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. */
|
|
38650
|
+
HostedZoneId?: string;
|
|
38651
|
+
});
|
|
38652
|
+
}
|
|
38653
|
+
|
|
38654
|
+
export declare class AcmeDomainValidation_DomainScope {
|
|
38655
|
+
constructor(props: {
|
|
38656
|
+
/** Whether certificates may be issued for the exact domain. */
|
|
38657
|
+
ExactDomain?: string;
|
|
38658
|
+
/** Whether certificates may be issued for subdomains of the domain. */
|
|
38659
|
+
Subdomains?: string;
|
|
38660
|
+
/** Whether wildcard certificates may be issued for the domain. */
|
|
38661
|
+
Wildcards?: string;
|
|
38662
|
+
});
|
|
38663
|
+
}
|
|
38664
|
+
|
|
38665
|
+
export declare class AcmeDomainValidation_PrevalidationOptions {
|
|
38666
|
+
constructor(props: {
|
|
38667
|
+
DnsPrevalidation: AcmeDomainValidation_DnsPrevalidationOptions;
|
|
38668
|
+
});
|
|
38669
|
+
}
|
|
38670
|
+
|
|
38671
|
+
export declare class AcmeEndpoint_CertificateAuthority {
|
|
38672
|
+
constructor(props: {
|
|
38673
|
+
PublicCertificateAuthority: AcmeEndpoint_PublicCertificateAuthority;
|
|
38674
|
+
});
|
|
38675
|
+
}
|
|
38676
|
+
|
|
38677
|
+
export declare class AcmeEndpoint_PublicCertificateAuthority {
|
|
38678
|
+
constructor(props: {
|
|
38679
|
+
/** The allowed key algorithms for certificates issued via this endpoint. */
|
|
38680
|
+
AllowedKeyAlgorithms?: string[];
|
|
38681
|
+
});
|
|
38682
|
+
}
|
|
38683
|
+
|
|
38684
|
+
export declare class AcmeEndpoint_Tag {
|
|
38685
|
+
constructor(props: {
|
|
38686
|
+
/** The key name of the tag. */
|
|
38687
|
+
Key: string;
|
|
38688
|
+
/** The value for the tag. */
|
|
38689
|
+
Value: string;
|
|
38690
|
+
});
|
|
38691
|
+
}
|
|
38692
|
+
|
|
38693
|
+
export declare class AcmeExternalAccountBinding_Expiration {
|
|
38694
|
+
constructor(props: {
|
|
38695
|
+
/** The time unit for the expiration value. */
|
|
38696
|
+
Type: string;
|
|
38697
|
+
/** The expiration value. */
|
|
38698
|
+
Value: number;
|
|
38699
|
+
});
|
|
38700
|
+
}
|
|
38701
|
+
|
|
38739
38702
|
export declare class ACMPCACertificate_ApiPassthrough {
|
|
38740
38703
|
constructor(props: {
|
|
38741
38704
|
/** Specifies X.509 extension information for a certificate. */
|
|
@@ -38942,6 +38905,7 @@ export declare class Actions {
|
|
|
38942
38905
|
constructor(props: {
|
|
38943
38906
|
/** Information about the contact category action. The syntax can be empty, for example, ``{}``. */
|
|
38944
38907
|
AssignContactCategoryActions?: any;
|
|
38908
|
+
AssignSlaActions?: any;
|
|
38945
38909
|
CreateCaseActions?: any;
|
|
38946
38910
|
EndAssociatedTasksActions?: any;
|
|
38947
38911
|
/** Information about the EV action. */
|
|
@@ -39250,6 +39214,32 @@ export declare class AfterContactWorkConfigPerChannel {
|
|
|
39250
39214
|
});
|
|
39251
39215
|
}
|
|
39252
39216
|
|
|
39217
|
+
export declare class AgentAccessConfig {
|
|
39218
|
+
constructor(props: {
|
|
39219
|
+
/** The image format for agent screen captures. */
|
|
39220
|
+
ScreenImageFormat: string;
|
|
39221
|
+
/** The screen resolution for the agent streaming environment. */
|
|
39222
|
+
ScreenResolution: string;
|
|
39223
|
+
/** The list of agent access settings that define permissions for each agent action. You must specify at least one setting. */
|
|
39224
|
+
Settings: AppStreamStack_AgentAccessSetting[];
|
|
39225
|
+
/** The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent screenshots are stored. Required when ScreenshotsUploadEnabled is true. */
|
|
39226
|
+
S3BucketArn?: string;
|
|
39227
|
+
/** Indicates whether screenshot uploads to Amazon S3 are enabled for agent sessions. */
|
|
39228
|
+
ScreenshotsUploadEnabled?: boolean;
|
|
39229
|
+
/** 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. */
|
|
39230
|
+
UserControlMode?: string;
|
|
39231
|
+
});
|
|
39232
|
+
}
|
|
39233
|
+
|
|
39234
|
+
export declare class AgentAccessSetting {
|
|
39235
|
+
constructor(props: {
|
|
39236
|
+
/** 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. */
|
|
39237
|
+
AgentAction: string;
|
|
39238
|
+
/** Whether the agent action is enabled or disabled. */
|
|
39239
|
+
Permission: string;
|
|
39240
|
+
});
|
|
39241
|
+
}
|
|
39242
|
+
|
|
39253
39243
|
export declare class AgentActionGroup {
|
|
39254
39244
|
constructor(props: {
|
|
39255
39245
|
/** Name of the action group */
|
|
@@ -43070,11 +43060,37 @@ export declare class AppStreamStack_AccessEndpoint {
|
|
|
43070
43060
|
});
|
|
43071
43061
|
}
|
|
43072
43062
|
|
|
43063
|
+
export declare class AppStreamStack_AgentAccessConfig {
|
|
43064
|
+
constructor(props: {
|
|
43065
|
+
/** The image format for agent screen captures. */
|
|
43066
|
+
ScreenImageFormat: string;
|
|
43067
|
+
/** The screen resolution for the agent streaming environment. */
|
|
43068
|
+
ScreenResolution: string;
|
|
43069
|
+
/** The list of agent access settings that define permissions for each agent action. You must specify at least one setting. */
|
|
43070
|
+
Settings: AppStreamStack_AgentAccessSetting[];
|
|
43071
|
+
/** The Amazon Resource Name (ARN) of the Amazon S3 bucket where agent screenshots are stored. Required when ScreenshotsUploadEnabled is true. */
|
|
43072
|
+
S3BucketArn?: string;
|
|
43073
|
+
/** Indicates whether screenshot uploads to Amazon S3 are enabled for agent sessions. */
|
|
43074
|
+
ScreenshotsUploadEnabled?: boolean;
|
|
43075
|
+
/** 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. */
|
|
43076
|
+
UserControlMode?: string;
|
|
43077
|
+
});
|
|
43078
|
+
}
|
|
43079
|
+
|
|
43080
|
+
export declare class AppStreamStack_AgentAccessSetting {
|
|
43081
|
+
constructor(props: {
|
|
43082
|
+
/** 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. */
|
|
43083
|
+
AgentAction: string;
|
|
43084
|
+
/** Whether the agent action is enabled or disabled. */
|
|
43085
|
+
Permission: string;
|
|
43086
|
+
});
|
|
43087
|
+
}
|
|
43088
|
+
|
|
43073
43089
|
export declare class AppStreamStack_ApplicationSettings {
|
|
43074
43090
|
constructor(props: {
|
|
43075
43091
|
/** Enables or disables persistent application settings for users during their streaming sessions. */
|
|
43076
43092
|
Enabled: boolean;
|
|
43077
|
-
/** The path prefix for the S3 bucket where users
|
|
43093
|
+
/** 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
43094
|
SettingsGroup?: string;
|
|
43079
43095
|
});
|
|
43080
43096
|
}
|
|
@@ -43369,6 +43385,21 @@ export declare class AppSyncParameters {
|
|
|
43369
43385
|
});
|
|
43370
43386
|
}
|
|
43371
43387
|
|
|
43388
|
+
export declare class AppTestTestCase_Step {
|
|
43389
|
+
constructor(props: {
|
|
43390
|
+
Action: any;
|
|
43391
|
+
Name: string;
|
|
43392
|
+
Description?: string;
|
|
43393
|
+
});
|
|
43394
|
+
}
|
|
43395
|
+
|
|
43396
|
+
export declare class AppTestTestCase_TestCaseLatestVersion {
|
|
43397
|
+
constructor(props: {
|
|
43398
|
+
Status: AppTestTestCase_TestCaseLifecycle;
|
|
43399
|
+
Version: number;
|
|
43400
|
+
});
|
|
43401
|
+
}
|
|
43402
|
+
|
|
43372
43403
|
export declare class APSAnomalyDetector_AnomalyDetectorConfiguration {
|
|
43373
43404
|
constructor(props: {
|
|
43374
43405
|
RandomCutForest: APSAnomalyDetector_RandomCutForestConfiguration;
|
|
@@ -43725,34 +43756,6 @@ export declare class AssessmentTemplate_Tag {
|
|
|
43725
43756
|
});
|
|
43726
43757
|
}
|
|
43727
43758
|
|
|
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
43759
|
export declare class AssetHierarchy {
|
|
43757
43760
|
constructor(props: {
|
|
43758
43761
|
/** The ID of the child asset to be associated. */
|
|
@@ -44895,7 +44898,7 @@ export declare class AutoScalingGroup_AvailabilityZoneDistribution {
|
|
|
44895
44898
|
/** If launches fail in an Availability Zone, the following strategies are available. The default is ``balanced-best-effort``.
|
|
44896
44899
|
+ ``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
44900
|
+ ``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";
|
|
44901
|
+
CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only" | "reservations-then-balanced";
|
|
44899
44902
|
});
|
|
44900
44903
|
}
|
|
44901
44904
|
|
|
@@ -45353,7 +45356,7 @@ export declare class AvailabilityZoneDistribution {
|
|
|
45353
45356
|
/** If launches fail in an Availability Zone, the following strategies are available. The default is ``balanced-best-effort``.
|
|
45354
45357
|
+ ``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
45358
|
+ ``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";
|
|
45359
|
+
CapacityDistributionStrategy?: "balanced-best-effort" | "balanced-only" | "reservations-then-balanced";
|
|
45357
45360
|
});
|
|
45358
45361
|
}
|
|
45359
45362
|
|
|
@@ -45765,6 +45768,15 @@ export declare class AzureBlobSasConfiguration {
|
|
|
45765
45768
|
});
|
|
45766
45769
|
}
|
|
45767
45770
|
|
|
45771
|
+
export declare class AzureConnectorConfiguration {
|
|
45772
|
+
constructor(props: {
|
|
45773
|
+
/** The Azure client (application) identifier. */
|
|
45774
|
+
ClientIdentifier: string;
|
|
45775
|
+
/** The Azure tenant identifier. */
|
|
45776
|
+
TenantIdentifier: string;
|
|
45777
|
+
});
|
|
45778
|
+
}
|
|
45779
|
+
|
|
45768
45780
|
export declare class B2BICapability_S3Location {
|
|
45769
45781
|
constructor(props: {
|
|
45770
45782
|
BucketName?: string;
|
|
@@ -46722,7 +46734,7 @@ export declare class BedrockKnowledgeBase_KnowledgeBaseConfiguration {
|
|
|
46722
46734
|
export declare class BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration {
|
|
46723
46735
|
constructor(props: {
|
|
46724
46736
|
/** The ARN of the model used to create vector embeddings for the knowledge base. */
|
|
46725
|
-
EmbeddingModelArn
|
|
46737
|
+
EmbeddingModelArn?: string;
|
|
46726
46738
|
EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
|
|
46727
46739
|
EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
|
|
46728
46740
|
ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
|
|
@@ -48791,6 +48803,28 @@ export declare class BufferOptions {
|
|
|
48791
48803
|
});
|
|
48792
48804
|
}
|
|
48793
48805
|
|
|
48806
|
+
export declare class Build_StorageLocation {
|
|
48807
|
+
constructor(props: {
|
|
48808
|
+
/** An Amazon S3 bucket identifier. This is the name of the S3 bucket. */
|
|
48809
|
+
Bucket: string;
|
|
48810
|
+
/** The name of the zip file that contains the build files or script files. */
|
|
48811
|
+
Key: string;
|
|
48812
|
+
/** The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket. */
|
|
48813
|
+
RoleArn: string;
|
|
48814
|
+
/** 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. */
|
|
48815
|
+
ObjectVersion?: string;
|
|
48816
|
+
});
|
|
48817
|
+
}
|
|
48818
|
+
|
|
48819
|
+
export declare class Build_Tag {
|
|
48820
|
+
constructor(props: {
|
|
48821
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length. */
|
|
48822
|
+
Key: string;
|
|
48823
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. */
|
|
48824
|
+
Value: string;
|
|
48825
|
+
});
|
|
48826
|
+
}
|
|
48827
|
+
|
|
48794
48828
|
export declare class BuildStatusConfig {
|
|
48795
48829
|
constructor(props: {
|
|
48796
48830
|
Context?: string;
|
|
@@ -49604,9 +49638,7 @@ export declare class CapacityProviderConfig {
|
|
|
49604
49638
|
|
|
49605
49639
|
export declare class CapacityProviderLoggingConfig {
|
|
49606
49640
|
constructor(props: {
|
|
49607
|
-
/** The log group name. */
|
|
49608
49641
|
LogGroup?: string;
|
|
49609
|
-
/** System log granularity level */
|
|
49610
49642
|
SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
|
|
49611
49643
|
});
|
|
49612
49644
|
}
|
|
@@ -49631,7 +49663,6 @@ export declare class CapacityProviderScalingConfig {
|
|
|
49631
49663
|
|
|
49632
49664
|
export declare class CapacityProviderTelemetryConfig {
|
|
49633
49665
|
constructor(props: {
|
|
49634
|
-
/** The logging configuration for the capacity provider. */
|
|
49635
49666
|
LoggingConfig?: LambdaCapacityProvider_CapacityProviderLoggingConfig;
|
|
49636
49667
|
});
|
|
49637
49668
|
}
|
|
@@ -51522,41 +51553,39 @@ export declare class CloudFormationCollectionFilter {
|
|
|
51522
51553
|
});
|
|
51523
51554
|
}
|
|
51524
51555
|
|
|
51525
|
-
export declare class
|
|
51556
|
+
export declare class CloudFormationProduct_ProvisioningArtifactProperties {
|
|
51526
51557
|
constructor(props: {
|
|
51527
|
-
|
|
51528
|
-
Branch: string;
|
|
51529
|
-
ConnectionArn: string;
|
|
51530
|
-
Repository: string;
|
|
51531
|
-
});
|
|
51532
|
-
}
|
|
51558
|
+
/** Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
51533
51559
|
|
|
51534
|
-
|
|
51535
|
-
constructor(props: {
|
|
51536
|
-
CodeStar?: CloudFormationProduct_CodeStarParameters;
|
|
51537
|
-
});
|
|
51538
|
-
}
|
|
51560
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
51539
51561
|
|
|
51540
|
-
|
|
51541
|
-
constructor(props: {
|
|
51562
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId] */
|
|
51542
51563
|
Info: Record<string, unknown>;
|
|
51564
|
+
/** The description of the provisioning artifact, including how it differs from the previous provisioning artifact. */
|
|
51543
51565
|
Description?: string;
|
|
51566
|
+
/** If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid. */
|
|
51544
51567
|
DisableTemplateValidation?: boolean;
|
|
51568
|
+
/** The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed. */
|
|
51545
51569
|
Name?: string;
|
|
51546
|
-
|
|
51570
|
+
/** The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL */
|
|
51571
|
+
Type?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
51547
51572
|
});
|
|
51548
51573
|
}
|
|
51549
51574
|
|
|
51550
51575
|
export declare class CloudFormationProduct_SourceConnection {
|
|
51551
51576
|
constructor(props: {
|
|
51552
|
-
|
|
51577
|
+
/** The connection details based on the connection Type. */
|
|
51578
|
+
ConnectionParameters: Record<string, unknown>;
|
|
51579
|
+
/** The only supported SourceConnection type is Codestar. */
|
|
51553
51580
|
Type: string;
|
|
51554
51581
|
});
|
|
51555
51582
|
}
|
|
51556
51583
|
|
|
51557
51584
|
export declare class CloudFormationProduct_Tag {
|
|
51558
51585
|
constructor(props: {
|
|
51586
|
+
/** The tag key. */
|
|
51559
51587
|
Key: string;
|
|
51588
|
+
/** The tag value */
|
|
51560
51589
|
Value: string;
|
|
51561
51590
|
});
|
|
51562
51591
|
}
|
|
@@ -51978,6 +52007,7 @@ export declare class Code {
|
|
|
51978
52007
|
S3Bucket?: string;
|
|
51979
52008
|
/** The Amazon S3 key of the deployment package. */
|
|
51980
52009
|
S3Key?: string;
|
|
52010
|
+
S3ObjectStorageMode?: "COPY" | "REFERENCE";
|
|
51981
52011
|
/** For versioned objects, the version of the deployment package object to use. */
|
|
51982
52012
|
S3ObjectVersion?: string;
|
|
51983
52013
|
/** 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). */
|
|
@@ -52700,15 +52730,6 @@ export declare class CodeStarConnectionsConnection_Tag {
|
|
|
52700
52730
|
});
|
|
52701
52731
|
}
|
|
52702
52732
|
|
|
52703
|
-
export declare class CodeStarParameters {
|
|
52704
|
-
constructor(props: {
|
|
52705
|
-
ArtifactPath: string;
|
|
52706
|
-
Branch: string;
|
|
52707
|
-
ConnectionArn: string;
|
|
52708
|
-
Repository: string;
|
|
52709
|
-
});
|
|
52710
|
-
}
|
|
52711
|
-
|
|
52712
52733
|
export declare class CognitoIdentityProvider {
|
|
52713
52734
|
constructor(props: {
|
|
52714
52735
|
ClientId: string;
|
|
@@ -53552,6 +53573,31 @@ export declare class Config_UplinkSpectrumConfig {
|
|
|
53552
53573
|
});
|
|
53553
53574
|
}
|
|
53554
53575
|
|
|
53576
|
+
export declare class ConfigConnector_AzureConnectorConfiguration {
|
|
53577
|
+
constructor(props: {
|
|
53578
|
+
/** The Azure client (application) identifier. */
|
|
53579
|
+
ClientIdentifier: string;
|
|
53580
|
+
/** The Azure tenant identifier. */
|
|
53581
|
+
TenantIdentifier: string;
|
|
53582
|
+
});
|
|
53583
|
+
}
|
|
53584
|
+
|
|
53585
|
+
export declare class ConfigConnector_ConnectorConfiguration {
|
|
53586
|
+
constructor(props: {
|
|
53587
|
+
/** The configuration for connecting to Microsoft Azure. */
|
|
53588
|
+
Azure?: ConfigConnector_AzureConnectorConfiguration;
|
|
53589
|
+
});
|
|
53590
|
+
}
|
|
53591
|
+
|
|
53592
|
+
export declare class ConfigConnector_Tag {
|
|
53593
|
+
constructor(props: {
|
|
53594
|
+
/** 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:. */
|
|
53595
|
+
Key: string;
|
|
53596
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. */
|
|
53597
|
+
Value: string;
|
|
53598
|
+
});
|
|
53599
|
+
}
|
|
53600
|
+
|
|
53555
53601
|
export declare class ConfigData {
|
|
53556
53602
|
constructor(props: {
|
|
53557
53603
|
AntennaDownlinkConfig?: Config_AntennaDownlinkConfig;
|
|
@@ -54611,15 +54657,11 @@ export declare class ConnectionLogOptions {
|
|
|
54611
54657
|
});
|
|
54612
54658
|
}
|
|
54613
54659
|
|
|
54614
|
-
export declare class ConnectionParameters {
|
|
54615
|
-
constructor(props: {
|
|
54616
|
-
CodeStar?: CloudFormationProduct_CodeStarParameters;
|
|
54617
|
-
});
|
|
54618
|
-
}
|
|
54619
|
-
|
|
54620
54660
|
export declare class ConnectionPasswordEncryption {
|
|
54621
54661
|
constructor(props: {
|
|
54662
|
+
/** An AWS KMS key that is used to encrypt the connection password. */
|
|
54622
54663
|
KmsKeyId?: string;
|
|
54664
|
+
/** 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
54665
|
ReturnConnectionPasswordEncrypted?: boolean;
|
|
54624
54666
|
});
|
|
54625
54667
|
}
|
|
@@ -54676,6 +54718,13 @@ export declare class ConnectivityParameters {
|
|
|
54676
54718
|
});
|
|
54677
54719
|
}
|
|
54678
54720
|
|
|
54721
|
+
export declare class ConnectorConfiguration {
|
|
54722
|
+
constructor(props: {
|
|
54723
|
+
/** The configuration for connecting to Microsoft Azure. */
|
|
54724
|
+
Azure?: ConfigConnector_AzureConnectorConfiguration;
|
|
54725
|
+
});
|
|
54726
|
+
}
|
|
54727
|
+
|
|
54679
54728
|
export declare class ConnectorDefinition_Connector {
|
|
54680
54729
|
constructor(props: {
|
|
54681
54730
|
ConnectorArn: string;
|
|
@@ -55267,6 +55316,7 @@ export declare class ConnectRule_Actions {
|
|
|
55267
55316
|
constructor(props: {
|
|
55268
55317
|
/** Information about the contact category action. The syntax can be empty, for example, ``{}``. */
|
|
55269
55318
|
AssignContactCategoryActions?: any;
|
|
55319
|
+
AssignSlaActions?: any;
|
|
55270
55320
|
CreateCaseActions?: any;
|
|
55271
55321
|
EndAssociatedTasksActions?: any;
|
|
55272
55322
|
/** Information about the EV action. */
|
|
@@ -55283,7 +55333,7 @@ export declare class ConnectRule_Actions {
|
|
|
55283
55333
|
export declare class ConnectRule_RuleTriggerEventSource {
|
|
55284
55334
|
constructor(props: {
|
|
55285
55335
|
/** The name of the event source. */
|
|
55286
|
-
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
55336
|
+
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnEmailAnalysisAvailable" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnSchedulePublish" | "OnScheduleTimeOffRequestActivity" | "OnScheduleUpdate" | "OnSlaBreach" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
55287
55337
|
/** The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate`` */
|
|
55288
55338
|
IntegrationAssociationArn?: string;
|
|
55289
55339
|
});
|
|
@@ -55327,6 +55377,26 @@ export declare class ConnectSecurityProfile_Tag {
|
|
|
55327
55377
|
});
|
|
55328
55378
|
}
|
|
55329
55379
|
|
|
55380
|
+
export declare class ConnectTestCase_EntryPoint {
|
|
55381
|
+
constructor(props: {
|
|
55382
|
+
/** The chat entry point parameters for the test case */
|
|
55383
|
+
ChatEntryPointParameters?: Record<string, unknown>;
|
|
55384
|
+
/** The type of the Entry Point */
|
|
55385
|
+
Type?: "CHAT" | "VOICE_CALL";
|
|
55386
|
+
/** The voice call entry point parameters for the test case */
|
|
55387
|
+
VoiceCallEntryPointParameters?: Record<string, unknown>;
|
|
55388
|
+
});
|
|
55389
|
+
}
|
|
55390
|
+
|
|
55391
|
+
export declare class ConnectTestCase_Tag {
|
|
55392
|
+
constructor(props: {
|
|
55393
|
+
/** 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 -. */
|
|
55394
|
+
Key: string;
|
|
55395
|
+
/** 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 -. */
|
|
55396
|
+
Value: string;
|
|
55397
|
+
});
|
|
55398
|
+
}
|
|
55399
|
+
|
|
55330
55400
|
export declare class ConnectUser_AfterContactWorkConfig {
|
|
55331
55401
|
constructor(props: {
|
|
55332
55402
|
AfterContactWorkTimeLimit?: number;
|
|
@@ -56226,24 +56296,6 @@ export declare class ContinuousIntegrationScanConfiguration {
|
|
|
56226
56296
|
});
|
|
56227
56297
|
}
|
|
56228
56298
|
|
|
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
56299
|
export declare class ControlCondition {
|
|
56248
56300
|
constructor(props: {
|
|
56249
56301
|
AlarmIdentifier: string;
|
|
@@ -57111,13 +57163,6 @@ export declare class CustomDomainConfigType {
|
|
|
57111
57163
|
});
|
|
57112
57164
|
}
|
|
57113
57165
|
|
|
57114
|
-
export declare class CustomEmailSender {
|
|
57115
|
-
constructor(props: {
|
|
57116
|
-
LambdaArn?: string;
|
|
57117
|
-
LambdaVersion?: string;
|
|
57118
|
-
});
|
|
57119
|
-
}
|
|
57120
|
-
|
|
57121
57166
|
export declare class CustomerContact {
|
|
57122
57167
|
constructor(props: {
|
|
57123
57168
|
/** The email address of the contact. */
|
|
@@ -58086,13 +58131,6 @@ export declare class CustomRule {
|
|
|
58086
58131
|
});
|
|
58087
58132
|
}
|
|
58088
58133
|
|
|
58089
|
-
export declare class CustomSMSSender {
|
|
58090
|
-
constructor(props: {
|
|
58091
|
-
LambdaArn?: string;
|
|
58092
|
-
LambdaVersion?: string;
|
|
58093
|
-
});
|
|
58094
|
-
}
|
|
58095
|
-
|
|
58096
58134
|
export declare class CustomTransformationConfiguration {
|
|
58097
58135
|
constructor(props: {
|
|
58098
58136
|
IntermediateStorage: BedrockDataSource_IntermediateStorage;
|
|
@@ -59607,7 +59645,9 @@ export declare class DataCaptureConfig {
|
|
|
59607
59645
|
|
|
59608
59646
|
export declare class DataCatalogEncryptionSettings_ConnectionPasswordEncryption {
|
|
59609
59647
|
constructor(props: {
|
|
59648
|
+
/** An AWS KMS key that is used to encrypt the connection password. */
|
|
59610
59649
|
KmsKeyId?: string;
|
|
59650
|
+
/** 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
59651
|
ReturnConnectionPasswordEncrypted?: boolean;
|
|
59612
59652
|
});
|
|
59613
59653
|
}
|
|
@@ -59621,8 +59661,11 @@ export declare class DataCatalogEncryptionSettings_DataCatalogEncryptionSettings
|
|
|
59621
59661
|
|
|
59622
59662
|
export declare class DataCatalogEncryptionSettings_EncryptionAtRest {
|
|
59623
59663
|
constructor(props: {
|
|
59664
|
+
/** The encryption-at-rest mode for encrypting Data Catalog data. */
|
|
59624
59665
|
CatalogEncryptionMode?: string;
|
|
59666
|
+
/** The role that AWS Glue assumes to encrypt and decrypt the Data Catalog objects on the caller's behalf. */
|
|
59625
59667
|
CatalogEncryptionServiceRole?: string;
|
|
59668
|
+
/** The ID of the AWS KMS key to use for encryption at rest. */
|
|
59626
59669
|
SseAwsKmsKeyId?: string;
|
|
59627
59670
|
});
|
|
59628
59671
|
}
|
|
@@ -59702,13 +59745,6 @@ export declare class DataColorPalette {
|
|
|
59702
59745
|
});
|
|
59703
59746
|
}
|
|
59704
59747
|
|
|
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
59748
|
export declare class DataDeliveryObject {
|
|
59713
59749
|
constructor(props: {
|
|
59714
59750
|
LogGroup?: string;
|
|
@@ -62550,6 +62586,8 @@ export declare class DeploymentCircuitBreaker {
|
|
|
62550
62586
|
Enable: boolean;
|
|
62551
62587
|
/** 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
62588
|
Rollback: boolean;
|
|
62589
|
+
ResetOnHealthyTask?: boolean;
|
|
62590
|
+
ThresholdConfiguration?: EcsService_ThresholdConfiguration;
|
|
62553
62591
|
});
|
|
62554
62592
|
}
|
|
62555
62593
|
|
|
@@ -64498,6 +64536,14 @@ export declare class DnsOptionsSpecification {
|
|
|
64498
64536
|
});
|
|
64499
64537
|
}
|
|
64500
64538
|
|
|
64539
|
+
export declare class DnsPrevalidationOptions {
|
|
64540
|
+
constructor(props: {
|
|
64541
|
+
DomainScope?: AcmeDomainValidation_DomainScope;
|
|
64542
|
+
/** 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. */
|
|
64543
|
+
HostedZoneId?: string;
|
|
64544
|
+
});
|
|
64545
|
+
}
|
|
64546
|
+
|
|
64501
64547
|
export declare class DnsRecord {
|
|
64502
64548
|
constructor(props: {
|
|
64503
64549
|
TTL: number;
|
|
@@ -64981,6 +65027,17 @@ export declare class DomainResult {
|
|
|
64981
65027
|
});
|
|
64982
65028
|
}
|
|
64983
65029
|
|
|
65030
|
+
export declare class DomainScope {
|
|
65031
|
+
constructor(props: {
|
|
65032
|
+
/** Whether certificates may be issued for the exact domain. */
|
|
65033
|
+
ExactDomain?: string;
|
|
65034
|
+
/** Whether certificates may be issued for subdomains of the domain. */
|
|
65035
|
+
Subdomains?: string;
|
|
65036
|
+
/** Whether wildcard certificates may be issued for the domain. */
|
|
65037
|
+
Wildcards?: string;
|
|
65038
|
+
});
|
|
65039
|
+
}
|
|
65040
|
+
|
|
64984
65041
|
export declare class DomainSettings {
|
|
64985
65042
|
constructor(props: {
|
|
64986
65043
|
DockerSettings?: SageMakerDomain_DockerSettings;
|
|
@@ -65095,6 +65152,7 @@ export declare class DurableConfig {
|
|
|
65095
65152
|
constructor(props: {
|
|
65096
65153
|
/** 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
65154
|
ExecutionTimeout: number;
|
|
65155
|
+
KMSKeyArn?: string;
|
|
65098
65156
|
/** 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
65157
|
RetentionPeriodInDays?: number;
|
|
65100
65158
|
});
|
|
@@ -65610,7 +65668,7 @@ export declare class ECSCapacityProvider_InstanceRequirementsRequest {
|
|
|
65610
65668
|
VCpuCount: Record<string, unknown>;
|
|
65611
65669
|
AcceleratorCount?: Record<string, unknown>;
|
|
65612
65670
|
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"[];
|
|
65671
|
+
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
65672
|
AcceleratorTotalMemoryMiB?: Record<string, unknown>;
|
|
65615
65673
|
AcceleratorTypes?: "fpga" | "gpu" | "inference"[];
|
|
65616
65674
|
AllowedInstanceTypes?: string[];
|
|
@@ -65914,6 +65972,8 @@ export declare class EcsService_DeploymentCircuitBreaker {
|
|
|
65914
65972
|
Enable: boolean;
|
|
65915
65973
|
/** 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
65974
|
Rollback: boolean;
|
|
65975
|
+
ResetOnHealthyTask?: boolean;
|
|
65976
|
+
ThresholdConfiguration?: EcsService_ThresholdConfiguration;
|
|
65917
65977
|
});
|
|
65918
65978
|
}
|
|
65919
65979
|
|
|
@@ -66147,13 +66207,16 @@ export declare class EcsService_LogConfiguration {
|
|
|
66147
66207
|
|
|
66148
66208
|
export declare class EcsService_MetricConfiguration {
|
|
66149
66209
|
constructor(props: {
|
|
66210
|
+
/** The list of metric names to configure. The supported metric names are ``CPUUtilization`` and ``MemoryUtilization``. */
|
|
66150
66211
|
MetricNames: "CPUUtilization" | "MemoryUtilization"[];
|
|
66212
|
+
/** The resolution, in seconds, at which to collect the metrics. The valid values are ``20`` and ``60``. */
|
|
66151
66213
|
ResolutionSeconds: 20 | 60;
|
|
66152
66214
|
});
|
|
66153
66215
|
}
|
|
66154
66216
|
|
|
66155
66217
|
export declare class EcsService_MonitoringConfiguration {
|
|
66156
66218
|
constructor(props: {
|
|
66219
|
+
/** The list of metric configurations for the service monitoring. */
|
|
66157
66220
|
MetricConfigurations: EcsService_MetricConfiguration[];
|
|
66158
66221
|
});
|
|
66159
66222
|
}
|
|
@@ -66360,6 +66423,13 @@ export declare class EcsService_Tag {
|
|
|
66360
66423
|
});
|
|
66361
66424
|
}
|
|
66362
66425
|
|
|
66426
|
+
export declare class EcsService_ThresholdConfiguration {
|
|
66427
|
+
constructor(props: {
|
|
66428
|
+
Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
|
|
66429
|
+
Value: number;
|
|
66430
|
+
});
|
|
66431
|
+
}
|
|
66432
|
+
|
|
66363
66433
|
export declare class EcsService_TimeoutConfiguration {
|
|
66364
66434
|
constructor(props: {
|
|
66365
66435
|
/** 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 +66890,13 @@ export declare class EKSCluster_ResourcesVpcConfig {
|
|
|
66820
66890
|
});
|
|
66821
66891
|
}
|
|
66822
66892
|
|
|
66893
|
+
export declare class EKSCluster_RollbackConfig {
|
|
66894
|
+
constructor(props: {
|
|
66895
|
+
/** The timeout in minutes for the version rollback operation. If not specified, defaults to 720 minutes (12 hours). */
|
|
66896
|
+
TimeoutMinutes?: number;
|
|
66897
|
+
});
|
|
66898
|
+
}
|
|
66899
|
+
|
|
66823
66900
|
export declare class EKSCluster_StorageConfig {
|
|
66824
66901
|
constructor(props: {
|
|
66825
66902
|
/** Todo: add description */
|
|
@@ -67379,16 +67456,6 @@ export declare class EmailChannelSubtypeConfig {
|
|
|
67379
67456
|
});
|
|
67380
67457
|
}
|
|
67381
67458
|
|
|
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
67459
|
export declare class EmailContact_EmailContact {
|
|
67393
67460
|
constructor(props: {
|
|
67394
67461
|
Address: string;
|
|
@@ -68548,6 +68615,17 @@ export declare class EntryLimitsConfig {
|
|
|
68548
68615
|
});
|
|
68549
68616
|
}
|
|
68550
68617
|
|
|
68618
|
+
export declare class EntryPoint {
|
|
68619
|
+
constructor(props: {
|
|
68620
|
+
/** The chat entry point parameters for the test case */
|
|
68621
|
+
ChatEntryPointParameters?: Record<string, unknown>;
|
|
68622
|
+
/** The type of the Entry Point */
|
|
68623
|
+
Type?: "CHAT" | "VOICE_CALL";
|
|
68624
|
+
/** The voice call entry point parameters for the test case */
|
|
68625
|
+
VoiceCallEntryPointParameters?: Record<string, unknown>;
|
|
68626
|
+
});
|
|
68627
|
+
}
|
|
68628
|
+
|
|
68551
68629
|
export declare class Environment {
|
|
68552
68630
|
constructor(props: {
|
|
68553
68631
|
/** 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 +68797,17 @@ export declare class EvaluationForm_EvaluationFormLanguageConfiguration {
|
|
|
68719
68797
|
});
|
|
68720
68798
|
}
|
|
68721
68799
|
|
|
68800
|
+
export declare class EvaluationForm_EvaluationFormScoreThreshold {
|
|
68801
|
+
constructor(props: {
|
|
68802
|
+
/** The performance category name. */
|
|
68803
|
+
PerformanceCategory: "EXCEEDS_EXPECTATIONS" | "NEEDS_IMPROVEMENT";
|
|
68804
|
+
/** The maximum score percentage for this threshold. */
|
|
68805
|
+
MaxScorePercentage?: number;
|
|
68806
|
+
/** The minimum score percentage for this threshold. */
|
|
68807
|
+
MinScorePercentage?: number;
|
|
68808
|
+
});
|
|
68809
|
+
}
|
|
68810
|
+
|
|
68722
68811
|
export declare class EvaluationForm_EvaluationFormSection {
|
|
68723
68812
|
constructor(props: {
|
|
68724
68813
|
/** The identifier of the section. An identifier must be unique within the evaluation form.
|
|
@@ -68729,9 +68818,11 @@ export declare class EvaluationForm_EvaluationFormSection {
|
|
|
68729
68818
|
Title: string;
|
|
68730
68819
|
/** The instructions of the section. */
|
|
68731
68820
|
Instructions?: string;
|
|
68821
|
+
IsExcludedFromScoring?: boolean;
|
|
68732
68822
|
/** The items of the section.
|
|
68733
68823
|
*Minimum*: 1 */
|
|
68734
68824
|
Items?: EvaluationForm_EvaluationFormItem[];
|
|
68825
|
+
ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
|
|
68735
68826
|
/** The scoring weight of the section.
|
|
68736
68827
|
*Minimum*: 0
|
|
68737
68828
|
*Maximum*: 100 */
|
|
@@ -68775,10 +68866,11 @@ export declare class EvaluationForm_ScoringStrategy {
|
|
|
68775
68866
|
constructor(props: {
|
|
68776
68867
|
/** The scoring mode of the evaluation form.
|
|
68777
68868
|
*Allowed values*: ``QUESTION_ONLY`` | ``SECTION_ONLY`` */
|
|
68778
|
-
Mode: "QUESTION_ONLY" | "SECTION_ONLY";
|
|
68869
|
+
Mode: "POINTS_BASED" | "QUESTION_ONLY" | "SECTION_ONLY";
|
|
68779
68870
|
/** The scoring status of the evaluation form.
|
|
68780
68871
|
*Allowed values*: ``ENABLED`` | ``DISABLED`` */
|
|
68781
68872
|
Status: "DISABLED" | "ENABLED";
|
|
68873
|
+
ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
|
|
68782
68874
|
});
|
|
68783
68875
|
}
|
|
68784
68876
|
|
|
@@ -68814,6 +68906,17 @@ export declare class EvaluationFormLanguageConfiguration {
|
|
|
68814
68906
|
});
|
|
68815
68907
|
}
|
|
68816
68908
|
|
|
68909
|
+
export declare class EvaluationFormScoreThreshold {
|
|
68910
|
+
constructor(props: {
|
|
68911
|
+
/** The performance category name. */
|
|
68912
|
+
PerformanceCategory: "EXCEEDS_EXPECTATIONS" | "NEEDS_IMPROVEMENT";
|
|
68913
|
+
/** The maximum score percentage for this threshold. */
|
|
68914
|
+
MaxScorePercentage?: number;
|
|
68915
|
+
/** The minimum score percentage for this threshold. */
|
|
68916
|
+
MinScorePercentage?: number;
|
|
68917
|
+
});
|
|
68918
|
+
}
|
|
68919
|
+
|
|
68817
68920
|
export declare class EvaluationFormSection {
|
|
68818
68921
|
constructor(props: {
|
|
68819
68922
|
/** The identifier of the section. An identifier must be unique within the evaluation form.
|
|
@@ -68824,9 +68927,11 @@ export declare class EvaluationFormSection {
|
|
|
68824
68927
|
Title: string;
|
|
68825
68928
|
/** The instructions of the section. */
|
|
68826
68929
|
Instructions?: string;
|
|
68930
|
+
IsExcludedFromScoring?: boolean;
|
|
68827
68931
|
/** The items of the section.
|
|
68828
68932
|
*Minimum*: 1 */
|
|
68829
68933
|
Items?: EvaluationForm_EvaluationFormItem[];
|
|
68934
|
+
ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
|
|
68830
68935
|
/** The scoring weight of the section.
|
|
68831
68936
|
*Minimum*: 0
|
|
68832
68937
|
*Maximum*: 100 */
|
|
@@ -70010,12 +70115,6 @@ export declare class ExperimentTemplateLogConfiguration {
|
|
|
70010
70115
|
});
|
|
70011
70116
|
}
|
|
70012
70117
|
|
|
70013
|
-
export declare class Expiration {
|
|
70014
|
-
constructor(props: {
|
|
70015
|
-
Days?: number;
|
|
70016
|
-
});
|
|
70017
|
-
}
|
|
70018
|
-
|
|
70019
70118
|
export declare class ExpirationDataRule {
|
|
70020
70119
|
constructor(props: {
|
|
70021
70120
|
DaysAfterLastAccess: number;
|
|
@@ -70264,6 +70363,7 @@ export declare class ExpressGatewayService_ExpressGatewayServiceConfiguration {
|
|
|
70264
70363
|
PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
|
|
70265
70364
|
ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
|
|
70266
70365
|
ServiceRevisionArn?: string;
|
|
70366
|
+
TaskDefinitionArn?: string;
|
|
70267
70367
|
TaskRoleArn?: string;
|
|
70268
70368
|
});
|
|
70269
70369
|
}
|
|
@@ -70339,6 +70439,7 @@ export declare class ExpressGatewayServiceConfiguration {
|
|
|
70339
70439
|
PrimaryContainer?: ExpressGatewayService_ExpressGatewayContainer;
|
|
70340
70440
|
ScalingTarget?: ExpressGatewayService_ExpressGatewayScalingTarget;
|
|
70341
70441
|
ServiceRevisionArn?: string;
|
|
70442
|
+
TaskDefinitionArn?: string;
|
|
70342
70443
|
TaskRoleArn?: string;
|
|
70343
70444
|
});
|
|
70344
70445
|
}
|
|
@@ -71142,6 +71243,8 @@ export declare class FirewallRuleGroup_FirewallRule {
|
|
|
71142
71243
|
FirewallThreatProtectionId?: string;
|
|
71143
71244
|
/** Qtype */
|
|
71144
71245
|
Qtype?: string;
|
|
71246
|
+
/** The status of the firewall rule. */
|
|
71247
|
+
Status?: "COMPLETE" | "CREATING" | "CREATION_FAILED";
|
|
71145
71248
|
});
|
|
71146
71249
|
}
|
|
71147
71250
|
|
|
@@ -71149,6 +71252,14 @@ export declare class FirewallRuleGroup_FirewallRuleType {
|
|
|
71149
71252
|
constructor(props: {
|
|
71150
71253
|
FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
|
|
71151
71254
|
FirewallAdvancedThreatCategory?: FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig;
|
|
71255
|
+
PartnerThreatProtection?: FirewallRuleGroup_PartnerThreatProtectionConfig;
|
|
71256
|
+
});
|
|
71257
|
+
}
|
|
71258
|
+
|
|
71259
|
+
export declare class FirewallRuleGroup_PartnerThreatProtectionConfig {
|
|
71260
|
+
constructor(props: {
|
|
71261
|
+
/** The partner identifier value. */
|
|
71262
|
+
Partner: string;
|
|
71152
71263
|
});
|
|
71153
71264
|
}
|
|
71154
71265
|
|
|
@@ -71174,6 +71285,7 @@ export declare class FirewallRuleType {
|
|
|
71174
71285
|
constructor(props: {
|
|
71175
71286
|
FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
|
|
71176
71287
|
FirewallAdvancedThreatCategory?: FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig;
|
|
71288
|
+
PartnerThreatProtection?: FirewallRuleGroup_PartnerThreatProtectionConfig;
|
|
71177
71289
|
});
|
|
71178
71290
|
}
|
|
71179
71291
|
|
|
@@ -72421,6 +72533,7 @@ export declare class Function_Code {
|
|
|
72421
72533
|
S3Bucket?: string;
|
|
72422
72534
|
/** The Amazon S3 key of the deployment package. */
|
|
72423
72535
|
S3Key?: string;
|
|
72536
|
+
S3ObjectStorageMode?: "COPY" | "REFERENCE";
|
|
72424
72537
|
/** For versioned objects, the version of the deployment package object to use. */
|
|
72425
72538
|
S3ObjectVersion?: string;
|
|
72426
72539
|
/** 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 +72558,7 @@ export declare class Function_DurableConfig {
|
|
|
72445
72558
|
constructor(props: {
|
|
72446
72559
|
/** 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
72560
|
ExecutionTimeout: number;
|
|
72561
|
+
KMSKeyArn?: string;
|
|
72448
72562
|
/** 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
72563
|
RetentionPeriodInDays?: number;
|
|
72450
72564
|
});
|
|
@@ -72768,28 +72882,6 @@ export declare class GameLiftAlias_Tag {
|
|
|
72768
72882
|
});
|
|
72769
72883
|
}
|
|
72770
72884
|
|
|
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
72885
|
export declare class GameLiftFleet_AnywhereConfiguration {
|
|
72794
72886
|
constructor(props: {
|
|
72795
72887
|
/** Cost of compute can be specified on Anywhere Fleets to prioritize placement across Queue destinations based on Cost. */
|
|
@@ -76439,6 +76531,12 @@ export declare class IdentityProviderConfiguration {
|
|
|
76439
76531
|
});
|
|
76440
76532
|
}
|
|
76441
76533
|
|
|
76534
|
+
export declare class IdentityProviderVpcConnectionProperties {
|
|
76535
|
+
constructor(props: {
|
|
76536
|
+
VpcConnectionArn: string;
|
|
76537
|
+
});
|
|
76538
|
+
}
|
|
76539
|
+
|
|
76442
76540
|
export declare class IdentitySourceDetails {
|
|
76443
76541
|
constructor(props: {
|
|
76444
76542
|
ClientIds?: string[];
|
|
@@ -77242,15 +77340,6 @@ export declare class ImageStandardOutputConfiguration {
|
|
|
77242
77340
|
});
|
|
77243
77341
|
}
|
|
77244
77342
|
|
|
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
77343
|
export declare class ImportDataRule {
|
|
77255
77344
|
constructor(props: {
|
|
77256
77345
|
Prefix: string;
|
|
@@ -77363,13 +77452,6 @@ export declare class InboundExternalLink_ResponderErrorMaskingForHttpCode {
|
|
|
77363
77452
|
});
|
|
77364
77453
|
}
|
|
77365
77454
|
|
|
77366
|
-
export declare class InboundFederation {
|
|
77367
|
-
constructor(props: {
|
|
77368
|
-
LambdaArn?: string;
|
|
77369
|
-
LambdaVersion?: string;
|
|
77370
|
-
});
|
|
77371
|
-
}
|
|
77372
|
-
|
|
77373
77455
|
export declare class IncidentTemplate {
|
|
77374
77456
|
constructor(props: {
|
|
77375
77457
|
/** The impact value. */
|
|
@@ -77445,6 +77527,8 @@ export declare class IndexCapacityConfiguration {
|
|
|
77445
77527
|
|
|
77446
77528
|
export declare class IndexSettings {
|
|
77447
77529
|
constructor(props: {
|
|
77530
|
+
/** Custom analysis configuration including analyzers, tokenizers, and filters */
|
|
77531
|
+
Analysis?: Record<string, unknown>;
|
|
77448
77532
|
Index?: Record<string, unknown>;
|
|
77449
77533
|
});
|
|
77450
77534
|
}
|
|
@@ -80620,6 +80704,12 @@ export declare class Ipv6Add {
|
|
|
80620
80704
|
});
|
|
80621
80705
|
}
|
|
80622
80706
|
|
|
80707
|
+
export declare class IssuerConfiguration {
|
|
80708
|
+
constructor(props: {
|
|
80709
|
+
Type?: "ORIGINAL" | "UPDATED";
|
|
80710
|
+
});
|
|
80711
|
+
}
|
|
80712
|
+
|
|
80623
80713
|
export declare class IssuerData {
|
|
80624
80714
|
constructor(props: {
|
|
80625
80715
|
Name: string;
|
|
@@ -81941,6 +82031,13 @@ export declare class KeyAttributes {
|
|
|
81941
82031
|
});
|
|
81942
82032
|
}
|
|
81943
82033
|
|
|
82034
|
+
export declare class KeyConfiguration {
|
|
82035
|
+
constructor(props: {
|
|
82036
|
+
KeyType?: UserPool_EncryptionKeyType;
|
|
82037
|
+
KmsKeyArn?: string;
|
|
82038
|
+
});
|
|
82039
|
+
}
|
|
82040
|
+
|
|
81944
82041
|
export declare class KeyGroup_KeyGroupConfig {
|
|
81945
82042
|
constructor(props: {
|
|
81946
82043
|
/** A list of the identifiers of the public keys in the key group. */
|
|
@@ -82731,9 +82828,7 @@ export declare class LambdaAuthorizerConfig {
|
|
|
82731
82828
|
|
|
82732
82829
|
export declare class LambdaCapacityProvider_CapacityProviderLoggingConfig {
|
|
82733
82830
|
constructor(props: {
|
|
82734
|
-
/** The log group name. */
|
|
82735
82831
|
LogGroup?: string;
|
|
82736
|
-
/** System log granularity level */
|
|
82737
82832
|
SystemLogLevel?: "DEBUG" | "INFO" | "WARN";
|
|
82738
82833
|
});
|
|
82739
82834
|
}
|
|
@@ -82758,7 +82853,6 @@ export declare class LambdaCapacityProvider_CapacityProviderScalingConfig {
|
|
|
82758
82853
|
|
|
82759
82854
|
export declare class LambdaCapacityProvider_CapacityProviderTelemetryConfig {
|
|
82760
82855
|
constructor(props: {
|
|
82761
|
-
/** The logging configuration for the capacity provider. */
|
|
82762
82856
|
LoggingConfig?: LambdaCapacityProvider_CapacityProviderLoggingConfig;
|
|
82763
82857
|
});
|
|
82764
82858
|
}
|
|
@@ -82785,7 +82879,9 @@ export declare class LambdaCapacityProvider_InstanceRequirements {
|
|
|
82785
82879
|
|
|
82786
82880
|
export declare class LambdaCapacityProvider_PropagateTagsConfig {
|
|
82787
82881
|
constructor(props: {
|
|
82882
|
+
/** A list of tags to explicitly propagate to managed resources. Maximum of 40 tags. */
|
|
82788
82883
|
ExplicitTags?: LambdaCapacityProvider_Tag[];
|
|
82884
|
+
/** The mode for tag propagation. Use ``Explicit`` to propagate specific tags, or ``None`` to disable propagation. */
|
|
82789
82885
|
Mode?: LambdaCapacityProvider_PropagateTagsMode;
|
|
82790
82886
|
});
|
|
82791
82887
|
}
|
|
@@ -86751,7 +86847,7 @@ export declare class ManagedInstancesStorageConfiguration {
|
|
|
86751
86847
|
export declare class ManagedKnowledgeBaseConfiguration {
|
|
86752
86848
|
constructor(props: {
|
|
86753
86849
|
/** The ARN of the model used to create vector embeddings for the knowledge base. */
|
|
86754
|
-
EmbeddingModelArn
|
|
86850
|
+
EmbeddingModelArn?: string;
|
|
86755
86851
|
EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
|
|
86756
86852
|
EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
|
|
86757
86853
|
ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
|
|
@@ -89755,7 +89851,9 @@ export declare class MetricCharacteristics {
|
|
|
89755
89851
|
|
|
89756
89852
|
export declare class MetricConfiguration {
|
|
89757
89853
|
constructor(props: {
|
|
89854
|
+
/** The list of metric names to configure. The supported metric names are ``CPUUtilization`` and ``MemoryUtilization``. */
|
|
89758
89855
|
MetricNames: "CPUUtilization" | "MemoryUtilization"[];
|
|
89856
|
+
/** The resolution, in seconds, at which to collect the metrics. The valid values are ``20`` and ``60``. */
|
|
89759
89857
|
ResolutionSeconds: 20 | 60;
|
|
89760
89858
|
});
|
|
89761
89859
|
}
|
|
@@ -94185,6 +94283,19 @@ export declare class Oauth2ProviderConfigOutput {
|
|
|
94185
94283
|
});
|
|
94186
94284
|
}
|
|
94187
94285
|
|
|
94286
|
+
export declare class OAuthClientApplication_IdentityProviderVpcConnectionProperties {
|
|
94287
|
+
constructor(props: {
|
|
94288
|
+
VpcConnectionArn: string;
|
|
94289
|
+
});
|
|
94290
|
+
}
|
|
94291
|
+
|
|
94292
|
+
export declare class OAuthClientApplication_Tag {
|
|
94293
|
+
constructor(props: {
|
|
94294
|
+
Key: string;
|
|
94295
|
+
Value: string;
|
|
94296
|
+
});
|
|
94297
|
+
}
|
|
94298
|
+
|
|
94188
94299
|
export declare class ObjectiveFunction {
|
|
94189
94300
|
constructor(props: {
|
|
94190
94301
|
/** objective function that training job is optimized for. */
|
|
@@ -94869,6 +94980,8 @@ export declare class OpenSearchServerlessFieldMapping {
|
|
|
94869
94980
|
|
|
94870
94981
|
export declare class OpenSearchServerlessIndex_IndexSettings {
|
|
94871
94982
|
constructor(props: {
|
|
94983
|
+
/** Custom analysis configuration including analyzers, tokenizers, and filters */
|
|
94984
|
+
Analysis?: Record<string, unknown>;
|
|
94872
94985
|
Index?: Record<string, unknown>;
|
|
94873
94986
|
});
|
|
94874
94987
|
}
|
|
@@ -96966,6 +97079,13 @@ export declare class Partnership_X12InboundEdiOptions {
|
|
|
96966
97079
|
});
|
|
96967
97080
|
}
|
|
96968
97081
|
|
|
97082
|
+
export declare class PartnerThreatProtectionConfig {
|
|
97083
|
+
constructor(props: {
|
|
97084
|
+
/** The partner identifier value. */
|
|
97085
|
+
Partner: string;
|
|
97086
|
+
});
|
|
97087
|
+
}
|
|
97088
|
+
|
|
96969
97089
|
export declare class PasswordPolicy {
|
|
96970
97090
|
constructor(props: {
|
|
96971
97091
|
MinimumLength?: number;
|
|
@@ -99277,10 +99397,9 @@ export declare class PrestoParameters {
|
|
|
99277
99397
|
});
|
|
99278
99398
|
}
|
|
99279
99399
|
|
|
99280
|
-
export declare class
|
|
99400
|
+
export declare class PrevalidationOptions {
|
|
99281
99401
|
constructor(props: {
|
|
99282
|
-
|
|
99283
|
-
LambdaVersion?: string;
|
|
99402
|
+
DnsPrevalidation: AcmeDomainValidation_DnsPrevalidationOptions;
|
|
99284
99403
|
});
|
|
99285
99404
|
}
|
|
99286
99405
|
|
|
@@ -100063,7 +100182,9 @@ export declare class PromptVersion_PromptVariant {
|
|
|
100063
100182
|
|
|
100064
100183
|
export declare class PropagateTagsConfig {
|
|
100065
100184
|
constructor(props: {
|
|
100185
|
+
/** A list of tags to explicitly propagate to managed resources. Maximum of 40 tags. */
|
|
100066
100186
|
ExplicitTags?: LambdaCapacityProvider_Tag[];
|
|
100187
|
+
/** The mode for tag propagation. Use ``Explicit`` to propagate specific tags, or ``None`` to disable propagation. */
|
|
100067
100188
|
Mode?: LambdaCapacityProvider_PropagateTagsMode;
|
|
100068
100189
|
});
|
|
100069
100190
|
}
|
|
@@ -100204,11 +100325,20 @@ export declare class ProvisionedPollerConfig {
|
|
|
100204
100325
|
|
|
100205
100326
|
export declare class ProvisioningArtifactProperties {
|
|
100206
100327
|
constructor(props: {
|
|
100328
|
+
/** Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
100329
|
+
|
|
100330
|
+
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
100331
|
+
|
|
100332
|
+
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId] */
|
|
100207
100333
|
Info: Record<string, unknown>;
|
|
100334
|
+
/** The description of the provisioning artifact, including how it differs from the previous provisioning artifact. */
|
|
100208
100335
|
Description?: string;
|
|
100336
|
+
/** If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid. */
|
|
100209
100337
|
DisableTemplateValidation?: boolean;
|
|
100338
|
+
/** The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed. */
|
|
100210
100339
|
Name?: string;
|
|
100211
|
-
|
|
100340
|
+
/** The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL */
|
|
100341
|
+
Type?: "CLOUD_FORMATION_TEMPLATE" | "EXTERNAL" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_CLOUD" | "TERRAFORM_OPEN_SOURCE";
|
|
100212
100342
|
});
|
|
100213
100343
|
}
|
|
100214
100344
|
|
|
@@ -100279,6 +100409,13 @@ export declare class PublicAccessBlockConfiguration {
|
|
|
100279
100409
|
});
|
|
100280
100410
|
}
|
|
100281
100411
|
|
|
100412
|
+
export declare class PublicCertificateAuthority {
|
|
100413
|
+
constructor(props: {
|
|
100414
|
+
/** The allowed key algorithms for certificates issued via this endpoint. */
|
|
100415
|
+
AllowedKeyAlgorithms?: string[];
|
|
100416
|
+
});
|
|
100417
|
+
}
|
|
100418
|
+
|
|
100282
100419
|
export declare class PublicDnsNamespace_Properties {
|
|
100283
100420
|
constructor(props: {
|
|
100284
100421
|
DnsProperties?: PublicDnsNamespace_PublicDnsPropertiesMutable;
|
|
@@ -101846,6 +101983,20 @@ export declare class QuickSightDataSource_VpcConnectionProperties {
|
|
|
101846
101983
|
});
|
|
101847
101984
|
}
|
|
101848
101985
|
|
|
101986
|
+
export declare class QuickSightFlow_Permission {
|
|
101987
|
+
constructor(props: {
|
|
101988
|
+
Actions: string[];
|
|
101989
|
+
Principal: string;
|
|
101990
|
+
});
|
|
101991
|
+
}
|
|
101992
|
+
|
|
101993
|
+
export declare class QuickSightFlow_StepAliasMapping {
|
|
101994
|
+
constructor(props: {
|
|
101995
|
+
StepAlias: string;
|
|
101996
|
+
StepId: string;
|
|
101997
|
+
});
|
|
101998
|
+
}
|
|
101999
|
+
|
|
101849
102000
|
export declare class QuickSightTemplate_AnalysisDefaults {
|
|
101850
102001
|
constructor(props: {
|
|
101851
102002
|
DefaultNewSheetConfiguration: QuickSightTemplate_DefaultNewSheetConfiguration;
|
|
@@ -103482,15 +103633,6 @@ export declare class RecurrenceSettings {
|
|
|
103482
103633
|
});
|
|
103483
103634
|
}
|
|
103484
103635
|
|
|
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
103636
|
export declare class RedactionPlaceHolder {
|
|
103495
103637
|
constructor(props: {
|
|
103496
103638
|
RedactionPlaceHolderType: DataProtectionSettings_RedactionPlaceHolderType;
|
|
@@ -103986,15 +104128,6 @@ export declare class RegionalParameter {
|
|
|
103986
104128
|
});
|
|
103987
104129
|
}
|
|
103988
104130
|
|
|
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
104131
|
export declare class RegistrationConfig {
|
|
103999
104132
|
constructor(props: {
|
|
104000
104133
|
RoleArn?: string;
|
|
@@ -104825,24 +104958,6 @@ export declare class ReservedCapacityOptionsRequest {
|
|
|
104825
104958
|
});
|
|
104826
104959
|
}
|
|
104827
104960
|
|
|
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
104961
|
export declare class ReshardingConfiguration {
|
|
104847
104962
|
constructor(props: {
|
|
104848
104963
|
/** Unique identifier for the Node Group. This is either auto-generated by ElastiCache (4-digit id) or a user supplied id. */
|
|
@@ -106159,6 +106274,13 @@ export declare class RoleValues {
|
|
|
106159
106274
|
});
|
|
106160
106275
|
}
|
|
106161
106276
|
|
|
106277
|
+
export declare class RollbackConfig {
|
|
106278
|
+
constructor(props: {
|
|
106279
|
+
/** The timeout in minutes for the version rollback operation. If not specified, defaults to 720 minutes (12 hours). */
|
|
106280
|
+
TimeoutMinutes?: number;
|
|
106281
|
+
});
|
|
106282
|
+
}
|
|
106283
|
+
|
|
106162
106284
|
export declare class RollingInterval {
|
|
106163
106285
|
constructor(props: {
|
|
106164
106286
|
Duration: number;
|
|
@@ -106884,7 +107006,7 @@ export declare class RulesSourceList {
|
|
|
106884
107006
|
export declare class RuleTriggerEventSource {
|
|
106885
107007
|
constructor(props: {
|
|
106886
107008
|
/** The name of the event source. */
|
|
106887
|
-
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
107009
|
+
EventSourceName: "OnCaseCreate" | "OnCaseUpdate" | "OnContactEvaluationSubmit" | "OnEmailAnalysisAvailable" | "OnMetricDataUpdate" | "OnPostCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnSalesforceCaseCreate" | "OnSchedulePublish" | "OnScheduleTimeOffRequestActivity" | "OnScheduleUpdate" | "OnSlaBreach" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate";
|
|
106888
107010
|
/** The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate`` */
|
|
106889
107011
|
IntegrationAssociationArn?: string;
|
|
106890
107012
|
});
|
|
@@ -109816,10 +109938,11 @@ export declare class ScoringStrategy {
|
|
|
109816
109938
|
constructor(props: {
|
|
109817
109939
|
/** The scoring mode of the evaluation form.
|
|
109818
109940
|
*Allowed values*: ``QUESTION_ONLY`` | ``SECTION_ONLY`` */
|
|
109819
|
-
Mode: "QUESTION_ONLY" | "SECTION_ONLY";
|
|
109941
|
+
Mode: "POINTS_BASED" | "QUESTION_ONLY" | "SECTION_ONLY";
|
|
109820
109942
|
/** The scoring status of the evaluation form.
|
|
109821
109943
|
*Allowed values*: ``ENABLED`` | ``DISABLED`` */
|
|
109822
109944
|
Status: "DISABLED" | "ENABLED";
|
|
109945
|
+
ScoreThresholds?: EvaluationForm_EvaluationFormScoreThreshold[];
|
|
109823
109946
|
});
|
|
109824
109947
|
}
|
|
109825
109948
|
|
|
@@ -110590,6 +110713,45 @@ export declare class SecurityHubPolicy {
|
|
|
110590
110713
|
});
|
|
110591
110714
|
}
|
|
110592
110715
|
|
|
110716
|
+
export declare class SecurityRequirement {
|
|
110717
|
+
constructor(props: {
|
|
110718
|
+
/** Description of the security requirement */
|
|
110719
|
+
Description: string;
|
|
110720
|
+
/** Security domain this requirement belongs to */
|
|
110721
|
+
Domain: string;
|
|
110722
|
+
/** How to evaluate compliance with this requirement */
|
|
110723
|
+
Evaluation: string;
|
|
110724
|
+
/** Name of the security requirement */
|
|
110725
|
+
Name: string;
|
|
110726
|
+
/** How to remediate non-compliance */
|
|
110727
|
+
Remediation?: string;
|
|
110728
|
+
});
|
|
110729
|
+
}
|
|
110730
|
+
|
|
110731
|
+
export declare class SecurityRequirementPack_SecurityRequirement {
|
|
110732
|
+
constructor(props: {
|
|
110733
|
+
/** Description of the security requirement */
|
|
110734
|
+
Description: string;
|
|
110735
|
+
/** Security domain this requirement belongs to */
|
|
110736
|
+
Domain: string;
|
|
110737
|
+
/** How to evaluate compliance with this requirement */
|
|
110738
|
+
Evaluation: string;
|
|
110739
|
+
/** Name of the security requirement */
|
|
110740
|
+
Name: string;
|
|
110741
|
+
/** How to remediate non-compliance */
|
|
110742
|
+
Remediation?: string;
|
|
110743
|
+
});
|
|
110744
|
+
}
|
|
110745
|
+
|
|
110746
|
+
export declare class SecurityRequirementPack_Tag {
|
|
110747
|
+
constructor(props: {
|
|
110748
|
+
/** The key name of the tag */
|
|
110749
|
+
Key: string;
|
|
110750
|
+
/** The value for the tag */
|
|
110751
|
+
Value: string;
|
|
110752
|
+
});
|
|
110753
|
+
}
|
|
110754
|
+
|
|
110593
110755
|
export declare class SecurityServicePolicyData {
|
|
110594
110756
|
constructor(props: {
|
|
110595
110757
|
Type: FMSPolicy_PolicyType;
|
|
@@ -112595,14 +112757,6 @@ export declare class SmsChannelSubtypeConfig {
|
|
|
112595
112757
|
});
|
|
112596
112758
|
}
|
|
112597
112759
|
|
|
112598
|
-
export declare class SmsConfiguration {
|
|
112599
|
-
constructor(props: {
|
|
112600
|
-
ExternalId?: string;
|
|
112601
|
-
SnsCallerArn?: string;
|
|
112602
|
-
SnsRegion?: string;
|
|
112603
|
-
});
|
|
112604
|
-
}
|
|
112605
|
-
|
|
112606
112760
|
export declare class SmsMessageTemplateContent {
|
|
112607
112761
|
constructor(props: {
|
|
112608
112762
|
Body: MessageTemplate_SmsMessageTemplateContentBody;
|
|
@@ -113071,7 +113225,9 @@ export declare class SourceCodeVersion {
|
|
|
113071
113225
|
|
|
113072
113226
|
export declare class SourceConnection {
|
|
113073
113227
|
constructor(props: {
|
|
113074
|
-
|
|
113228
|
+
/** The connection details based on the connection Type. */
|
|
113229
|
+
ConnectionParameters: Record<string, unknown>;
|
|
113230
|
+
/** The only supported SourceConnection type is Codestar. */
|
|
113075
113231
|
Type: string;
|
|
113076
113232
|
});
|
|
113077
113233
|
}
|
|
@@ -114505,6 +114661,13 @@ export declare class Step_KeyValue {
|
|
|
114505
114661
|
});
|
|
114506
114662
|
}
|
|
114507
114663
|
|
|
114664
|
+
export declare class StepAliasMapping {
|
|
114665
|
+
constructor(props: {
|
|
114666
|
+
StepAlias: string;
|
|
114667
|
+
StepId: string;
|
|
114668
|
+
});
|
|
114669
|
+
}
|
|
114670
|
+
|
|
114508
114671
|
export declare class StepFunctionsAction {
|
|
114509
114672
|
constructor(props: {
|
|
114510
114673
|
RoleArn: string;
|
|
@@ -117385,24 +117548,9 @@ export declare class TestBotAliasSettings {
|
|
|
117385
117548
|
});
|
|
117386
117549
|
}
|
|
117387
117550
|
|
|
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
117551
|
export declare class TestCaseLatestVersion {
|
|
117404
117552
|
constructor(props: {
|
|
117405
|
-
Status:
|
|
117553
|
+
Status: AppTestTestCase_TestCaseLifecycle;
|
|
117406
117554
|
Version: number;
|
|
117407
117555
|
});
|
|
117408
117556
|
}
|
|
@@ -117516,6 +117664,13 @@ export declare class ThreatIntelSet_TagItem {
|
|
|
117516
117664
|
});
|
|
117517
117665
|
}
|
|
117518
117666
|
|
|
117667
|
+
export declare class ThresholdConfiguration {
|
|
117668
|
+
constructor(props: {
|
|
117669
|
+
Type: "BOUNDED_PERCENT" | "COUNT" | "UNBOUNDED_PERCENT";
|
|
117670
|
+
Value: number;
|
|
117671
|
+
});
|
|
117672
|
+
}
|
|
117673
|
+
|
|
117519
117674
|
export declare class ThrottleSettings {
|
|
117520
117675
|
constructor(props: {
|
|
117521
117676
|
BurstLimit?: number;
|
|
@@ -119666,6 +119821,19 @@ export declare class UserPool_InviteMessageTemplate {
|
|
|
119666
119821
|
});
|
|
119667
119822
|
}
|
|
119668
119823
|
|
|
119824
|
+
export declare class UserPool_IssuerConfiguration {
|
|
119825
|
+
constructor(props: {
|
|
119826
|
+
Type?: "ORIGINAL" | "UPDATED";
|
|
119827
|
+
});
|
|
119828
|
+
}
|
|
119829
|
+
|
|
119830
|
+
export declare class UserPool_KeyConfiguration {
|
|
119831
|
+
constructor(props: {
|
|
119832
|
+
KeyType?: UserPool_EncryptionKeyType;
|
|
119833
|
+
KmsKeyArn?: string;
|
|
119834
|
+
});
|
|
119835
|
+
}
|
|
119836
|
+
|
|
119669
119837
|
export declare class UserPool_LambdaConfig {
|
|
119670
119838
|
constructor(props: {
|
|
119671
119839
|
CreateAuthChallenge?: string;
|
|
@@ -119853,6 +120021,72 @@ export declare class UserPoolDomain_RoutingType {
|
|
|
119853
120021
|
});
|
|
119854
120022
|
}
|
|
119855
120023
|
|
|
120024
|
+
export declare class UserPoolRegionalConfigurationAttachment_CustomEmailSender {
|
|
120025
|
+
constructor(props: {
|
|
120026
|
+
LambdaArn?: string;
|
|
120027
|
+
LambdaVersion?: string;
|
|
120028
|
+
});
|
|
120029
|
+
}
|
|
120030
|
+
|
|
120031
|
+
export declare class UserPoolRegionalConfigurationAttachment_CustomSMSSender {
|
|
120032
|
+
constructor(props: {
|
|
120033
|
+
LambdaArn?: string;
|
|
120034
|
+
LambdaVersion?: string;
|
|
120035
|
+
});
|
|
120036
|
+
}
|
|
120037
|
+
|
|
120038
|
+
export declare class UserPoolRegionalConfigurationAttachment_EmailConfiguration {
|
|
120039
|
+
constructor(props: {
|
|
120040
|
+
ConfigurationSet?: string;
|
|
120041
|
+
EmailSendingAccount?: string;
|
|
120042
|
+
From?: string;
|
|
120043
|
+
ReplyToEmailAddress?: string;
|
|
120044
|
+
SourceArn?: string;
|
|
120045
|
+
});
|
|
120046
|
+
}
|
|
120047
|
+
|
|
120048
|
+
export declare class UserPoolRegionalConfigurationAttachment_InboundFederation {
|
|
120049
|
+
constructor(props: {
|
|
120050
|
+
LambdaArn?: string;
|
|
120051
|
+
LambdaVersion?: string;
|
|
120052
|
+
});
|
|
120053
|
+
}
|
|
120054
|
+
|
|
120055
|
+
export declare class UserPoolRegionalConfigurationAttachment_LambdaConfig {
|
|
120056
|
+
constructor(props: {
|
|
120057
|
+
CreateAuthChallenge?: string;
|
|
120058
|
+
CustomEmailSender?: UserPoolRegionalConfigurationAttachment_CustomEmailSender;
|
|
120059
|
+
CustomMessage?: string;
|
|
120060
|
+
CustomSMSSender?: UserPoolRegionalConfigurationAttachment_CustomSMSSender;
|
|
120061
|
+
DefineAuthChallenge?: string;
|
|
120062
|
+
InboundFederation?: UserPoolRegionalConfigurationAttachment_InboundFederation;
|
|
120063
|
+
KMSKeyID?: string;
|
|
120064
|
+
PostAuthentication?: string;
|
|
120065
|
+
PostConfirmation?: string;
|
|
120066
|
+
PreAuthentication?: string;
|
|
120067
|
+
PreSignUp?: string;
|
|
120068
|
+
PreTokenGeneration?: string;
|
|
120069
|
+
PreTokenGenerationConfig?: UserPoolRegionalConfigurationAttachment_PreTokenGenerationConfig;
|
|
120070
|
+
UserMigration?: string;
|
|
120071
|
+
VerifyAuthChallengeResponse?: string;
|
|
120072
|
+
});
|
|
120073
|
+
}
|
|
120074
|
+
|
|
120075
|
+
export declare class UserPoolRegionalConfigurationAttachment_PreTokenGenerationConfig {
|
|
120076
|
+
constructor(props: {
|
|
120077
|
+
LambdaArn?: string;
|
|
120078
|
+
LambdaVersion?: string;
|
|
120079
|
+
});
|
|
120080
|
+
}
|
|
120081
|
+
|
|
120082
|
+
export declare class UserPoolRegionalConfigurationAttachment_SmsConfiguration {
|
|
120083
|
+
constructor(props: {
|
|
120084
|
+
ExternalId?: string;
|
|
120085
|
+
SnsCallerArn?: string;
|
|
120086
|
+
SnsRegion?: string;
|
|
120087
|
+
});
|
|
120088
|
+
}
|
|
120089
|
+
|
|
119856
120090
|
export declare class UserPoolResourceServer_ResourceServerScopeType {
|
|
119857
120091
|
constructor(props: {
|
|
119858
120092
|
ScopeDescription: string;
|
|
@@ -125098,6 +125332,26 @@ export type AppSyncApi_AuthenticationType =
|
|
|
125098
125332
|
|
|
125099
125333
|
export type AppSyncApi_EventLogLevel = "ALL" | "DEBUG" | "ERROR" | "INFO" | "NONE";
|
|
125100
125334
|
|
|
125335
|
+
export type AppTestTestCase_CaptureTool = "AWS DMS" | "Precisely";
|
|
125336
|
+
|
|
125337
|
+
export type AppTestTestCase_CloudFormationActionType = "Create" | "Delete";
|
|
125338
|
+
|
|
125339
|
+
export type AppTestTestCase_DataSetType = "PS";
|
|
125340
|
+
|
|
125341
|
+
export type AppTestTestCase_Format = "FIXED" | "LINE_SEQUENTIAL" | "VARIABLE";
|
|
125342
|
+
|
|
125343
|
+
export type AppTestTestCase_M2ManagedActionType = "Configure" | "Deconfigure";
|
|
125344
|
+
|
|
125345
|
+
export type AppTestTestCase_M2NonManagedActionType = "Configure" | "Deconfigure";
|
|
125346
|
+
|
|
125347
|
+
export type AppTestTestCase_ScriptType = "Selenium";
|
|
125348
|
+
|
|
125349
|
+
export type AppTestTestCase_SourceDatabase = "z/OS-DB2";
|
|
125350
|
+
|
|
125351
|
+
export type AppTestTestCase_TargetDatabase = "PostgreSQL";
|
|
125352
|
+
|
|
125353
|
+
export type AppTestTestCase_TestCaseLifecycle = "Active" | "Deleting";
|
|
125354
|
+
|
|
125101
125355
|
export type ARCRegionSwitchPlan_AlarmCondition = "green" | "red";
|
|
125102
125356
|
|
|
125103
125357
|
export type ARCRegionSwitchPlan_AlarmType = "applicationHealth" | "trigger";
|
|
@@ -128984,6 +129238,8 @@ export type PCAConnectorADTemplate_ValidityPeriodType =
|
|
|
128984
129238
|
|
|
128985
129239
|
export type PCAConnectorSCEPConnector_ConnectorType = "GENERAL_PURPOSE" | "INTUNE";
|
|
128986
129240
|
|
|
129241
|
+
export type Pentest_CleanUpStrategy = "BEST_EFFORT_DELETE" | "RETAIN_ALL";
|
|
129242
|
+
|
|
128987
129243
|
export type Pentest_CodeRemediationStrategy = "AUTOMATIC" | "DISABLED";
|
|
128988
129244
|
|
|
128989
129245
|
export type Pentest_RiskType =
|
|
@@ -129016,6 +129272,8 @@ export type Pentest_RiskType =
|
|
|
129016
129272
|
| "UNKNOWN"
|
|
129017
129273
|
| "XML_EXTERNAL_ENTITY";
|
|
129018
129274
|
|
|
129275
|
+
export type Pentest_SkillType = "FINDING_PERSONALIZATION" | "LOGIN_OPTIMIZATION";
|
|
129276
|
+
|
|
129019
129277
|
export type Pipe_AssignPublicIp = "DISABLED" | "ENABLED";
|
|
129020
129278
|
|
|
129021
129279
|
export type Pipe_BatchJobDependencyType = "N_TO_N" | "SEQUENTIAL";
|
|
@@ -129792,6 +130050,8 @@ export type QuickSightDataSource_ResourceStatus =
|
|
|
129792
130050
|
|
|
129793
130051
|
export type QuickSightDataSource_StarburstProductType = "ENTERPRISE" | "GALAXY";
|
|
129794
130052
|
|
|
130053
|
+
export type QuickSightFlow_FlowPublishState = "DRAFT" | "PENDING_APPROVAL" | "PUBLISHED";
|
|
130054
|
+
|
|
129795
130055
|
export type QuickSightTemplate_AnchorOption = "NOW";
|
|
129796
130056
|
|
|
129797
130057
|
export type QuickSightTemplate_ArcThickness = "LARGE" | "MEDIUM" | "SMALL" | "WHOLE";
|
|
@@ -130493,6 +130753,8 @@ export type Route53GlobalResolverFirewallDomainList_CRResourceStatus =
|
|
|
130493
130753
|
|
|
130494
130754
|
export type RouteCalculator_PricingPlan = "RequestBasedUsage";
|
|
130495
130755
|
|
|
130756
|
+
export type RouterInput_ContentQualityAnalysisState = "DISABLED" | "ENABLED";
|
|
130757
|
+
|
|
130496
130758
|
export type RouterInput_Day =
|
|
130497
130759
|
| "FRIDAY"
|
|
130498
130760
|
| "MONDAY"
|
|
@@ -130514,6 +130776,8 @@ export type RouterInput_MediaLiveChannelPipelineId = "PIPELINE_0" | "PIPELINE_1"
|
|
|
130514
130776
|
|
|
130515
130777
|
export type RouterInput_MediaLiveTransitEncryptionKeyType = "AUTOMATIC" | "SECRETS_MANAGER";
|
|
130516
130778
|
|
|
130779
|
+
export type RouterInput_RouterContentQualityAnalysisType = "CONTENT_LEVEL";
|
|
130780
|
+
|
|
130517
130781
|
export type RouterInput_RouterInputProtocol = "RIST" | "RTP" | "SRT_CALLER" | "SRT_LISTENER";
|
|
130518
130782
|
|
|
130519
130783
|
export type RouterInput_RouterInputState =
|
|
@@ -131439,26 +131703,6 @@ export type Terms_TermsEnforcementType = "NONE";
|
|
|
131439
131703
|
|
|
131440
131704
|
export type Terms_TermsSourceType = "LINK";
|
|
131441
131705
|
|
|
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
131706
|
export type TimestreamScheduledQuery_DimensionValueType = "VARCHAR";
|
|
131463
131707
|
|
|
131464
131708
|
export type TimestreamScheduledQuery_EncryptionOption = "SSE_KMS" | "SSE_S3";
|
|
@@ -131558,6 +131802,8 @@ export type TrustAnchor_NotificationEvent =
|
|
|
131558
131802
|
|
|
131559
131803
|
export type TrustAnchor_TrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE";
|
|
131560
131804
|
|
|
131805
|
+
export type UserPool_EncryptionKeyType = "AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KEY";
|
|
131806
|
+
|
|
131561
131807
|
export type UserSettings_ColorTheme = "Dark" | "Light";
|
|
131562
131808
|
|
|
131563
131809
|
export type UserSettings_EnabledType = "Disabled" | "Enabled";
|