@intentius/chant-lexicon-aws 0.1.12 → 0.1.14
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/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +965 -54
- package/dist/types/index.d.ts +1451 -121
- package/package.json +3 -3
- package/src/codegen/docs.ts +1 -1
- package/src/generated/index.d.ts +1451 -121
- package/src/generated/index.ts +151 -8
- package/src/generated/lexicon-aws.json +965 -54
package/src/generated/index.d.ts
CHANGED
|
@@ -3226,6 +3226,40 @@ export declare class BedrockAgent {
|
|
|
3226
3226
|
readonly UpdatedAt: string;
|
|
3227
3227
|
}
|
|
3228
3228
|
|
|
3229
|
+
export declare class BedrockAgentCoreDataset {
|
|
3230
|
+
constructor(props: {
|
|
3231
|
+
/** Human-readable name for the dataset. Unique within the account (case-insensitive). Immutable after creation. */
|
|
3232
|
+
DatasetName: string;
|
|
3233
|
+
/** Versioned schema type governing the structure of examples. Immutable after creation. */
|
|
3234
|
+
SchemaType: "AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1";
|
|
3235
|
+
/** The timestamp when the dataset was created. */
|
|
3236
|
+
CreatedAt?: string;
|
|
3237
|
+
/** The Amazon Resource Name (ARN) of the dataset. */
|
|
3238
|
+
DatasetArn?: string;
|
|
3239
|
+
/** The unique identifier of the dataset. */
|
|
3240
|
+
DatasetId?: string;
|
|
3241
|
+
/** A description of the dataset. */
|
|
3242
|
+
Description?: string;
|
|
3243
|
+
/** The number of examples in the dataset DRAFT. */
|
|
3244
|
+
ExampleCount?: number;
|
|
3245
|
+
/** Optional AWS KMS key ARN for SSE-KMS on service S3 writes. */
|
|
3246
|
+
KmsKeyArn?: string;
|
|
3247
|
+
Source?: BedrockAgentCoreDataset_DataSourceType;
|
|
3248
|
+
/** The current status of the dataset. */
|
|
3249
|
+
Status?: "ACTIVE" | "CREATE_FAILED" | "CREATING" | "DELETE_FAILED" | "DELETING" | "UPDATE_FAILED" | "UPDATING";
|
|
3250
|
+
/** A list of tags to assign to the dataset. */
|
|
3251
|
+
Tags?: BedrockAgentCoreDataset_Tag[];
|
|
3252
|
+
/** The timestamp when the dataset was last updated. */
|
|
3253
|
+
UpdatedAt?: string;
|
|
3254
|
+
}, attributes?: CFResourceAttributes);
|
|
3255
|
+
readonly CreatedAt: string;
|
|
3256
|
+
readonly DatasetArn: string;
|
|
3257
|
+
readonly DatasetId: string;
|
|
3258
|
+
readonly ExampleCount: number;
|
|
3259
|
+
readonly Status: "ACTIVE" | "CREATE_FAILED" | "CREATING" | "DELETE_FAILED" | "DELETING" | "UPDATE_FAILED" | "UPDATING";
|
|
3260
|
+
readonly UpdatedAt: string;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3229
3263
|
export declare class BedrockAgentCoreGateway {
|
|
3230
3264
|
constructor(props: {
|
|
3231
3265
|
AuthorizerType: BedrockAgentCoreGateway_AuthorizerType;
|
|
@@ -3746,6 +3780,23 @@ but changes to Password cannot be detected so updates to Password may not take e
|
|
|
3746
3780
|
readonly WssEndpoints: string[];
|
|
3747
3781
|
}
|
|
3748
3782
|
|
|
3783
|
+
export declare class Browser {
|
|
3784
|
+
constructor(props: {
|
|
3785
|
+
/** The Amazon Resource Name (ARN) of the browser. */
|
|
3786
|
+
BrowserArn?: string;
|
|
3787
|
+
/** The unique identifier of the browser. */
|
|
3788
|
+
BrowserId?: string;
|
|
3789
|
+
/** The name of the browser. */
|
|
3790
|
+
Name?: string;
|
|
3791
|
+
/** The current status of the browser. */
|
|
3792
|
+
Status?: "READY";
|
|
3793
|
+
}, attributes?: CFResourceAttributes);
|
|
3794
|
+
readonly BrowserArn: string;
|
|
3795
|
+
readonly BrowserId: string;
|
|
3796
|
+
readonly Name: string;
|
|
3797
|
+
readonly Status: "READY";
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3749
3800
|
export declare class BrowserCustom {
|
|
3750
3801
|
constructor(props: {
|
|
3751
3802
|
/** The name of the browser. */
|
|
@@ -4465,6 +4516,7 @@ export declare class CfTrustStore {
|
|
|
4465
4516
|
Status?: "ACTIVE" | "FAILED" | "PENDING";
|
|
4466
4517
|
/** A complex type that contains zero or more ``Tag`` elements. */
|
|
4467
4518
|
Tags?: CfTrustStore_Tag[];
|
|
4519
|
+
/** A boolean. When true, performs real-time certificate revocation checks by querying the OCSP endpoint specified within the client certificate. */
|
|
4468
4520
|
UseClientCertificateOCSPEndpoint?: boolean;
|
|
4469
4521
|
}, attributes?: CFResourceAttributes);
|
|
4470
4522
|
readonly Arn: string;
|
|
@@ -5825,8 +5877,8 @@ export declare class ComputeNodeGroup {
|
|
|
5825
5877
|
Id?: string;
|
|
5826
5878
|
/** The name that identifies the compute node group. */
|
|
5827
5879
|
Name?: string;
|
|
5828
|
-
/** Specifies how EC2 instances are purchased on your behalf. AWS PCS supports On-Demand, Spot and Capacity
|
|
5829
|
-
PurchaseOption?: "CAPACITY_BLOCK" | "ONDEMAND" | "SPOT";
|
|
5880
|
+
/** Specifies how EC2 instances are purchased on your behalf. AWS PCS supports On-Demand, Spot, Capacity Block, and Interruptible Capacity Reservation instances. For more information, see Instance purchasing options in the Amazon Elastic Compute Cloud User Guide. If you don't provide this option, it defaults to On-Demand. */
|
|
5881
|
+
PurchaseOption?: "CAPACITY_BLOCK" | "INTERRUPTIBLE_CAPACITY_RESERVATION" | "ONDEMAND" | "SPOT";
|
|
5830
5882
|
/** Additional options related to the Slurm scheduler. */
|
|
5831
5883
|
SlurmConfiguration?: Record<string, unknown>;
|
|
5832
5884
|
/** Additional configuration when you specify SPOT as the purchase option. */
|
|
@@ -7560,6 +7612,8 @@ export declare class CwDashboard {
|
|
|
7560
7612
|
DashboardBody: string;
|
|
7561
7613
|
/** The name of the dashboard. The name must be between 1 and 255 characters. If you do not specify a name, one will be generated automatically. */
|
|
7562
7614
|
DashboardName?: string;
|
|
7615
|
+
/** A list of key-value pairs to associate with the cloudwatch dashboard. You can associate up to 50 tags with a dashboard */
|
|
7616
|
+
Tags?: CwDashboard_Tag[];
|
|
7563
7617
|
}, attributes?: CFResourceAttributes);
|
|
7564
7618
|
}
|
|
7565
7619
|
|
|
@@ -15349,12 +15403,12 @@ export declare class GraphQLSchema {
|
|
|
15349
15403
|
|
|
15350
15404
|
export declare class GraphSnapshot {
|
|
15351
15405
|
constructor(props: {
|
|
15406
|
+
/** The unique identifier of the Neptune Analytics graph to create the snapshot from. */
|
|
15407
|
+
GraphIdentifier: string;
|
|
15352
15408
|
/** The snapshot name. */
|
|
15353
15409
|
SnapshotName: string;
|
|
15354
15410
|
/** The ARN of the graph snapshot. */
|
|
15355
15411
|
Arn?: string;
|
|
15356
|
-
/** The unique identifier of the Neptune Analytics graph to create the snapshot from. */
|
|
15357
|
-
GraphIdentifier?: string;
|
|
15358
15412
|
/** The unique identifier of the graph snapshot. */
|
|
15359
15413
|
Id?: string;
|
|
15360
15414
|
/** The ID of the KMS key used to encrypt and decrypt the snapshot. */
|
|
@@ -15626,6 +15680,63 @@ export declare class GuardrailVersion {
|
|
|
15626
15680
|
readonly Version: string;
|
|
15627
15681
|
}
|
|
15628
15682
|
|
|
15683
|
+
export declare class Harness {
|
|
15684
|
+
constructor(props: {
|
|
15685
|
+
/** The ARN of the IAM role that the harness assumes when running. */
|
|
15686
|
+
ExecutionRoleArn: string;
|
|
15687
|
+
/** The name of the harness. */
|
|
15688
|
+
HarnessName: string;
|
|
15689
|
+
/** The model configuration for the harness. */
|
|
15690
|
+
Model: Harness_HarnessModelConfiguration;
|
|
15691
|
+
/** The tools that the agent is allowed to use. */
|
|
15692
|
+
AllowedTools?: string[];
|
|
15693
|
+
/** The Amazon Resource Name (ARN) of the harness. */
|
|
15694
|
+
Arn?: string;
|
|
15695
|
+
/** The inbound authorization configuration for authenticating incoming requests. */
|
|
15696
|
+
AuthorizerConfiguration?: Harness_AuthorizerConfiguration;
|
|
15697
|
+
/** The timestamp when the harness was created. */
|
|
15698
|
+
CreatedAt?: string;
|
|
15699
|
+
/** The compute environment configuration for the harness, including underlying runtime information. */
|
|
15700
|
+
Environment?: Harness_HarnessEnvironmentProvider;
|
|
15701
|
+
/** The environment artifact for the harness, such as a custom container image. */
|
|
15702
|
+
EnvironmentArtifact?: Harness_HarnessEnvironmentArtifact;
|
|
15703
|
+
/** Environment variables to set in the harness runtime environment. */
|
|
15704
|
+
EnvironmentVariables?: Record<string, unknown>;
|
|
15705
|
+
/** The unique identifier of the harness. */
|
|
15706
|
+
HarnessId?: string;
|
|
15707
|
+
/** The maximum number of iterations the agent loop can execute per invocation. */
|
|
15708
|
+
MaxIterations?: number;
|
|
15709
|
+
/** The maximum number of tokens the agent can generate per iteration. */
|
|
15710
|
+
MaxTokens?: number;
|
|
15711
|
+
/** The AgentCore Memory configuration for persisting conversation context. */
|
|
15712
|
+
Memory?: Harness_HarnessMemoryConfiguration;
|
|
15713
|
+
/** The skills available to the agent. */
|
|
15714
|
+
Skills?: Harness_HarnessSkill[];
|
|
15715
|
+
/** The current status of the harness. */
|
|
15716
|
+
Status?: Harness_HarnessStatus;
|
|
15717
|
+
/** The system prompt that defines the agent's behavior. */
|
|
15718
|
+
SystemPrompt?: Harness_HarnessSystemContentBlock[];
|
|
15719
|
+
/** Tags to apply to the harness resource. */
|
|
15720
|
+
Tags?: Harness_Tag[];
|
|
15721
|
+
/** The maximum duration in seconds for the agent loop execution per invocation. */
|
|
15722
|
+
TimeoutSeconds?: number;
|
|
15723
|
+
/** The tools available to the agent. */
|
|
15724
|
+
Tools?: Harness_HarnessTool[];
|
|
15725
|
+
/** The truncation configuration for managing conversation context. */
|
|
15726
|
+
Truncation?: Harness_HarnessTruncationConfiguration;
|
|
15727
|
+
/** The timestamp when the harness was last updated. */
|
|
15728
|
+
UpdatedAt?: string;
|
|
15729
|
+
}, attributes?: CFResourceAttributes);
|
|
15730
|
+
readonly Arn: string;
|
|
15731
|
+
readonly CreatedAt: string;
|
|
15732
|
+
readonly Environment_AgentCoreRuntimeEnvironment_AgentRuntimeArn: string;
|
|
15733
|
+
readonly Environment_AgentCoreRuntimeEnvironment_AgentRuntimeId: string;
|
|
15734
|
+
readonly Environment_AgentCoreRuntimeEnvironment_AgentRuntimeName: string;
|
|
15735
|
+
readonly HarnessId: string;
|
|
15736
|
+
readonly Status: Harness_HarnessStatus;
|
|
15737
|
+
readonly UpdatedAt: string;
|
|
15738
|
+
}
|
|
15739
|
+
|
|
15629
15740
|
export declare class HealthCheck {
|
|
15630
15741
|
constructor(props: {
|
|
15631
15742
|
/** A complex type that contains information about the health check. */
|
|
@@ -18390,12 +18501,13 @@ export declare class KeyValueStore {
|
|
|
18390
18501
|
/** The name of the key value store. */
|
|
18391
18502
|
Name: string;
|
|
18392
18503
|
Arn?: string;
|
|
18393
|
-
/** A comment
|
|
18504
|
+
/** A comment to describe the Key Value Store. Omitting ``Comment`` from the template during updates will clear the existing comment (set to empty string). To preserve an existing comment, you must explicitly include it in the template. */
|
|
18394
18505
|
Comment?: string;
|
|
18395
18506
|
Id?: string;
|
|
18396
18507
|
/** The import source for the key value store. */
|
|
18397
18508
|
ImportSource?: KeyValueStore_ImportSource;
|
|
18398
18509
|
Status?: string;
|
|
18510
|
+
/** A complex type that contains zero or more ``Tag`` elements. */
|
|
18399
18511
|
Tags?: KeyValueStore_Tag[];
|
|
18400
18512
|
}, attributes?: CFResourceAttributes);
|
|
18401
18513
|
readonly Arn: string;
|
|
@@ -20966,6 +21078,7 @@ export declare class MediaConvertQueue {
|
|
|
20966
21078
|
ConcurrentJobs?: number;
|
|
20967
21079
|
Description?: string;
|
|
20968
21080
|
Id?: string;
|
|
21081
|
+
MaximumConcurrentFeeds?: number;
|
|
20969
21082
|
Name?: string;
|
|
20970
21083
|
PricingPlan?: string;
|
|
20971
21084
|
Status?: string;
|
|
@@ -24105,11 +24218,14 @@ export declare class OrganizationTelemetryRule {
|
|
|
24105
24218
|
Rule: OrganizationTelemetryRule_TelemetryRule;
|
|
24106
24219
|
/** The name of the organization telemetry rule */
|
|
24107
24220
|
RuleName: string;
|
|
24221
|
+
/** Per-region replication status of the rule */
|
|
24222
|
+
RegionStatuses?: OrganizationTelemetryRule_RegionStatus[];
|
|
24108
24223
|
/** The arn of the organization telemetry rule */
|
|
24109
24224
|
RuleArn?: string;
|
|
24110
24225
|
/** An array of key-value pairs to apply to this resource */
|
|
24111
24226
|
Tags?: OrganizationTelemetryRule_Tag[];
|
|
24112
24227
|
}, attributes?: CFResourceAttributes);
|
|
24228
|
+
readonly RegionStatuses: OrganizationTelemetryRule_RegionStatus[];
|
|
24113
24229
|
readonly RuleArn: string;
|
|
24114
24230
|
}
|
|
24115
24231
|
|
|
@@ -24529,6 +24645,28 @@ export declare class PatchBaseline {
|
|
|
24529
24645
|
readonly Id: string;
|
|
24530
24646
|
}
|
|
24531
24647
|
|
|
24648
|
+
export declare class PaymentCredentialProvider {
|
|
24649
|
+
constructor(props: {
|
|
24650
|
+
CredentialProviderVendor: PaymentCredentialProvider_PaymentCredentialProviderVendorType;
|
|
24651
|
+
/** Unique name for the payment credential provider */
|
|
24652
|
+
Name: string;
|
|
24653
|
+
/** The timestamp when the credential provider was created */
|
|
24654
|
+
CreatedTime?: string;
|
|
24655
|
+
/** The Amazon Resource Name (ARN) of the payment credential provider */
|
|
24656
|
+
CredentialProviderArn?: string;
|
|
24657
|
+
/** The timestamp when the credential provider was last updated */
|
|
24658
|
+
LastUpdatedTime?: string;
|
|
24659
|
+
ProviderConfigurationInput?: PaymentCredentialProvider_PaymentProviderConfigurationInput;
|
|
24660
|
+
ProviderConfigurationOutput?: PaymentCredentialProvider_PaymentProviderConfigurationOutput;
|
|
24661
|
+
/** Tags for the payment credential provider */
|
|
24662
|
+
Tags?: PaymentCredentialProvider_Tag[];
|
|
24663
|
+
}, attributes?: CFResourceAttributes);
|
|
24664
|
+
readonly CreatedTime: string;
|
|
24665
|
+
readonly CredentialProviderArn: string;
|
|
24666
|
+
readonly LastUpdatedTime: string;
|
|
24667
|
+
readonly ProviderConfigurationOutput: PaymentCredentialProvider_PaymentProviderConfigurationOutput;
|
|
24668
|
+
}
|
|
24669
|
+
|
|
24532
24670
|
export declare class PaymentCryptographyAlias {
|
|
24533
24671
|
constructor(props: {
|
|
24534
24672
|
AliasName: string;
|
|
@@ -27380,6 +27518,23 @@ export declare class RekognitionProject {
|
|
|
27380
27518
|
readonly Arn: string;
|
|
27381
27519
|
}
|
|
27382
27520
|
|
|
27521
|
+
export declare class RemediationConfiguration {
|
|
27522
|
+
constructor(props: {
|
|
27523
|
+
ConfigRuleName: string;
|
|
27524
|
+
TargetId: string;
|
|
27525
|
+
TargetType: string;
|
|
27526
|
+
Automatic?: boolean;
|
|
27527
|
+
ExecutionControls?: RemediationConfiguration_ExecutionControls;
|
|
27528
|
+
Id?: string;
|
|
27529
|
+
MaximumAutomaticAttempts?: number;
|
|
27530
|
+
Parameters?: Record<string, unknown>;
|
|
27531
|
+
ResourceType?: string;
|
|
27532
|
+
RetryAttemptSeconds?: number;
|
|
27533
|
+
TargetVersion?: string;
|
|
27534
|
+
}, attributes?: CFResourceAttributes);
|
|
27535
|
+
readonly Id: string;
|
|
27536
|
+
}
|
|
27537
|
+
|
|
27383
27538
|
export declare class ReplicaKey {
|
|
27384
27539
|
constructor(props: {
|
|
27385
27540
|
/** The key policy that authorizes use of the AWS KMS key. The key policy must observe the following rules. */
|
|
@@ -27500,7 +27655,9 @@ export declare class ReplicationGroup {
|
|
|
27500
27655
|
ReadEndPoint?: Record<string, unknown>;
|
|
27501
27656
|
/** The endpoint of the reader node in the replication group. */
|
|
27502
27657
|
ReaderEndPoint?: ReplicationGroup_Endpoint;
|
|
27503
|
-
/** An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0 to 5.
|
|
27658
|
+
/** An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0 to 5.
|
|
27659
|
+
|
|
27660
|
+
**Note:** Using ReplicasPerNodeGroup with NodeGroupConfiguration results in resource replacement. For online scaling, use ReplicasPerNodeGroup alone. */
|
|
27504
27661
|
ReplicasPerNodeGroup?: number;
|
|
27505
27662
|
/** The replication group identifier. This parameter is stored as a lowercase string. */
|
|
27506
27663
|
ReplicationGroupId?: string;
|
|
@@ -33308,11 +33465,14 @@ export declare class TelemetryRule {
|
|
|
33308
33465
|
Rule: TelemetryRule_TelemetryRule;
|
|
33309
33466
|
/** The name of the telemetry rule */
|
|
33310
33467
|
RuleName: string;
|
|
33468
|
+
/** Per-region replication status of the rule */
|
|
33469
|
+
RegionStatuses?: TelemetryRule_RegionStatus[];
|
|
33311
33470
|
/** The arn of the telemetry rule */
|
|
33312
33471
|
RuleArn?: string;
|
|
33313
33472
|
/** An array of key-value pairs to apply to this resource */
|
|
33314
33473
|
Tags?: TelemetryRule_Tag[];
|
|
33315
33474
|
}, attributes?: CFResourceAttributes);
|
|
33475
|
+
readonly RegionStatuses: TelemetryRule_RegionStatus[];
|
|
33316
33476
|
readonly RuleArn: string;
|
|
33317
33477
|
}
|
|
33318
33478
|
|
|
@@ -38106,6 +38266,12 @@ export declare class AdditionalInstanceConfiguration {
|
|
|
38106
38266
|
});
|
|
38107
38267
|
}
|
|
38108
38268
|
|
|
38269
|
+
export declare class AdditionalNotes {
|
|
38270
|
+
constructor(props: {
|
|
38271
|
+
Text?: string;
|
|
38272
|
+
});
|
|
38273
|
+
}
|
|
38274
|
+
|
|
38109
38275
|
export declare class AdditionalStorageVolume {
|
|
38110
38276
|
constructor(props: {
|
|
38111
38277
|
/** The amount of storage allocated for the additional storage volume, in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB). */
|
|
@@ -48249,6 +48415,14 @@ export declare class ARCRegionSwitchPlan_EksResourceScalingUngraceful {
|
|
|
48249
48415
|
});
|
|
48250
48416
|
}
|
|
48251
48417
|
|
|
48418
|
+
export declare class ARCRegionSwitchPlan_EventSourceMapping {
|
|
48419
|
+
constructor(props: {
|
|
48420
|
+
Arn: string;
|
|
48421
|
+
CrossAccountRole?: string;
|
|
48422
|
+
ExternalId?: string;
|
|
48423
|
+
});
|
|
48424
|
+
}
|
|
48425
|
+
|
|
48252
48426
|
export declare class ARCRegionSwitchPlan_ExecutionApprovalConfiguration {
|
|
48253
48427
|
constructor(props: {
|
|
48254
48428
|
ApprovalRole: string;
|
|
@@ -48296,6 +48470,21 @@ export declare class ARCRegionSwitchPlan_KubernetesScalingResource {
|
|
|
48296
48470
|
});
|
|
48297
48471
|
}
|
|
48298
48472
|
|
|
48473
|
+
export declare class ARCRegionSwitchPlan_LambdaEventSourceMappingConfiguration {
|
|
48474
|
+
constructor(props: {
|
|
48475
|
+
Action: "disable" | "enable";
|
|
48476
|
+
RegionEventSourceMappings: Record<string, unknown>;
|
|
48477
|
+
TimeoutMinutes?: number;
|
|
48478
|
+
Ungraceful?: ARCRegionSwitchPlan_LambdaEventSourceMappingUngraceful;
|
|
48479
|
+
});
|
|
48480
|
+
}
|
|
48481
|
+
|
|
48482
|
+
export declare class ARCRegionSwitchPlan_LambdaEventSourceMappingUngraceful {
|
|
48483
|
+
constructor(props: {
|
|
48484
|
+
Behavior?: "skip";
|
|
48485
|
+
});
|
|
48486
|
+
}
|
|
48487
|
+
|
|
48299
48488
|
export declare class ARCRegionSwitchPlan_Lambdas {
|
|
48300
48489
|
constructor(props: {
|
|
48301
48490
|
Arn?: string;
|
|
@@ -49563,12 +49752,6 @@ export declare class AuthorizerConfig {
|
|
|
49563
49752
|
});
|
|
49564
49753
|
}
|
|
49565
49754
|
|
|
49566
|
-
export declare class AuthorizerConfiguration {
|
|
49567
|
-
constructor(props: {
|
|
49568
|
-
CustomJWTAuthorizer?: Runtime_CustomJWTAuthorizerConfiguration;
|
|
49569
|
-
});
|
|
49570
|
-
}
|
|
49571
|
-
|
|
49572
49755
|
export declare class AuthParameters {
|
|
49573
49756
|
constructor(props: {
|
|
49574
49757
|
ApiKeyAuthParameters?: EventsConnection_ApiKeyAuthParameters;
|
|
@@ -52028,6 +52211,34 @@ export declare class BedrockAgent_SessionSummaryConfiguration {
|
|
|
52028
52211
|
});
|
|
52029
52212
|
}
|
|
52030
52213
|
|
|
52214
|
+
export declare class BedrockAgentCoreDataset_DataSourceType {
|
|
52215
|
+
constructor(props: {
|
|
52216
|
+
InlineExamples?: BedrockAgentCoreDataset_InlineExamplesSource;
|
|
52217
|
+
S3Source?: BedrockAgentCoreDataset_S3Source;
|
|
52218
|
+
});
|
|
52219
|
+
}
|
|
52220
|
+
|
|
52221
|
+
export declare class BedrockAgentCoreDataset_InlineExamplesSource {
|
|
52222
|
+
constructor(props: {
|
|
52223
|
+
/** Examples to add. Each example is a free-form JSON document validated against the declared schemaType. */
|
|
52224
|
+
Examples: Record<string, unknown>[];
|
|
52225
|
+
});
|
|
52226
|
+
}
|
|
52227
|
+
|
|
52228
|
+
export declare class BedrockAgentCoreDataset_S3Source {
|
|
52229
|
+
constructor(props: {
|
|
52230
|
+
/** S3 URI of the JSONL file (e.g. s3://my-bucket/path/to/examples.jsonl). */
|
|
52231
|
+
S3Uri: string;
|
|
52232
|
+
});
|
|
52233
|
+
}
|
|
52234
|
+
|
|
52235
|
+
export declare class BedrockAgentCoreDataset_Tag {
|
|
52236
|
+
constructor(props: {
|
|
52237
|
+
Key: string;
|
|
52238
|
+
Value: string;
|
|
52239
|
+
});
|
|
52240
|
+
}
|
|
52241
|
+
|
|
52031
52242
|
export declare class BedrockAgentCoreGateway_AuthorizingClaimMatchValueType {
|
|
52032
52243
|
constructor(props: {
|
|
52033
52244
|
ClaimMatchOperator: BedrockAgentCoreGateway_ClaimMatchOperator;
|
|
@@ -58109,7 +58320,7 @@ export declare class CfDistribution_LegacyS3Origin {
|
|
|
58109
58320
|
/** The domain name assigned to your CF distribution. */
|
|
58110
58321
|
DNSName: string;
|
|
58111
58322
|
/** The CF origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an S3 through CF.
|
|
58112
|
-
This property is legacy. We recommend that you use [OriginAccessControl](https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
58323
|
+
This property is legacy. We recommend that you use [OriginAccessControl](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudfront-originaccesscontrol.html) instead. */
|
|
58113
58324
|
OriginAccessIdentity?: string;
|
|
58114
58325
|
});
|
|
58115
58326
|
}
|
|
@@ -60704,6 +60915,26 @@ export declare class CognitoUserPoolConfiguration {
|
|
|
60704
60915
|
});
|
|
60705
60916
|
}
|
|
60706
60917
|
|
|
60918
|
+
export declare class CoinbaseCdpConfigurationInput {
|
|
60919
|
+
constructor(props: {
|
|
60920
|
+
/** The Coinbase CDP API key ID */
|
|
60921
|
+
ApiKeyId: string;
|
|
60922
|
+
/** The Coinbase CDP API key secret */
|
|
60923
|
+
ApiKeySecret: string;
|
|
60924
|
+
/** The Coinbase CDP wallet secret */
|
|
60925
|
+
WalletSecret?: string;
|
|
60926
|
+
});
|
|
60927
|
+
}
|
|
60928
|
+
|
|
60929
|
+
export declare class CoinbaseCdpConfigurationOutput {
|
|
60930
|
+
constructor(props: {
|
|
60931
|
+
/** The Coinbase CDP API key ID */
|
|
60932
|
+
ApiKeyId: string;
|
|
60933
|
+
ApiKeySecretArn: PaymentCredentialProvider_SecretInfo;
|
|
60934
|
+
WalletSecretArn?: PaymentCredentialProvider_SecretInfo;
|
|
60935
|
+
});
|
|
60936
|
+
}
|
|
60937
|
+
|
|
60707
60938
|
export declare class Collaboration_DataEncryptionMetadata {
|
|
60708
60939
|
constructor(props: {
|
|
60709
60940
|
AllowCleartext: boolean;
|
|
@@ -60868,6 +61099,20 @@ export declare class ColumnLevelPermissionRule {
|
|
|
60868
61099
|
});
|
|
60869
61100
|
}
|
|
60870
61101
|
|
|
61102
|
+
export declare class ColumnSemanticProperty {
|
|
61103
|
+
constructor(props: {
|
|
61104
|
+
AdditionalNotes?: DataSet_AdditionalNotes;
|
|
61105
|
+
Description?: DataSet_ColumnDescription;
|
|
61106
|
+
SemanticType?: DataSet_ColumnSemanticType;
|
|
61107
|
+
});
|
|
61108
|
+
}
|
|
61109
|
+
|
|
61110
|
+
export declare class ColumnSemanticType {
|
|
61111
|
+
constructor(props: {
|
|
61112
|
+
GeographicalRole?: DataSet_GeoSpatialDataRole;
|
|
61113
|
+
});
|
|
61114
|
+
}
|
|
61115
|
+
|
|
60871
61116
|
export declare class ColumnStatisticsConfiguration {
|
|
60872
61117
|
constructor(props: {
|
|
60873
61118
|
Statistics: DataBrewJob_StatisticsConfiguration;
|
|
@@ -61510,6 +61755,19 @@ export declare class CompositeFilter {
|
|
|
61510
61755
|
});
|
|
61511
61756
|
}
|
|
61512
61757
|
|
|
61758
|
+
export declare class CompositeSliComponent {
|
|
61759
|
+
constructor(props: {
|
|
61760
|
+
OperationName: string;
|
|
61761
|
+
});
|
|
61762
|
+
}
|
|
61763
|
+
|
|
61764
|
+
export declare class CompositeSliConfig {
|
|
61765
|
+
constructor(props: {
|
|
61766
|
+
SelectionConfig: ServiceLevelObjective_SelectionConfig;
|
|
61767
|
+
CompositeSliComponents?: any;
|
|
61768
|
+
});
|
|
61769
|
+
}
|
|
61770
|
+
|
|
61513
61771
|
export declare class CompositeSlotTypeSetting {
|
|
61514
61772
|
constructor(props: {
|
|
61515
61773
|
SubSlots?: Bot_SubSlotTypeComposition[];
|
|
@@ -64682,12 +64940,6 @@ export declare class ContainerAction {
|
|
|
64682
64940
|
});
|
|
64683
64941
|
}
|
|
64684
64942
|
|
|
64685
|
-
export declare class ContainerConfiguration {
|
|
64686
|
-
constructor(props: {
|
|
64687
|
-
ContainerUri: string;
|
|
64688
|
-
});
|
|
64689
|
-
}
|
|
64690
|
-
|
|
64691
64943
|
export declare class ContainerDistributionConfiguration {
|
|
64692
64944
|
constructor(props: {
|
|
64693
64945
|
/** Tags that are attached to the container distribution configuration. */
|
|
@@ -65560,6 +65812,8 @@ export declare class CpuOptions {
|
|
|
65560
65812
|
AmdSevSnp?: "disabled" | "enabled";
|
|
65561
65813
|
/** The number of CPU cores for the instance. */
|
|
65562
65814
|
CoreCount?: number;
|
|
65815
|
+
/** Indicates whether the instance is enabled for nested virtualization. */
|
|
65816
|
+
NestedVirtualization?: "disabled" | "enabled";
|
|
65563
65817
|
/** The number of threads per CPU core. To disable multithreading for the instance, specify a value of ``1``. Otherwise, specify the default value of ``2``. */
|
|
65564
65818
|
ThreadsPerCore?: number;
|
|
65565
65819
|
});
|
|
@@ -66870,6 +67124,12 @@ export declare class CustomImageContainerEnvironmentVariable {
|
|
|
66870
67124
|
});
|
|
66871
67125
|
}
|
|
66872
67126
|
|
|
67127
|
+
export declare class CustomInstruction {
|
|
67128
|
+
constructor(props: {
|
|
67129
|
+
InlineCustomInstruction?: DataSet_InlineCustomInstruction;
|
|
67130
|
+
});
|
|
67131
|
+
}
|
|
67132
|
+
|
|
66873
67133
|
export declare class CustomInstructions {
|
|
66874
67134
|
constructor(props: {
|
|
66875
67135
|
CustomInstructionsString: string;
|
|
@@ -67520,6 +67780,15 @@ export declare class CwAnomalyDetector_SingleMetricAnomalyDetector {
|
|
|
67520
67780
|
});
|
|
67521
67781
|
}
|
|
67522
67782
|
|
|
67783
|
+
export declare class CwDashboard_Tag {
|
|
67784
|
+
constructor(props: {
|
|
67785
|
+
/** A unique identifier for the tag. The combination of tag keys and values can help you organize and categorize your resources. */
|
|
67786
|
+
Key: string;
|
|
67787
|
+
/** The value for the specified tag key. */
|
|
67788
|
+
Value: string;
|
|
67789
|
+
});
|
|
67790
|
+
}
|
|
67791
|
+
|
|
67523
67792
|
export declare class Daemon_DaemonAlarmConfiguration {
|
|
67524
67793
|
constructor(props: {
|
|
67525
67794
|
/** The CloudWatch alarm names to monitor during a daemon deployment. */
|
|
@@ -67798,8 +68067,7 @@ export declare class DaemonTaskDefinition_LinuxParameters {
|
|
|
67798
68067
|
Devices?: DaemonTaskDefinition_Device[];
|
|
67799
68068
|
/** Run an ``init`` process inside the container that forwards signals and reaps processes. This parameter maps to the ``--init`` option to docker run. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: ``sudo docker version --format '{{.Server.APIVersion}}'`` */
|
|
67800
68069
|
InitProcessEnabled?: boolean;
|
|
67801
|
-
/** The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the ``--tmpfs`` option to docker run.
|
|
67802
|
-
If you're using tasks that use the Fargate launch type, the ``tmpfs`` parameter isn't supported. */
|
|
68070
|
+
/** The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the ``--tmpfs`` option to docker run. */
|
|
67803
68071
|
Tmpfs?: DaemonTaskDefinition_Tmpfs[];
|
|
67804
68072
|
});
|
|
67805
68073
|
}
|
|
@@ -67921,7 +68189,8 @@ export declare class DaemonTaskDefinition_Volume {
|
|
|
67921
68189
|
/** The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.
|
|
67922
68190
|
When using a volume configured at launch, the ``name`` is required and must also be specified as the volume name in the ``ServiceVolumeConfiguration`` or ``TaskVolumeConfiguration`` parameter when creating your service or standalone task.
|
|
67923
68191
|
For all other types of volumes, this name is referenced in the ``sourceVolume`` parameter of the ``mountPoints`` object in the container definition.
|
|
67924
|
-
When a volume is using the ``efsVolumeConfiguration``, the name is required.
|
|
68192
|
+
When a volume is using the ``efsVolumeConfiguration``, the name is required.
|
|
68193
|
+
When a volume is using the ``s3filesVolumeConfiguration``, the name is required. */
|
|
67925
68194
|
Name?: string;
|
|
67926
68195
|
});
|
|
67927
68196
|
}
|
|
@@ -70126,6 +70395,12 @@ export declare class Dataset {
|
|
|
70126
70395
|
});
|
|
70127
70396
|
}
|
|
70128
70397
|
|
|
70398
|
+
export declare class DataSet_AdditionalNotes {
|
|
70399
|
+
constructor(props: {
|
|
70400
|
+
Text?: string;
|
|
70401
|
+
});
|
|
70402
|
+
}
|
|
70403
|
+
|
|
70129
70404
|
export declare class DataSet_AggregateOperation {
|
|
70130
70405
|
constructor(props: {
|
|
70131
70406
|
Aggregations: DataSet_Aggregation[];
|
|
@@ -70214,6 +70489,20 @@ export declare class DataSet_ColumnLevelPermissionRule {
|
|
|
70214
70489
|
});
|
|
70215
70490
|
}
|
|
70216
70491
|
|
|
70492
|
+
export declare class DataSet_ColumnSemanticProperty {
|
|
70493
|
+
constructor(props: {
|
|
70494
|
+
AdditionalNotes?: DataSet_AdditionalNotes;
|
|
70495
|
+
Description?: DataSet_ColumnDescription;
|
|
70496
|
+
SemanticType?: DataSet_ColumnSemanticType;
|
|
70497
|
+
});
|
|
70498
|
+
}
|
|
70499
|
+
|
|
70500
|
+
export declare class DataSet_ColumnSemanticType {
|
|
70501
|
+
constructor(props: {
|
|
70502
|
+
GeographicalRole?: DataSet_GeoSpatialDataRole;
|
|
70503
|
+
});
|
|
70504
|
+
}
|
|
70505
|
+
|
|
70217
70506
|
export declare class DataSet_ColumnTag {
|
|
70218
70507
|
constructor(props: {
|
|
70219
70508
|
ColumnDescription?: DataSet_ColumnDescription;
|
|
@@ -70237,6 +70526,12 @@ export declare class DataSet_CreateColumnsOperation {
|
|
|
70237
70526
|
});
|
|
70238
70527
|
}
|
|
70239
70528
|
|
|
70529
|
+
export declare class DataSet_CustomInstruction {
|
|
70530
|
+
constructor(props: {
|
|
70531
|
+
InlineCustomInstruction?: DataSet_InlineCustomInstruction;
|
|
70532
|
+
});
|
|
70533
|
+
}
|
|
70534
|
+
|
|
70240
70535
|
export declare class DataSet_CustomSql {
|
|
70241
70536
|
constructor(props: {
|
|
70242
70537
|
/** <p>The column schema from the SQL query result set.</p> */
|
|
@@ -70371,6 +70666,19 @@ export declare class DataSet_DataSetRefreshProperties {
|
|
|
70371
70666
|
});
|
|
70372
70667
|
}
|
|
70373
70668
|
|
|
70669
|
+
export declare class DataSet_DataSetSemanticDescription {
|
|
70670
|
+
constructor(props: {
|
|
70671
|
+
Text: string;
|
|
70672
|
+
});
|
|
70673
|
+
}
|
|
70674
|
+
|
|
70675
|
+
export declare class DataSet_DataSetSemanticMetadata {
|
|
70676
|
+
constructor(props: {
|
|
70677
|
+
CustomInstructions?: DataSet_CustomInstruction[];
|
|
70678
|
+
Description?: DataSet_DataSetSemanticDescription;
|
|
70679
|
+
});
|
|
70680
|
+
}
|
|
70681
|
+
|
|
70374
70682
|
export declare class DataSet_DataSetStringComparisonFilterCondition {
|
|
70375
70683
|
constructor(props: {
|
|
70376
70684
|
Operator: DataSet_DataSetStringComparisonFilterOperator;
|
|
@@ -70533,6 +70841,13 @@ export declare class DataSet_IngestionWaitPolicy {
|
|
|
70533
70841
|
});
|
|
70534
70842
|
}
|
|
70535
70843
|
|
|
70844
|
+
export declare class DataSet_InlineCustomInstruction {
|
|
70845
|
+
constructor(props: {
|
|
70846
|
+
InstructionText: string;
|
|
70847
|
+
UploadedDocumentMetadata?: DataSet_UploadedDocumentMetadata;
|
|
70848
|
+
});
|
|
70849
|
+
}
|
|
70850
|
+
|
|
70536
70851
|
export declare class DataSet_InputColumn {
|
|
70537
70852
|
constructor(props: {
|
|
70538
70853
|
/** <p>The name of this column in the underlying data source.</p> */
|
|
@@ -70867,6 +71182,7 @@ export declare class DataSet_SaaSTable {
|
|
|
70867
71182
|
|
|
70868
71183
|
export declare class DataSet_SemanticModelConfiguration {
|
|
70869
71184
|
constructor(props: {
|
|
71185
|
+
SemanticMetadata?: DataSet_DataSetSemanticMetadata[];
|
|
70870
71186
|
TableMap?: Record<string, unknown>;
|
|
70871
71187
|
});
|
|
70872
71188
|
}
|
|
@@ -70876,6 +71192,14 @@ export declare class DataSet_SemanticTable {
|
|
|
70876
71192
|
Alias: string;
|
|
70877
71193
|
DestinationTableId: string;
|
|
70878
71194
|
RowLevelPermissionConfiguration?: DataSet_RowLevelPermissionConfiguration;
|
|
71195
|
+
SemanticMetadata?: DataSet_TableSemanticMetadata;
|
|
71196
|
+
});
|
|
71197
|
+
}
|
|
71198
|
+
|
|
71199
|
+
export declare class DataSet_SharedColumnSemanticMetadata {
|
|
71200
|
+
constructor(props: {
|
|
71201
|
+
ColumnProperties: DataSet_ColumnSemanticProperty[];
|
|
71202
|
+
ColumnNames?: string[];
|
|
70879
71203
|
});
|
|
70880
71204
|
}
|
|
70881
71205
|
|
|
@@ -70911,6 +71235,12 @@ export declare class DataSet_TablePathElement {
|
|
|
70911
71235
|
});
|
|
70912
71236
|
}
|
|
70913
71237
|
|
|
71238
|
+
export declare class DataSet_TableSemanticMetadata {
|
|
71239
|
+
constructor(props: {
|
|
71240
|
+
ColumnMetadata?: DataSet_SharedColumnSemanticMetadata[];
|
|
71241
|
+
});
|
|
71242
|
+
}
|
|
71243
|
+
|
|
70914
71244
|
export declare class DataSet_Tag {
|
|
70915
71245
|
constructor(props: {
|
|
70916
71246
|
/** <p>Tag key.</p> */
|
|
@@ -70995,6 +71325,12 @@ export declare class DataSet_UntagColumnOperation {
|
|
|
70995
71325
|
});
|
|
70996
71326
|
}
|
|
70997
71327
|
|
|
71328
|
+
export declare class DataSet_UploadedDocumentMetadata {
|
|
71329
|
+
constructor(props: {
|
|
71330
|
+
Name?: string;
|
|
71331
|
+
});
|
|
71332
|
+
}
|
|
71333
|
+
|
|
70998
71334
|
export declare class DataSet_UploadSettings {
|
|
70999
71335
|
constructor(props: {
|
|
71000
71336
|
/** <p>Whether the file has a header row, or the files each have a header row.</p> */
|
|
@@ -71173,6 +71509,19 @@ export declare class DataSetSchema {
|
|
|
71173
71509
|
});
|
|
71174
71510
|
}
|
|
71175
71511
|
|
|
71512
|
+
export declare class DataSetSemanticDescription {
|
|
71513
|
+
constructor(props: {
|
|
71514
|
+
Text: string;
|
|
71515
|
+
});
|
|
71516
|
+
}
|
|
71517
|
+
|
|
71518
|
+
export declare class DataSetSemanticMetadata {
|
|
71519
|
+
constructor(props: {
|
|
71520
|
+
CustomInstructions?: DataSet_CustomInstruction[];
|
|
71521
|
+
Description?: DataSet_DataSetSemanticDescription;
|
|
71522
|
+
});
|
|
71523
|
+
}
|
|
71524
|
+
|
|
71176
71525
|
export declare class DatasetSource {
|
|
71177
71526
|
constructor(props: {
|
|
71178
71527
|
/** The format of the dataset source associated with the dataset. */
|
|
@@ -71296,6 +71645,13 @@ export declare class DataSourceToIndexFieldMapping {
|
|
|
71296
71645
|
});
|
|
71297
71646
|
}
|
|
71298
71647
|
|
|
71648
|
+
export declare class DataSourceType {
|
|
71649
|
+
constructor(props: {
|
|
71650
|
+
InlineExamples?: BedrockAgentCoreDataset_InlineExamplesSource;
|
|
71651
|
+
S3Source?: BedrockAgentCoreDataset_S3Source;
|
|
71652
|
+
});
|
|
71653
|
+
}
|
|
71654
|
+
|
|
71299
71655
|
export declare class DataStorage {
|
|
71300
71656
|
constructor(props: {
|
|
71301
71657
|
/** The unit of cached data capacity of the Serverless Cache. */
|
|
@@ -73909,9 +74265,6 @@ export declare class DeploymentIoTJobConfiguration {
|
|
|
73909
74265
|
|
|
73910
74266
|
export declare class DeploymentLifecycleHook {
|
|
73911
74267
|
constructor(props: {
|
|
73912
|
-
/** The Amazon Resource Name (ARN) of the hook target. Currently, only Lambda function ARNs are supported.
|
|
73913
|
-
You must provide this parameter when configuring a deployment lifecycle hook. */
|
|
73914
|
-
HookTargetArn: string;
|
|
73915
74268
|
/** The lifecycle stages at which to run the hook. Choose from these valid values:
|
|
73916
74269
|
+ RECONCILE_SERVICE
|
|
73917
74270
|
The reconciliation stage that only happens when you start a new service deployment with more than 1 service revision in an ACTIVE state.
|
|
@@ -73927,22 +74280,37 @@ export declare class DeploymentLifecycleHook {
|
|
|
73927
74280
|
You can use a lifecycle hook for this stage.
|
|
73928
74281
|
+ POST_TEST_TRAFFIC_SHIFT
|
|
73929
74282
|
The test traffic shift is complete. The green service revision handles 100% of the test traffic.
|
|
74283
|
+
You can use a lifecycle hook for this stage.
|
|
74284
|
+
+ PRE_PRODUCTION_TRAFFIC_SHIFT
|
|
74285
|
+
Occurs before production traffic shift. For linear and canary deployments, this stage is invoked before every traffic shift step.
|
|
73930
74286
|
You can use a lifecycle hook for this stage.
|
|
73931
74287
|
+ PRODUCTION_TRAFFIC_SHIFT
|
|
73932
|
-
Production traffic is shifting to the green service revision. The green service revision is migrating from 0% to 100% of production traffic.
|
|
74288
|
+
Production traffic is shifting to the green service revision. The green service revision is migrating from 0% to 100% of production traffic. For linear and canary deployments, this stage is invoked at every traffic shift step.
|
|
73933
74289
|
You can use a lifecycle hook for this stage.
|
|
73934
74290
|
+ POST_PRODUCTION_TRAFFIC_SHIFT
|
|
73935
74291
|
The production traffic shift is complete.
|
|
73936
74292
|
You can use a lifecycle hook for this stage.
|
|
73937
74293
|
|
|
73938
|
-
|
|
73939
|
-
|
|
73940
|
-
|
|
73941
|
-
For more information, see [Permissions required for Lambda functions in Amazon ECS blue/green deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/blue-green-permissions.html) in the *Amazon Elastic Container Service Developer Guide*. */
|
|
73942
|
-
RoleArn: string;
|
|
74294
|
+
``PAUSE`` hooks cannot be configured at ``TEST_TRAFFIC_SHIFT`` or ``PRODUCTION_TRAFFIC_SHIFT`` stages. These stages are only valid for ``AWS_LAMBDA`` hooks.
|
|
74295
|
+
You must provide this parameter when configuring a deployment lifecycle hook. */
|
|
74296
|
+
LifecycleStages: "POST_PRODUCTION_TRAFFIC_SHIFT" | "POST_SCALE_UP" | "POST_TEST_TRAFFIC_SHIFT" | "PRE_PRODUCTION_TRAFFIC_SHIFT" | "PRE_SCALE_UP" | "PRODUCTION_TRAFFIC_SHIFT" | "RECONCILE_SERVICE" | "TEST_TRAFFIC_SHIFT"[];
|
|
73943
74297
|
/** Use this field to specify custom parameters that ECS passes to your hook target invocations (such as a Lambda function).
|
|
73944
74298
|
This field must be a JSON object as a string. */
|
|
73945
74299
|
HookDetails?: string;
|
|
74300
|
+
/** The Amazon Resource Name (ARN) of the hook target. For ``AWS_LAMBDA`` hooks, this is the Lambda function ARN. This field is not applicable for ``PAUSE`` hooks.
|
|
74301
|
+
You must provide this parameter when configuring an ``AWS_LAMBDA`` lifecycle hook. */
|
|
74302
|
+
HookTargetArn?: string;
|
|
74303
|
+
/** The Amazon Resource Name (ARN) of the IAM role that grants Amazon ECS permission to call Lambda functions on your behalf.
|
|
74304
|
+
For more information, see [Permissions required for Lambda functions in Amazon ECS blue/green deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/blue-green-permissions.html) in the *Amazon Elastic Container Service Developer Guide*. */
|
|
74305
|
+
RoleArn?: string;
|
|
74306
|
+
/** The type of action the lifecycle hook performs. Valid values are:
|
|
74307
|
+
+ ``AWS_LAMBDA`` - Invokes a Lambda function at the specified lifecycle stage. This is the default value.
|
|
74308
|
+
+ ``PAUSE`` - Pauses the deployment at the specified lifecycle stage until you call ``ContinueServiceDeployment`` to continue or roll back.
|
|
74309
|
+
|
|
74310
|
+
This field is optional. If not specified, the default value is ``AWS_LAMBDA``. */
|
|
74311
|
+
TargetType?: "AWS_LAMBDA" | "PAUSE";
|
|
74312
|
+
/** The timeout configuration for the lifecycle hook. This specifies how long Amazon ECS waits before taking the timeout action if the hook is not resolved. */
|
|
74313
|
+
TimeoutConfiguration?: EcsService_HookTimeoutConfig;
|
|
73946
74314
|
});
|
|
73947
74315
|
}
|
|
73948
74316
|
|
|
@@ -74698,29 +75066,40 @@ export declare class DevOpsAgentAssociation_KeyValuePair {
|
|
|
74698
75066
|
|
|
74699
75067
|
export declare class DevOpsAgentAssociation_MCPServerConfiguration {
|
|
74700
75068
|
constructor(props: {
|
|
74701
|
-
/** MCP server endpoint URL */
|
|
74702
|
-
Endpoint: string;
|
|
74703
|
-
/** The name of the MCP server */
|
|
74704
|
-
Name: string;
|
|
74705
75069
|
/** List of MCP tools that can be used with the association */
|
|
74706
75070
|
Tools: string[];
|
|
74707
75071
|
/** The description of the MCP server */
|
|
74708
75072
|
Description?: string;
|
|
74709
75073
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
74710
75074
|
EnableWebhookUpdates?: boolean;
|
|
75075
|
+
/** MCP server endpoint URL */
|
|
75076
|
+
Endpoint?: string;
|
|
75077
|
+
/** The name of the MCP server */
|
|
75078
|
+
Name?: string;
|
|
74711
75079
|
});
|
|
74712
75080
|
}
|
|
74713
75081
|
|
|
74714
75082
|
export declare class DevOpsAgentAssociation_MCPServerDatadogConfiguration {
|
|
74715
75083
|
constructor(props: {
|
|
74716
|
-
/** MCP server endpoint URL */
|
|
74717
|
-
Endpoint: string;
|
|
74718
|
-
/** The name of the MCP server */
|
|
74719
|
-
Name: string;
|
|
74720
75084
|
/** The description of the MCP server */
|
|
74721
75085
|
Description?: string;
|
|
74722
75086
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
74723
75087
|
EnableWebhookUpdates?: boolean;
|
|
75088
|
+
/** MCP server endpoint URL */
|
|
75089
|
+
Endpoint?: string;
|
|
75090
|
+
/** The name of the MCP server */
|
|
75091
|
+
Name?: string;
|
|
75092
|
+
});
|
|
75093
|
+
}
|
|
75094
|
+
|
|
75095
|
+
export declare class DevOpsAgentAssociation_MCPServerGrafanaConfiguration {
|
|
75096
|
+
constructor(props: {
|
|
75097
|
+
/** MCP server endpoint URL */
|
|
75098
|
+
Endpoint: string;
|
|
75099
|
+
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
75100
|
+
EnableWebhookUpdates?: boolean;
|
|
75101
|
+
/** List of tool categories to enable for the Grafana MCP server */
|
|
75102
|
+
Tools?: "alerting" | "annotations" | "asserts" | "cloudwatch" | "dashboard" | "datasource" | "elasticsearch" | "examples" | "incident" | "loki" | "navigation" | "oncall" | "prometheus" | "pyroscope" | "rendering" | "runpanelquery" | "search" | "searchlogs" | "sift"[];
|
|
74724
75103
|
});
|
|
74725
75104
|
}
|
|
74726
75105
|
|
|
@@ -74742,14 +75121,14 @@ export declare class DevOpsAgentAssociation_MCPServerSigV4Configuration {
|
|
|
74742
75121
|
|
|
74743
75122
|
export declare class DevOpsAgentAssociation_MCPServerSplunkConfiguration {
|
|
74744
75123
|
constructor(props: {
|
|
74745
|
-
/** MCP server endpoint URL */
|
|
74746
|
-
Endpoint: string;
|
|
74747
|
-
/** The name of the MCP server */
|
|
74748
|
-
Name: string;
|
|
74749
75124
|
/** The description of the MCP server */
|
|
74750
75125
|
Description?: string;
|
|
74751
75126
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
74752
75127
|
EnableWebhookUpdates?: boolean;
|
|
75128
|
+
/** MCP server endpoint URL */
|
|
75129
|
+
Endpoint?: string;
|
|
75130
|
+
/** The name of the MCP server */
|
|
75131
|
+
Name?: string;
|
|
74753
75132
|
});
|
|
74754
75133
|
}
|
|
74755
75134
|
|
|
@@ -74886,6 +75265,18 @@ export declare class DevOpsAgentService_MCPServerDetails {
|
|
|
74886
75265
|
});
|
|
74887
75266
|
}
|
|
74888
75267
|
|
|
75268
|
+
export declare class DevOpsAgentService_MCPServerGrafanaDetails {
|
|
75269
|
+
constructor(props: {
|
|
75270
|
+
AuthorizationConfig: Record<string, unknown>;
|
|
75271
|
+
/** MCP server endpoint URL */
|
|
75272
|
+
Endpoint: string;
|
|
75273
|
+
/** MCP server name */
|
|
75274
|
+
Name: string;
|
|
75275
|
+
/** Optional description for the MCP server */
|
|
75276
|
+
Description?: string;
|
|
75277
|
+
});
|
|
75278
|
+
}
|
|
75279
|
+
|
|
74889
75280
|
export declare class DevOpsAgentService_MCPServerOAuthClientCredentialsConfig {
|
|
74890
75281
|
constructor(props: {
|
|
74891
75282
|
/** OAuth client ID */
|
|
@@ -75042,6 +75433,19 @@ export declare class DevOpsAgentService_RegisteredMCPServerDetails {
|
|
|
75042
75433
|
});
|
|
75043
75434
|
}
|
|
75044
75435
|
|
|
75436
|
+
export declare class DevOpsAgentService_RegisteredMCPServerGrafanaDetails {
|
|
75437
|
+
constructor(props: {
|
|
75438
|
+
/** MCP server authorization method */
|
|
75439
|
+
AuthorizationMethod: "bearer-token";
|
|
75440
|
+
/** MCP server endpoint URL */
|
|
75441
|
+
Endpoint: string;
|
|
75442
|
+
/** Optional description for the MCP server */
|
|
75443
|
+
Description?: string;
|
|
75444
|
+
/** MCP server name */
|
|
75445
|
+
Name?: string;
|
|
75446
|
+
});
|
|
75447
|
+
}
|
|
75448
|
+
|
|
75045
75449
|
export declare class DevOpsAgentService_RegisteredMCPServerSigV4Details {
|
|
75046
75450
|
constructor(props: {
|
|
75047
75451
|
/** The MCP server endpoint URL */
|
|
@@ -75299,10 +75703,10 @@ export declare class DirectoryBucket_LifecycleConfiguration {
|
|
|
75299
75703
|
|
|
75300
75704
|
export declare class DirectoryBucket_MetricsConfiguration {
|
|
75301
75705
|
constructor(props: {
|
|
75706
|
+
/** The ID used to identify the metrics configuration. */
|
|
75707
|
+
Id: string;
|
|
75302
75708
|
/** The access point ARN used when evaluating a metrics filter. */
|
|
75303
75709
|
AccessPointArn?: string;
|
|
75304
|
-
/** The ID used to identify the metrics configuration. */
|
|
75305
|
-
Id?: string;
|
|
75306
75710
|
/** The prefix used when evaluating a metrics filter. */
|
|
75307
75711
|
Prefix?: string;
|
|
75308
75712
|
});
|
|
@@ -78324,7 +78728,7 @@ export declare class EcsService_DeploymentConfiguration {
|
|
|
78324
78728
|
/** The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
78325
78729
|
The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide* */
|
|
78326
78730
|
DeploymentCircuitBreaker?: EcsService_DeploymentCircuitBreaker;
|
|
78327
|
-
/** An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle. */
|
|
78731
|
+
/** An array of deployment lifecycle hook objects to run custom logic or pause the deployment at specific stages of the deployment lifecycle. */
|
|
78328
78732
|
LifecycleHooks?: EcsService_DeploymentLifecycleHook[];
|
|
78329
78733
|
/** Configuration for linear deployment strategy. Only valid when the deployment strategy is ``LINEAR``. This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step. */
|
|
78330
78734
|
LinearConfiguration?: EcsService_LinearConfiguration;
|
|
@@ -78402,9 +78806,6 @@ export declare class EcsService_DeploymentController {
|
|
|
78402
78806
|
|
|
78403
78807
|
export declare class EcsService_DeploymentLifecycleHook {
|
|
78404
78808
|
constructor(props: {
|
|
78405
|
-
/** The Amazon Resource Name (ARN) of the hook target. Currently, only Lambda function ARNs are supported.
|
|
78406
|
-
You must provide this parameter when configuring a deployment lifecycle hook. */
|
|
78407
|
-
HookTargetArn: string;
|
|
78408
78809
|
/** The lifecycle stages at which to run the hook. Choose from these valid values:
|
|
78409
78810
|
+ RECONCILE_SERVICE
|
|
78410
78811
|
The reconciliation stage that only happens when you start a new service deployment with more than 1 service revision in an ACTIVE state.
|
|
@@ -78420,22 +78821,37 @@ export declare class EcsService_DeploymentLifecycleHook {
|
|
|
78420
78821
|
You can use a lifecycle hook for this stage.
|
|
78421
78822
|
+ POST_TEST_TRAFFIC_SHIFT
|
|
78422
78823
|
The test traffic shift is complete. The green service revision handles 100% of the test traffic.
|
|
78824
|
+
You can use a lifecycle hook for this stage.
|
|
78825
|
+
+ PRE_PRODUCTION_TRAFFIC_SHIFT
|
|
78826
|
+
Occurs before production traffic shift. For linear and canary deployments, this stage is invoked before every traffic shift step.
|
|
78423
78827
|
You can use a lifecycle hook for this stage.
|
|
78424
78828
|
+ PRODUCTION_TRAFFIC_SHIFT
|
|
78425
|
-
Production traffic is shifting to the green service revision. The green service revision is migrating from 0% to 100% of production traffic.
|
|
78829
|
+
Production traffic is shifting to the green service revision. The green service revision is migrating from 0% to 100% of production traffic. For linear and canary deployments, this stage is invoked at every traffic shift step.
|
|
78426
78830
|
You can use a lifecycle hook for this stage.
|
|
78427
78831
|
+ POST_PRODUCTION_TRAFFIC_SHIFT
|
|
78428
78832
|
The production traffic shift is complete.
|
|
78429
78833
|
You can use a lifecycle hook for this stage.
|
|
78430
78834
|
|
|
78431
|
-
|
|
78432
|
-
|
|
78433
|
-
|
|
78434
|
-
For more information, see [Permissions required for Lambda functions in Amazon ECS blue/green deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/blue-green-permissions.html) in the *Amazon Elastic Container Service Developer Guide*. */
|
|
78435
|
-
RoleArn: string;
|
|
78835
|
+
``PAUSE`` hooks cannot be configured at ``TEST_TRAFFIC_SHIFT`` or ``PRODUCTION_TRAFFIC_SHIFT`` stages. These stages are only valid for ``AWS_LAMBDA`` hooks.
|
|
78836
|
+
You must provide this parameter when configuring a deployment lifecycle hook. */
|
|
78837
|
+
LifecycleStages: "POST_PRODUCTION_TRAFFIC_SHIFT" | "POST_SCALE_UP" | "POST_TEST_TRAFFIC_SHIFT" | "PRE_PRODUCTION_TRAFFIC_SHIFT" | "PRE_SCALE_UP" | "PRODUCTION_TRAFFIC_SHIFT" | "RECONCILE_SERVICE" | "TEST_TRAFFIC_SHIFT"[];
|
|
78436
78838
|
/** Use this field to specify custom parameters that ECS passes to your hook target invocations (such as a Lambda function).
|
|
78437
78839
|
This field must be a JSON object as a string. */
|
|
78438
78840
|
HookDetails?: string;
|
|
78841
|
+
/** The Amazon Resource Name (ARN) of the hook target. For ``AWS_LAMBDA`` hooks, this is the Lambda function ARN. This field is not applicable for ``PAUSE`` hooks.
|
|
78842
|
+
You must provide this parameter when configuring an ``AWS_LAMBDA`` lifecycle hook. */
|
|
78843
|
+
HookTargetArn?: string;
|
|
78844
|
+
/** The Amazon Resource Name (ARN) of the IAM role that grants Amazon ECS permission to call Lambda functions on your behalf.
|
|
78845
|
+
For more information, see [Permissions required for Lambda functions in Amazon ECS blue/green deployments](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/blue-green-permissions.html) in the *Amazon Elastic Container Service Developer Guide*. */
|
|
78846
|
+
RoleArn?: string;
|
|
78847
|
+
/** The type of action the lifecycle hook performs. Valid values are:
|
|
78848
|
+
+ ``AWS_LAMBDA`` - Invokes a Lambda function at the specified lifecycle stage. This is the default value.
|
|
78849
|
+
+ ``PAUSE`` - Pauses the deployment at the specified lifecycle stage until you call ``ContinueServiceDeployment`` to continue or roll back.
|
|
78850
|
+
|
|
78851
|
+
This field is optional. If not specified, the default value is ``AWS_LAMBDA``. */
|
|
78852
|
+
TargetType?: "AWS_LAMBDA" | "PAUSE";
|
|
78853
|
+
/** The timeout configuration for the lifecycle hook. This specifies how long Amazon ECS waits before taking the timeout action if the hook is not resolved. */
|
|
78854
|
+
TimeoutConfiguration?: EcsService_HookTimeoutConfig;
|
|
78439
78855
|
});
|
|
78440
78856
|
}
|
|
78441
78857
|
|
|
@@ -78459,6 +78875,13 @@ export declare class EcsService_ForceNewDeployment {
|
|
|
78459
78875
|
});
|
|
78460
78876
|
}
|
|
78461
78877
|
|
|
78878
|
+
export declare class EcsService_HookTimeoutConfig {
|
|
78879
|
+
constructor(props: {
|
|
78880
|
+
Action?: "CONTINUE" | "ROLLBACK";
|
|
78881
|
+
TimeoutInMinutes?: number;
|
|
78882
|
+
});
|
|
78883
|
+
}
|
|
78884
|
+
|
|
78462
78885
|
export declare class EcsService_LinearConfiguration {
|
|
78463
78886
|
constructor(props: {
|
|
78464
78887
|
/** The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic. */
|
|
@@ -78877,6 +79300,13 @@ export declare class EFSAccessPoint_RootDirectory {
|
|
|
78877
79300
|
});
|
|
78878
79301
|
}
|
|
78879
79302
|
|
|
79303
|
+
export declare class EfsAccessPointConfiguration {
|
|
79304
|
+
constructor(props: {
|
|
79305
|
+
AccessPointArn: string;
|
|
79306
|
+
MountPath: string;
|
|
79307
|
+
});
|
|
79308
|
+
}
|
|
79309
|
+
|
|
78880
79310
|
export declare class EFSAuthorizationConfig {
|
|
78881
79311
|
constructor(props: {
|
|
78882
79312
|
AccessPointId?: string;
|
|
@@ -81049,6 +81479,14 @@ export declare class EndpointConfig_ExplainerConfig {
|
|
|
81049
81479
|
});
|
|
81050
81480
|
}
|
|
81051
81481
|
|
|
81482
|
+
export declare class EndpointConfig_InstancePools {
|
|
81483
|
+
constructor(props: {
|
|
81484
|
+
InstanceType: string;
|
|
81485
|
+
Priority: number;
|
|
81486
|
+
ModelNameOverride?: string;
|
|
81487
|
+
});
|
|
81488
|
+
}
|
|
81489
|
+
|
|
81052
81490
|
export declare class EndpointConfig_ManagedInstanceScaling {
|
|
81053
81491
|
constructor(props: {
|
|
81054
81492
|
MaxInstanceCount?: number;
|
|
@@ -81066,12 +81504,14 @@ export declare class EndpointConfig_ProductionVariant {
|
|
|
81066
81504
|
InferenceAmiVersion?: string;
|
|
81067
81505
|
InitialInstanceCount?: number;
|
|
81068
81506
|
InitialVariantWeight?: number;
|
|
81507
|
+
InstancePools?: EndpointConfig_InstancePools[];
|
|
81069
81508
|
InstanceType?: string;
|
|
81070
81509
|
ManagedInstanceScaling?: EndpointConfig_ManagedInstanceScaling;
|
|
81071
81510
|
ModelDataDownloadTimeoutInSeconds?: number;
|
|
81072
81511
|
ModelName?: string;
|
|
81073
81512
|
RoutingConfig?: EndpointConfig_RoutingConfig;
|
|
81074
81513
|
ServerlessConfig?: EndpointConfig_ServerlessConfig;
|
|
81514
|
+
VariantInstanceProvisionTimeoutInSeconds?: number;
|
|
81075
81515
|
VolumeSizeInGB?: number;
|
|
81076
81516
|
});
|
|
81077
81517
|
}
|
|
@@ -81837,11 +82277,11 @@ export declare class EvaluationForm_EvaluationFormLanguageConfiguration {
|
|
|
81837
82277
|
|
|
81838
82278
|
export declare class EvaluationForm_EvaluationFormMultiSelectQuestionAutomation {
|
|
81839
82279
|
constructor(props: {
|
|
81840
|
-
/** Automation options for the multi-select question. */
|
|
81841
|
-
Options: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
81842
82280
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
81843
82281
|
/** Reference IDs of default options. */
|
|
81844
82282
|
DefaultOptionRefIds?: any;
|
|
82283
|
+
/** Automation options for the multi-select question. */
|
|
82284
|
+
Options?: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
81845
82285
|
});
|
|
81846
82286
|
}
|
|
81847
82287
|
|
|
@@ -81980,15 +82420,15 @@ export declare class EvaluationForm_EvaluationFormSection {
|
|
|
81980
82420
|
|
|
81981
82421
|
export declare class EvaluationForm_EvaluationFormSingleSelectQuestionAutomation {
|
|
81982
82422
|
constructor(props: {
|
|
81983
|
-
/** The automation options of the single select question.
|
|
81984
|
-
*Minimum*: 1
|
|
81985
|
-
*Maximum*: 20 */
|
|
81986
|
-
Options: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
81987
82423
|
/** Automation answer source. */
|
|
81988
82424
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
81989
82425
|
/** The identifier of the default answer option, when none of the automation options match the criteria.
|
|
81990
82426
|
*Length Constraints*: Minimum length of 1. Maximum length of 40. */
|
|
81991
82427
|
DefaultOptionRefId?: string;
|
|
82428
|
+
/** The automation options of the single select question.
|
|
82429
|
+
*Minimum*: 1
|
|
82430
|
+
*Maximum*: 20 */
|
|
82431
|
+
Options?: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
81992
82432
|
});
|
|
81993
82433
|
}
|
|
81994
82434
|
|
|
@@ -82213,11 +82653,11 @@ export declare class EvaluationFormLanguageConfiguration {
|
|
|
82213
82653
|
|
|
82214
82654
|
export declare class EvaluationFormMultiSelectQuestionAutomation {
|
|
82215
82655
|
constructor(props: {
|
|
82216
|
-
/** Automation options for the multi-select question. */
|
|
82217
|
-
Options: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
82218
82656
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
82219
82657
|
/** Reference IDs of default options. */
|
|
82220
82658
|
DefaultOptionRefIds?: any;
|
|
82659
|
+
/** Automation options for the multi-select question. */
|
|
82660
|
+
Options?: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
82221
82661
|
});
|
|
82222
82662
|
}
|
|
82223
82663
|
|
|
@@ -82356,15 +82796,15 @@ export declare class EvaluationFormSection {
|
|
|
82356
82796
|
|
|
82357
82797
|
export declare class EvaluationFormSingleSelectQuestionAutomation {
|
|
82358
82798
|
constructor(props: {
|
|
82359
|
-
/** The automation options of the single select question.
|
|
82360
|
-
*Minimum*: 1
|
|
82361
|
-
*Maximum*: 20 */
|
|
82362
|
-
Options: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
82363
82799
|
/** Automation answer source. */
|
|
82364
82800
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
82365
82801
|
/** The identifier of the default answer option, when none of the automation options match the criteria.
|
|
82366
82802
|
*Length Constraints*: Minimum length of 1. Maximum length of 40. */
|
|
82367
82803
|
DefaultOptionRefId?: string;
|
|
82804
|
+
/** The automation options of the single select question.
|
|
82805
|
+
*Minimum*: 1
|
|
82806
|
+
*Maximum*: 20 */
|
|
82807
|
+
Options?: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
82368
82808
|
});
|
|
82369
82809
|
}
|
|
82370
82810
|
|
|
@@ -83625,6 +84065,12 @@ export declare class ExecutionApprovalConfiguration {
|
|
|
83625
84065
|
});
|
|
83626
84066
|
}
|
|
83627
84067
|
|
|
84068
|
+
export declare class ExecutionControls {
|
|
84069
|
+
constructor(props: {
|
|
84070
|
+
SsmControls?: RemediationConfiguration_SsmControls;
|
|
84071
|
+
});
|
|
84072
|
+
}
|
|
84073
|
+
|
|
83628
84074
|
export declare class ExecutionPlan_CapacityUnitsConfiguration {
|
|
83629
84075
|
constructor(props: {
|
|
83630
84076
|
RescoreCapacityUnits: number;
|
|
@@ -84962,12 +85408,6 @@ export declare class FileSource {
|
|
|
84962
85408
|
});
|
|
84963
85409
|
}
|
|
84964
85410
|
|
|
84965
|
-
export declare class FilesystemConfiguration {
|
|
84966
|
-
constructor(props: {
|
|
84967
|
-
SessionStorage?: Runtime_SessionStorageConfiguration;
|
|
84968
|
-
});
|
|
84969
|
-
}
|
|
84970
|
-
|
|
84971
85411
|
export declare class FileSystemGID {
|
|
84972
85412
|
constructor(props: {
|
|
84973
85413
|
/** The GID of the file system user. */
|
|
@@ -85199,6 +85639,20 @@ export declare class Firewall_Tag {
|
|
|
85199
85639
|
});
|
|
85200
85640
|
}
|
|
85201
85641
|
|
|
85642
|
+
export declare class FirewallAdvancedContentCategoryConfig {
|
|
85643
|
+
constructor(props: {
|
|
85644
|
+
/** The content category value. */
|
|
85645
|
+
Category: string;
|
|
85646
|
+
});
|
|
85647
|
+
}
|
|
85648
|
+
|
|
85649
|
+
export declare class FirewallAdvancedThreatCategoryConfig {
|
|
85650
|
+
constructor(props: {
|
|
85651
|
+
/** The threat category value. */
|
|
85652
|
+
Category: string;
|
|
85653
|
+
});
|
|
85654
|
+
}
|
|
85655
|
+
|
|
85202
85656
|
export declare class FirewallPolicy_ActionDefinition {
|
|
85203
85657
|
constructor(props: {
|
|
85204
85658
|
PublishMetricAction?: FirewallPolicy_PublishMetricAction;
|
|
@@ -85282,6 +85736,20 @@ export declare class FirewallPolicy_Tag {
|
|
|
85282
85736
|
});
|
|
85283
85737
|
}
|
|
85284
85738
|
|
|
85739
|
+
export declare class FirewallRuleGroup_FirewallAdvancedContentCategoryConfig {
|
|
85740
|
+
constructor(props: {
|
|
85741
|
+
/** The content category value. */
|
|
85742
|
+
Category: string;
|
|
85743
|
+
});
|
|
85744
|
+
}
|
|
85745
|
+
|
|
85746
|
+
export declare class FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig {
|
|
85747
|
+
constructor(props: {
|
|
85748
|
+
/** The threat category value. */
|
|
85749
|
+
Category: string;
|
|
85750
|
+
});
|
|
85751
|
+
}
|
|
85752
|
+
|
|
85285
85753
|
export declare class FirewallRuleGroup_FirewallRule {
|
|
85286
85754
|
constructor(props: {
|
|
85287
85755
|
/** Rule Action */
|
|
@@ -85296,14 +85764,16 @@ export declare class FirewallRuleGroup_FirewallRule {
|
|
|
85296
85764
|
BlockOverrideTtl?: number;
|
|
85297
85765
|
/** BlockResponse */
|
|
85298
85766
|
BlockResponse?: "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
|
85299
|
-
/**
|
|
85767
|
+
/** ConfidenceThreshold */
|
|
85300
85768
|
ConfidenceThreshold?: "HIGH" | "LOW" | "MEDIUM";
|
|
85301
|
-
/**
|
|
85769
|
+
/** DnsThreatProtection */
|
|
85302
85770
|
DnsThreatProtection?: "DGA" | "DICTIONARY_DGA" | "DNS_TUNNELING";
|
|
85303
85771
|
/** ResourceId */
|
|
85304
85772
|
FirewallDomainListId?: string;
|
|
85305
85773
|
/** FirewallDomainRedirectionAction */
|
|
85306
85774
|
FirewallDomainRedirectionAction?: "INSPECT_REDIRECTION_DOMAIN" | "TRUST_REDIRECTION_DOMAIN";
|
|
85775
|
+
/** Advanced firewall rule type. Mutually exclusive with FirewallDomainListId and DnsThreatProtection/ConfidenceThreshold. */
|
|
85776
|
+
FirewallRuleType?: FirewallRuleGroup_FirewallRuleType;
|
|
85307
85777
|
/** ResourceId */
|
|
85308
85778
|
FirewallThreatProtectionId?: string;
|
|
85309
85779
|
/** Qtype */
|
|
@@ -85311,6 +85781,13 @@ export declare class FirewallRuleGroup_FirewallRule {
|
|
|
85311
85781
|
});
|
|
85312
85782
|
}
|
|
85313
85783
|
|
|
85784
|
+
export declare class FirewallRuleGroup_FirewallRuleType {
|
|
85785
|
+
constructor(props: {
|
|
85786
|
+
FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
|
|
85787
|
+
FirewallAdvancedThreatCategory?: FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig;
|
|
85788
|
+
});
|
|
85789
|
+
}
|
|
85790
|
+
|
|
85314
85791
|
export declare class FirewallRuleGroup_Tag {
|
|
85315
85792
|
constructor(props: {
|
|
85316
85793
|
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
@@ -85329,6 +85806,13 @@ export declare class FirewallRuleGroupAssociation_Tag {
|
|
|
85329
85806
|
});
|
|
85330
85807
|
}
|
|
85331
85808
|
|
|
85809
|
+
export declare class FirewallRuleType {
|
|
85810
|
+
constructor(props: {
|
|
85811
|
+
FirewallAdvancedContentCategory?: FirewallRuleGroup_FirewallAdvancedContentCategoryConfig;
|
|
85812
|
+
FirewallAdvancedThreatCategory?: FirewallRuleGroup_FirewallAdvancedThreatCategoryConfig;
|
|
85813
|
+
});
|
|
85814
|
+
}
|
|
85815
|
+
|
|
85332
85816
|
export declare class FleetAmountCapability {
|
|
85333
85817
|
constructor(props: {
|
|
85334
85818
|
Min: number;
|
|
@@ -90303,6 +90787,479 @@ export declare class Hardware {
|
|
|
90303
90787
|
});
|
|
90304
90788
|
}
|
|
90305
90789
|
|
|
90790
|
+
export declare class Harness_AuthorizerConfiguration {
|
|
90791
|
+
constructor(props: {
|
|
90792
|
+
CustomJWTAuthorizer?: Harness_CustomJWTAuthorizerConfiguration;
|
|
90793
|
+
});
|
|
90794
|
+
}
|
|
90795
|
+
|
|
90796
|
+
export declare class Harness_AuthorizingClaimMatchValueType {
|
|
90797
|
+
constructor(props: {
|
|
90798
|
+
ClaimMatchOperator: "CONTAINS" | "CONTAINS_ANY" | "EQUALS";
|
|
90799
|
+
ClaimMatchValue: Harness_ClaimMatchValueType;
|
|
90800
|
+
});
|
|
90801
|
+
}
|
|
90802
|
+
|
|
90803
|
+
export declare class Harness_ClaimMatchValueType {
|
|
90804
|
+
constructor(props: {
|
|
90805
|
+
MatchValueString?: string;
|
|
90806
|
+
MatchValueStringList?: string[];
|
|
90807
|
+
});
|
|
90808
|
+
}
|
|
90809
|
+
|
|
90810
|
+
export declare class Harness_ContainerConfiguration {
|
|
90811
|
+
constructor(props: {
|
|
90812
|
+
/** The ECR URI of the container. */
|
|
90813
|
+
ContainerUri: string;
|
|
90814
|
+
});
|
|
90815
|
+
}
|
|
90816
|
+
|
|
90817
|
+
export declare class Harness_CustomClaimValidationType {
|
|
90818
|
+
constructor(props: {
|
|
90819
|
+
AuthorizingClaimMatchValue: Harness_AuthorizingClaimMatchValueType;
|
|
90820
|
+
InboundTokenClaimName: string;
|
|
90821
|
+
InboundTokenClaimValueType: "STRING" | "STRING_ARRAY";
|
|
90822
|
+
});
|
|
90823
|
+
}
|
|
90824
|
+
|
|
90825
|
+
export declare class Harness_CustomJWTAuthorizerConfiguration {
|
|
90826
|
+
constructor(props: {
|
|
90827
|
+
DiscoveryUrl: string;
|
|
90828
|
+
AllowedAudience?: string[];
|
|
90829
|
+
AllowedClients?: string[];
|
|
90830
|
+
AllowedScopes?: string[];
|
|
90831
|
+
CustomClaims?: Harness_CustomClaimValidationType[];
|
|
90832
|
+
});
|
|
90833
|
+
}
|
|
90834
|
+
|
|
90835
|
+
export declare class Harness_FilesystemConfiguration {
|
|
90836
|
+
constructor(props: {
|
|
90837
|
+
SessionStorage: Harness_SessionStorageConfiguration;
|
|
90838
|
+
});
|
|
90839
|
+
}
|
|
90840
|
+
|
|
90841
|
+
export declare class Harness_HarnessAgentCoreBrowserConfig {
|
|
90842
|
+
constructor(props: {
|
|
90843
|
+
BrowserArn?: string;
|
|
90844
|
+
});
|
|
90845
|
+
}
|
|
90846
|
+
|
|
90847
|
+
export declare class Harness_HarnessAgentCoreCodeInterpreterConfig {
|
|
90848
|
+
constructor(props: {
|
|
90849
|
+
CodeInterpreterArn?: string;
|
|
90850
|
+
});
|
|
90851
|
+
}
|
|
90852
|
+
|
|
90853
|
+
export declare class Harness_HarnessAgentCoreGatewayConfig {
|
|
90854
|
+
constructor(props: {
|
|
90855
|
+
GatewayArn: string;
|
|
90856
|
+
OutboundAuth?: Harness_HarnessGatewayOutboundAuth;
|
|
90857
|
+
});
|
|
90858
|
+
}
|
|
90859
|
+
|
|
90860
|
+
export declare class Harness_HarnessAgentCoreMemoryConfiguration {
|
|
90861
|
+
constructor(props: {
|
|
90862
|
+
Arn: string;
|
|
90863
|
+
ActorId?: string;
|
|
90864
|
+
MessagesCount?: number;
|
|
90865
|
+
RetrievalConfig?: Record<string, unknown>;
|
|
90866
|
+
});
|
|
90867
|
+
}
|
|
90868
|
+
|
|
90869
|
+
export declare class Harness_HarnessAgentCoreMemoryRetrievalConfig {
|
|
90870
|
+
constructor(props: {
|
|
90871
|
+
RelevanceScore?: number;
|
|
90872
|
+
StrategyId?: string;
|
|
90873
|
+
TopK?: number;
|
|
90874
|
+
});
|
|
90875
|
+
}
|
|
90876
|
+
|
|
90877
|
+
export declare class Harness_HarnessAgentCoreRuntimeEnvironment {
|
|
90878
|
+
constructor(props: {
|
|
90879
|
+
/** The ARN of the underlying AgentCore Runtime. */
|
|
90880
|
+
AgentRuntimeArn?: string;
|
|
90881
|
+
/** The ID of the underlying AgentCore Runtime. */
|
|
90882
|
+
AgentRuntimeId?: string;
|
|
90883
|
+
/** The name of the underlying AgentCore Runtime. */
|
|
90884
|
+
AgentRuntimeName?: string;
|
|
90885
|
+
FilesystemConfigurations?: Harness_FilesystemConfiguration[];
|
|
90886
|
+
LifecycleConfiguration?: Harness_LifecycleConfiguration;
|
|
90887
|
+
NetworkConfiguration?: Harness_NetworkConfiguration;
|
|
90888
|
+
});
|
|
90889
|
+
}
|
|
90890
|
+
|
|
90891
|
+
export declare class Harness_HarnessBedrockModelConfig {
|
|
90892
|
+
constructor(props: {
|
|
90893
|
+
ModelId: string;
|
|
90894
|
+
MaxTokens?: number;
|
|
90895
|
+
Temperature?: number;
|
|
90896
|
+
TopP?: number;
|
|
90897
|
+
});
|
|
90898
|
+
}
|
|
90899
|
+
|
|
90900
|
+
export declare class Harness_HarnessEnvironmentArtifact {
|
|
90901
|
+
constructor(props: {
|
|
90902
|
+
ContainerConfiguration?: Harness_ContainerConfiguration;
|
|
90903
|
+
});
|
|
90904
|
+
}
|
|
90905
|
+
|
|
90906
|
+
export declare class Harness_HarnessEnvironmentProvider {
|
|
90907
|
+
constructor(props: {
|
|
90908
|
+
AgentCoreRuntimeEnvironment?: Harness_HarnessAgentCoreRuntimeEnvironment;
|
|
90909
|
+
});
|
|
90910
|
+
}
|
|
90911
|
+
|
|
90912
|
+
export declare class Harness_HarnessGatewayOutboundAuth {
|
|
90913
|
+
constructor(props: {
|
|
90914
|
+
AwsIam?: Record<string, unknown>;
|
|
90915
|
+
None?: Record<string, unknown>;
|
|
90916
|
+
Oauth?: Harness_OAuthCredentialProvider;
|
|
90917
|
+
});
|
|
90918
|
+
}
|
|
90919
|
+
|
|
90920
|
+
export declare class Harness_HarnessGeminiModelConfig {
|
|
90921
|
+
constructor(props: {
|
|
90922
|
+
ApiKeyArn: string;
|
|
90923
|
+
ModelId: string;
|
|
90924
|
+
MaxTokens?: number;
|
|
90925
|
+
Temperature?: number;
|
|
90926
|
+
TopK?: number;
|
|
90927
|
+
TopP?: number;
|
|
90928
|
+
});
|
|
90929
|
+
}
|
|
90930
|
+
|
|
90931
|
+
export declare class Harness_HarnessInlineFunctionConfig {
|
|
90932
|
+
constructor(props: {
|
|
90933
|
+
Description: string;
|
|
90934
|
+
/** JSON Schema describing the tool's input parameters. */
|
|
90935
|
+
InputSchema: Record<string, unknown>;
|
|
90936
|
+
});
|
|
90937
|
+
}
|
|
90938
|
+
|
|
90939
|
+
export declare class Harness_HarnessMemoryConfiguration {
|
|
90940
|
+
constructor(props: {
|
|
90941
|
+
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
90942
|
+
});
|
|
90943
|
+
}
|
|
90944
|
+
|
|
90945
|
+
export declare class Harness_HarnessModelConfiguration {
|
|
90946
|
+
constructor(props: {
|
|
90947
|
+
BedrockModelConfig?: Harness_HarnessBedrockModelConfig;
|
|
90948
|
+
GeminiModelConfig?: Harness_HarnessGeminiModelConfig;
|
|
90949
|
+
OpenAiModelConfig?: Harness_HarnessOpenAiModelConfig;
|
|
90950
|
+
});
|
|
90951
|
+
}
|
|
90952
|
+
|
|
90953
|
+
export declare class Harness_HarnessOpenAiModelConfig {
|
|
90954
|
+
constructor(props: {
|
|
90955
|
+
ApiKeyArn: string;
|
|
90956
|
+
ModelId: string;
|
|
90957
|
+
MaxTokens?: number;
|
|
90958
|
+
Temperature?: number;
|
|
90959
|
+
TopP?: number;
|
|
90960
|
+
});
|
|
90961
|
+
}
|
|
90962
|
+
|
|
90963
|
+
export declare class Harness_HarnessRemoteMcpConfig {
|
|
90964
|
+
constructor(props: {
|
|
90965
|
+
Url: string;
|
|
90966
|
+
Headers?: Record<string, unknown>;
|
|
90967
|
+
});
|
|
90968
|
+
}
|
|
90969
|
+
|
|
90970
|
+
export declare class Harness_HarnessSkill {
|
|
90971
|
+
constructor(props: {
|
|
90972
|
+
/** The filesystem path to the skill definition. */
|
|
90973
|
+
Path: string;
|
|
90974
|
+
});
|
|
90975
|
+
}
|
|
90976
|
+
|
|
90977
|
+
export declare class Harness_HarnessSlidingWindowConfiguration {
|
|
90978
|
+
constructor(props: {
|
|
90979
|
+
MessagesCount?: number;
|
|
90980
|
+
});
|
|
90981
|
+
}
|
|
90982
|
+
|
|
90983
|
+
export declare class Harness_HarnessSummarizationConfiguration {
|
|
90984
|
+
constructor(props: {
|
|
90985
|
+
PreserveRecentMessages?: number;
|
|
90986
|
+
SummarizationSystemPrompt?: string;
|
|
90987
|
+
SummaryRatio?: number;
|
|
90988
|
+
});
|
|
90989
|
+
}
|
|
90990
|
+
|
|
90991
|
+
export declare class Harness_HarnessSystemContentBlock {
|
|
90992
|
+
constructor(props: {
|
|
90993
|
+
/** The text content of the system prompt block. */
|
|
90994
|
+
Text: string;
|
|
90995
|
+
});
|
|
90996
|
+
}
|
|
90997
|
+
|
|
90998
|
+
export declare class Harness_HarnessTool {
|
|
90999
|
+
constructor(props: {
|
|
91000
|
+
Type: "agentcore_browser" | "agentcore_code_interpreter" | "agentcore_gateway" | "inline_function" | "remote_mcp";
|
|
91001
|
+
Config?: Harness_HarnessToolConfiguration;
|
|
91002
|
+
Name?: string;
|
|
91003
|
+
});
|
|
91004
|
+
}
|
|
91005
|
+
|
|
91006
|
+
export declare class Harness_HarnessToolConfiguration {
|
|
91007
|
+
constructor(props: {
|
|
91008
|
+
AgentCoreBrowser?: Harness_HarnessAgentCoreBrowserConfig;
|
|
91009
|
+
AgentCoreCodeInterpreter?: Harness_HarnessAgentCoreCodeInterpreterConfig;
|
|
91010
|
+
AgentCoreGateway?: Harness_HarnessAgentCoreGatewayConfig;
|
|
91011
|
+
InlineFunction?: Harness_HarnessInlineFunctionConfig;
|
|
91012
|
+
RemoteMcp?: Harness_HarnessRemoteMcpConfig;
|
|
91013
|
+
});
|
|
91014
|
+
}
|
|
91015
|
+
|
|
91016
|
+
export declare class Harness_HarnessTruncationConfiguration {
|
|
91017
|
+
constructor(props: {
|
|
91018
|
+
Strategy: "none" | "sliding_window" | "summarization";
|
|
91019
|
+
Config?: Harness_HarnessTruncationStrategyConfiguration;
|
|
91020
|
+
});
|
|
91021
|
+
}
|
|
91022
|
+
|
|
91023
|
+
export declare class Harness_HarnessTruncationStrategyConfiguration {
|
|
91024
|
+
constructor(props: {
|
|
91025
|
+
SlidingWindow?: Harness_HarnessSlidingWindowConfiguration;
|
|
91026
|
+
Summarization?: Harness_HarnessSummarizationConfiguration;
|
|
91027
|
+
});
|
|
91028
|
+
}
|
|
91029
|
+
|
|
91030
|
+
export declare class Harness_LifecycleConfiguration {
|
|
91031
|
+
constructor(props: {
|
|
91032
|
+
IdleRuntimeSessionTimeout?: number;
|
|
91033
|
+
MaxLifetime?: number;
|
|
91034
|
+
});
|
|
91035
|
+
}
|
|
91036
|
+
|
|
91037
|
+
export declare class Harness_NetworkConfiguration {
|
|
91038
|
+
constructor(props: {
|
|
91039
|
+
NetworkMode: "PUBLIC" | "VPC";
|
|
91040
|
+
NetworkModeConfig?: Harness_VpcConfig;
|
|
91041
|
+
});
|
|
91042
|
+
}
|
|
91043
|
+
|
|
91044
|
+
export declare class Harness_OAuthCredentialProvider {
|
|
91045
|
+
constructor(props: {
|
|
91046
|
+
ProviderArn: string;
|
|
91047
|
+
Scopes: string[];
|
|
91048
|
+
CustomParameters?: Record<string, unknown>;
|
|
91049
|
+
DefaultReturnUrl?: string;
|
|
91050
|
+
GrantType?: "AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS";
|
|
91051
|
+
});
|
|
91052
|
+
}
|
|
91053
|
+
|
|
91054
|
+
export declare class Harness_SessionStorageConfiguration {
|
|
91055
|
+
constructor(props: {
|
|
91056
|
+
MountPath: string;
|
|
91057
|
+
});
|
|
91058
|
+
}
|
|
91059
|
+
|
|
91060
|
+
export declare class Harness_Tag {
|
|
91061
|
+
constructor(props: {
|
|
91062
|
+
Key: string;
|
|
91063
|
+
Value: string;
|
|
91064
|
+
});
|
|
91065
|
+
}
|
|
91066
|
+
|
|
91067
|
+
export declare class Harness_VpcConfig {
|
|
91068
|
+
constructor(props: {
|
|
91069
|
+
SecurityGroups: string[];
|
|
91070
|
+
Subnets: string[];
|
|
91071
|
+
});
|
|
91072
|
+
}
|
|
91073
|
+
|
|
91074
|
+
export declare class HarnessAgentCoreBrowserConfig {
|
|
91075
|
+
constructor(props: {
|
|
91076
|
+
BrowserArn?: string;
|
|
91077
|
+
});
|
|
91078
|
+
}
|
|
91079
|
+
|
|
91080
|
+
export declare class HarnessAgentCoreCodeInterpreterConfig {
|
|
91081
|
+
constructor(props: {
|
|
91082
|
+
CodeInterpreterArn?: string;
|
|
91083
|
+
});
|
|
91084
|
+
}
|
|
91085
|
+
|
|
91086
|
+
export declare class HarnessAgentCoreGatewayConfig {
|
|
91087
|
+
constructor(props: {
|
|
91088
|
+
GatewayArn: string;
|
|
91089
|
+
OutboundAuth?: Harness_HarnessGatewayOutboundAuth;
|
|
91090
|
+
});
|
|
91091
|
+
}
|
|
91092
|
+
|
|
91093
|
+
export declare class HarnessAgentCoreMemoryConfiguration {
|
|
91094
|
+
constructor(props: {
|
|
91095
|
+
Arn: string;
|
|
91096
|
+
ActorId?: string;
|
|
91097
|
+
MessagesCount?: number;
|
|
91098
|
+
RetrievalConfig?: Record<string, unknown>;
|
|
91099
|
+
});
|
|
91100
|
+
}
|
|
91101
|
+
|
|
91102
|
+
export declare class HarnessAgentCoreMemoryRetrievalConfig {
|
|
91103
|
+
constructor(props: {
|
|
91104
|
+
RelevanceScore?: number;
|
|
91105
|
+
StrategyId?: string;
|
|
91106
|
+
TopK?: number;
|
|
91107
|
+
});
|
|
91108
|
+
}
|
|
91109
|
+
|
|
91110
|
+
export declare class HarnessAgentCoreRuntimeEnvironment {
|
|
91111
|
+
constructor(props: {
|
|
91112
|
+
/** The ARN of the underlying AgentCore Runtime. */
|
|
91113
|
+
AgentRuntimeArn?: string;
|
|
91114
|
+
/** The ID of the underlying AgentCore Runtime. */
|
|
91115
|
+
AgentRuntimeId?: string;
|
|
91116
|
+
/** The name of the underlying AgentCore Runtime. */
|
|
91117
|
+
AgentRuntimeName?: string;
|
|
91118
|
+
FilesystemConfigurations?: Harness_FilesystemConfiguration[];
|
|
91119
|
+
LifecycleConfiguration?: Harness_LifecycleConfiguration;
|
|
91120
|
+
NetworkConfiguration?: Harness_NetworkConfiguration;
|
|
91121
|
+
});
|
|
91122
|
+
}
|
|
91123
|
+
|
|
91124
|
+
export declare class HarnessBedrockModelConfig {
|
|
91125
|
+
constructor(props: {
|
|
91126
|
+
ModelId: string;
|
|
91127
|
+
MaxTokens?: number;
|
|
91128
|
+
Temperature?: number;
|
|
91129
|
+
TopP?: number;
|
|
91130
|
+
});
|
|
91131
|
+
}
|
|
91132
|
+
|
|
91133
|
+
export declare class HarnessEnvironmentArtifact {
|
|
91134
|
+
constructor(props: {
|
|
91135
|
+
ContainerConfiguration?: Harness_ContainerConfiguration;
|
|
91136
|
+
});
|
|
91137
|
+
}
|
|
91138
|
+
|
|
91139
|
+
export declare class HarnessEnvironmentProvider {
|
|
91140
|
+
constructor(props: {
|
|
91141
|
+
AgentCoreRuntimeEnvironment?: Harness_HarnessAgentCoreRuntimeEnvironment;
|
|
91142
|
+
});
|
|
91143
|
+
}
|
|
91144
|
+
|
|
91145
|
+
export declare class HarnessGatewayOutboundAuth {
|
|
91146
|
+
constructor(props: {
|
|
91147
|
+
AwsIam?: Record<string, unknown>;
|
|
91148
|
+
None?: Record<string, unknown>;
|
|
91149
|
+
Oauth?: Harness_OAuthCredentialProvider;
|
|
91150
|
+
});
|
|
91151
|
+
}
|
|
91152
|
+
|
|
91153
|
+
export declare class HarnessGeminiModelConfig {
|
|
91154
|
+
constructor(props: {
|
|
91155
|
+
ApiKeyArn: string;
|
|
91156
|
+
ModelId: string;
|
|
91157
|
+
MaxTokens?: number;
|
|
91158
|
+
Temperature?: number;
|
|
91159
|
+
TopK?: number;
|
|
91160
|
+
TopP?: number;
|
|
91161
|
+
});
|
|
91162
|
+
}
|
|
91163
|
+
|
|
91164
|
+
export declare class HarnessInlineFunctionConfig {
|
|
91165
|
+
constructor(props: {
|
|
91166
|
+
Description: string;
|
|
91167
|
+
/** JSON Schema describing the tool's input parameters. */
|
|
91168
|
+
InputSchema: Record<string, unknown>;
|
|
91169
|
+
});
|
|
91170
|
+
}
|
|
91171
|
+
|
|
91172
|
+
export declare class HarnessMemoryConfiguration {
|
|
91173
|
+
constructor(props: {
|
|
91174
|
+
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
91175
|
+
});
|
|
91176
|
+
}
|
|
91177
|
+
|
|
91178
|
+
export declare class HarnessModelConfiguration {
|
|
91179
|
+
constructor(props: {
|
|
91180
|
+
BedrockModelConfig?: Harness_HarnessBedrockModelConfig;
|
|
91181
|
+
GeminiModelConfig?: Harness_HarnessGeminiModelConfig;
|
|
91182
|
+
OpenAiModelConfig?: Harness_HarnessOpenAiModelConfig;
|
|
91183
|
+
});
|
|
91184
|
+
}
|
|
91185
|
+
|
|
91186
|
+
export declare class HarnessOpenAiModelConfig {
|
|
91187
|
+
constructor(props: {
|
|
91188
|
+
ApiKeyArn: string;
|
|
91189
|
+
ModelId: string;
|
|
91190
|
+
MaxTokens?: number;
|
|
91191
|
+
Temperature?: number;
|
|
91192
|
+
TopP?: number;
|
|
91193
|
+
});
|
|
91194
|
+
}
|
|
91195
|
+
|
|
91196
|
+
export declare class HarnessRemoteMcpConfig {
|
|
91197
|
+
constructor(props: {
|
|
91198
|
+
Url: string;
|
|
91199
|
+
Headers?: Record<string, unknown>;
|
|
91200
|
+
});
|
|
91201
|
+
}
|
|
91202
|
+
|
|
91203
|
+
export declare class HarnessSkill {
|
|
91204
|
+
constructor(props: {
|
|
91205
|
+
/** The filesystem path to the skill definition. */
|
|
91206
|
+
Path: string;
|
|
91207
|
+
});
|
|
91208
|
+
}
|
|
91209
|
+
|
|
91210
|
+
export declare class HarnessSlidingWindowConfiguration {
|
|
91211
|
+
constructor(props: {
|
|
91212
|
+
MessagesCount?: number;
|
|
91213
|
+
});
|
|
91214
|
+
}
|
|
91215
|
+
|
|
91216
|
+
export declare class HarnessSummarizationConfiguration {
|
|
91217
|
+
constructor(props: {
|
|
91218
|
+
PreserveRecentMessages?: number;
|
|
91219
|
+
SummarizationSystemPrompt?: string;
|
|
91220
|
+
SummaryRatio?: number;
|
|
91221
|
+
});
|
|
91222
|
+
}
|
|
91223
|
+
|
|
91224
|
+
export declare class HarnessSystemContentBlock {
|
|
91225
|
+
constructor(props: {
|
|
91226
|
+
/** The text content of the system prompt block. */
|
|
91227
|
+
Text: string;
|
|
91228
|
+
});
|
|
91229
|
+
}
|
|
91230
|
+
|
|
91231
|
+
export declare class HarnessTool {
|
|
91232
|
+
constructor(props: {
|
|
91233
|
+
Type: "agentcore_browser" | "agentcore_code_interpreter" | "agentcore_gateway" | "inline_function" | "remote_mcp";
|
|
91234
|
+
Config?: Harness_HarnessToolConfiguration;
|
|
91235
|
+
Name?: string;
|
|
91236
|
+
});
|
|
91237
|
+
}
|
|
91238
|
+
|
|
91239
|
+
export declare class HarnessToolConfiguration {
|
|
91240
|
+
constructor(props: {
|
|
91241
|
+
AgentCoreBrowser?: Harness_HarnessAgentCoreBrowserConfig;
|
|
91242
|
+
AgentCoreCodeInterpreter?: Harness_HarnessAgentCoreCodeInterpreterConfig;
|
|
91243
|
+
AgentCoreGateway?: Harness_HarnessAgentCoreGatewayConfig;
|
|
91244
|
+
InlineFunction?: Harness_HarnessInlineFunctionConfig;
|
|
91245
|
+
RemoteMcp?: Harness_HarnessRemoteMcpConfig;
|
|
91246
|
+
});
|
|
91247
|
+
}
|
|
91248
|
+
|
|
91249
|
+
export declare class HarnessTruncationConfiguration {
|
|
91250
|
+
constructor(props: {
|
|
91251
|
+
Strategy: "none" | "sliding_window" | "summarization";
|
|
91252
|
+
Config?: Harness_HarnessTruncationStrategyConfiguration;
|
|
91253
|
+
});
|
|
91254
|
+
}
|
|
91255
|
+
|
|
91256
|
+
export declare class HarnessTruncationStrategyConfiguration {
|
|
91257
|
+
constructor(props: {
|
|
91258
|
+
SlidingWindow?: Harness_HarnessSlidingWindowConfiguration;
|
|
91259
|
+
Summarization?: Harness_HarnessSummarizationConfiguration;
|
|
91260
|
+
});
|
|
91261
|
+
}
|
|
91262
|
+
|
|
90306
91263
|
export declare class Hash {
|
|
90307
91264
|
constructor(props: {
|
|
90308
91265
|
Sha256?: string;
|
|
@@ -90661,6 +91618,13 @@ export declare class HomeDirectoryMapEntry {
|
|
|
90661
91618
|
});
|
|
90662
91619
|
}
|
|
90663
91620
|
|
|
91621
|
+
export declare class HookTimeoutConfig {
|
|
91622
|
+
constructor(props: {
|
|
91623
|
+
Action?: "CONTINUE" | "ROLLBACK";
|
|
91624
|
+
TimeoutInMinutes?: number;
|
|
91625
|
+
});
|
|
91626
|
+
}
|
|
91627
|
+
|
|
90664
91628
|
export declare class HookVersion_LoggingConfig {
|
|
90665
91629
|
constructor(props: {
|
|
90666
91630
|
/** The Amazon CloudWatch log group to which CloudFormation sends error logging information when invoking the type's handlers. */
|
|
@@ -93396,6 +94360,13 @@ export declare class InlineCustomDocumentEnrichmentConfiguration {
|
|
|
93396
94360
|
});
|
|
93397
94361
|
}
|
|
93398
94362
|
|
|
94363
|
+
export declare class InlineCustomInstruction {
|
|
94364
|
+
constructor(props: {
|
|
94365
|
+
InstructionText: string;
|
|
94366
|
+
UploadedDocumentMetadata?: DataSet_UploadedDocumentMetadata;
|
|
94367
|
+
});
|
|
94368
|
+
}
|
|
94369
|
+
|
|
93399
94370
|
export declare class InlineDocumentEnrichmentConfiguration {
|
|
93400
94371
|
constructor(props: {
|
|
93401
94372
|
Condition?: QBusinessDataSource_DocumentAttributeCondition;
|
|
@@ -93404,6 +94375,13 @@ export declare class InlineDocumentEnrichmentConfiguration {
|
|
|
93404
94375
|
});
|
|
93405
94376
|
}
|
|
93406
94377
|
|
|
94378
|
+
export declare class InlineExamplesSource {
|
|
94379
|
+
constructor(props: {
|
|
94380
|
+
/** Examples to add. Each example is a free-form JSON document validated against the declared schemaType. */
|
|
94381
|
+
Examples: Record<string, unknown>[];
|
|
94382
|
+
});
|
|
94383
|
+
}
|
|
94384
|
+
|
|
93407
94385
|
export declare class InlineRedactionConfiguration {
|
|
93408
94386
|
constructor(props: {
|
|
93409
94387
|
InlineRedactionPatterns: DataProtectionSettings_InlineRedactionPattern[];
|
|
@@ -94593,6 +95571,14 @@ export declare class InstanceNetworkPerformanceOptionsRequest {
|
|
|
94593
95571
|
});
|
|
94594
95572
|
}
|
|
94595
95573
|
|
|
95574
|
+
export declare class InstancePools {
|
|
95575
|
+
constructor(props: {
|
|
95576
|
+
InstanceType: string;
|
|
95577
|
+
Priority: number;
|
|
95578
|
+
ModelNameOverride?: string;
|
|
95579
|
+
});
|
|
95580
|
+
}
|
|
95581
|
+
|
|
94596
95582
|
export declare class InstanceReusePolicy {
|
|
94597
95583
|
constructor(props: {
|
|
94598
95584
|
ReuseOnScaleIn?: boolean;
|
|
@@ -98280,7 +99266,11 @@ export declare class KeyValueStore_ImportSource {
|
|
|
98280
99266
|
|
|
98281
99267
|
export declare class KeyValueStore_Tag {
|
|
98282
99268
|
constructor(props: {
|
|
99269
|
+
/** A string that contains ``Tag`` key.
|
|
99270
|
+
The string length should be between 1 and 128 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``. */
|
|
98283
99271
|
Key: string;
|
|
99272
|
+
/** A string that contains an optional ``Tag`` value.
|
|
99273
|
+
The string length should be between 0 and 256 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``. */
|
|
98284
99274
|
Value: string;
|
|
98285
99275
|
});
|
|
98286
99276
|
}
|
|
@@ -99317,6 +100307,21 @@ export declare class LambdaEventSource {
|
|
|
99317
100307
|
});
|
|
99318
100308
|
}
|
|
99319
100309
|
|
|
100310
|
+
export declare class LambdaEventSourceMappingConfiguration {
|
|
100311
|
+
constructor(props: {
|
|
100312
|
+
Action: "disable" | "enable";
|
|
100313
|
+
RegionEventSourceMappings: Record<string, unknown>;
|
|
100314
|
+
TimeoutMinutes?: number;
|
|
100315
|
+
Ungraceful?: ARCRegionSwitchPlan_LambdaEventSourceMappingUngraceful;
|
|
100316
|
+
});
|
|
100317
|
+
}
|
|
100318
|
+
|
|
100319
|
+
export declare class LambdaEventSourceMappingUngraceful {
|
|
100320
|
+
constructor(props: {
|
|
100321
|
+
Behavior?: "skip";
|
|
100322
|
+
});
|
|
100323
|
+
}
|
|
100324
|
+
|
|
99320
100325
|
export declare class LambdaExecutionParameters {
|
|
99321
100326
|
constructor(props: {
|
|
99322
100327
|
EnvironmentVariables?: Record<string, unknown>;
|
|
@@ -99689,6 +100694,8 @@ export declare class LaunchTemplate_CpuOptions {
|
|
|
99689
100694
|
AmdSevSnp?: "disabled" | "enabled";
|
|
99690
100695
|
/** The number of CPU cores for the instance. */
|
|
99691
100696
|
CoreCount?: number;
|
|
100697
|
+
/** Indicates whether the instance is enabled for nested virtualization. */
|
|
100698
|
+
NestedVirtualization?: "disabled" | "enabled";
|
|
99692
100699
|
/** The number of threads per CPU core. To disable multithreading for the instance, specify a value of ``1``. Otherwise, specify the default value of ``2``. */
|
|
99693
100700
|
ThreadsPerCore?: number;
|
|
99694
100701
|
});
|
|
@@ -99816,12 +100823,19 @@ export declare class LaunchTemplate_InstanceRequirements {
|
|
|
99816
100823
|
+ For instance types with NVIDIA A100 GPUs, specify ``a100``.
|
|
99817
100824
|
+ For instance types with NVIDIA H100 GPUs, specify ``h100``.
|
|
99818
100825
|
+ For instance types with AWS Inferentia chips, specify ``inferentia``.
|
|
100826
|
+
+ For instance types with AWS Inferentia2 chips, specify ``inferentia2``.
|
|
100827
|
+
+ For instance types with Habana Gaudi HL-205 GPUs, specify ``gaudi-hl-205``.
|
|
99819
100828
|
+ For instance types with NVIDIA GRID K520 GPUs, specify ``k520``.
|
|
99820
100829
|
+ For instance types with NVIDIA K80 GPUs, specify ``k80``.
|
|
100830
|
+
+ For instance types with NVIDIA L4 GPUs, specify ``l4``.
|
|
100831
|
+
+ For instance types with NVIDIA L40S GPUs, specify ``l40s``.
|
|
99821
100832
|
+ For instance types with NVIDIA M60 GPUs, specify ``m60``.
|
|
99822
100833
|
+ For instance types with AMD Radeon Pro V520 GPUs, specify ``radeon-pro-v520``.
|
|
100834
|
+
+ For instance types with AWS Trainium chips, specify ``trainium``.
|
|
100835
|
+
+ For instance types with AWS Trainium2 chips, specify ``trainium2``.
|
|
99823
100836
|
+ For instance types with NVIDIA T4 GPUs, specify ``t4``.
|
|
99824
100837
|
+ For instance types with NVIDIA T4G GPUs, specify ``t4g``.
|
|
100838
|
+
+ For instance types with Xilinx U30 cards, specify ``u30``.
|
|
99825
100839
|
+ For instance types with Xilinx VU9P FPGAs, specify ``vu9p``.
|
|
99826
100840
|
+ For instance types with NVIDIA V100 GPUs, specify ``v100``.
|
|
99827
100841
|
|
|
@@ -99834,6 +100848,7 @@ export declare class LaunchTemplate_InstanceRequirements {
|
|
|
99834
100848
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
|
99835
100849
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
99836
100850
|
+ For instance types with Inference accelerators, specify ``inference``.
|
|
100851
|
+
+ For instance types with Media accelerators, specify ``media``.
|
|
99837
100852
|
|
|
99838
100853
|
Default: Any accelerator type */
|
|
99839
100854
|
AcceleratorTypes?: string[];
|
|
@@ -100631,7 +101646,7 @@ export declare class LegacyS3Origin {
|
|
|
100631
101646
|
/** The domain name assigned to your CF distribution. */
|
|
100632
101647
|
DNSName: string;
|
|
100633
101648
|
/** The CF origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an S3 through CF.
|
|
100634
|
-
This property is legacy. We recommend that you use [OriginAccessControl](https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
101649
|
+
This property is legacy. We recommend that you use [OriginAccessControl](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudfront-originaccesscontrol.html) instead. */
|
|
100635
101650
|
OriginAccessIdentity?: string;
|
|
100636
101651
|
});
|
|
100637
101652
|
}
|
|
@@ -104272,6 +105287,13 @@ export declare class Matching {
|
|
|
104272
105287
|
});
|
|
104273
105288
|
}
|
|
104274
105289
|
|
|
105290
|
+
export declare class MatchingConfig {
|
|
105291
|
+
constructor(props: {
|
|
105292
|
+
/** Enables transitive matching to process records across all rule levels and connect unmatched records to existing match groups */
|
|
105293
|
+
EnableTransitiveMatching?: boolean;
|
|
105294
|
+
});
|
|
105295
|
+
}
|
|
105296
|
+
|
|
104275
105297
|
export declare class MatchingRule {
|
|
104276
105298
|
constructor(props: {
|
|
104277
105299
|
Rule: any;
|
|
@@ -104307,6 +105329,13 @@ export declare class MatchingWorkflow_IntermediateSourceConfiguration {
|
|
|
104307
105329
|
});
|
|
104308
105330
|
}
|
|
104309
105331
|
|
|
105332
|
+
export declare class MatchingWorkflow_MatchingConfig {
|
|
105333
|
+
constructor(props: {
|
|
105334
|
+
/** Enables transitive matching to process records across all rule levels and connect unmatched records to existing match groups */
|
|
105335
|
+
EnableTransitiveMatching?: boolean;
|
|
105336
|
+
});
|
|
105337
|
+
}
|
|
105338
|
+
|
|
104310
105339
|
export declare class MatchingWorkflow_OutputAttribute {
|
|
104311
105340
|
constructor(props: {
|
|
104312
105341
|
Name: string;
|
|
@@ -104369,6 +105398,7 @@ export declare class MatchingWorkflow_RuleCondition {
|
|
|
104369
105398
|
export declare class MatchingWorkflow_RuleConditionProperties {
|
|
104370
105399
|
constructor(props: {
|
|
104371
105400
|
Rules: MatchingWorkflow_RuleCondition[];
|
|
105401
|
+
MatchingConfig?: MatchingWorkflow_MatchingConfig;
|
|
104372
105402
|
});
|
|
104373
105403
|
}
|
|
104374
105404
|
|
|
@@ -104514,33 +105544,56 @@ export declare class McpLambdaTargetConfiguration {
|
|
|
104514
105544
|
|
|
104515
105545
|
export declare class MCPServerConfiguration {
|
|
104516
105546
|
constructor(props: {
|
|
104517
|
-
/** MCP server endpoint URL */
|
|
104518
|
-
Endpoint: string;
|
|
104519
|
-
/** The name of the MCP server */
|
|
104520
|
-
Name: string;
|
|
104521
105547
|
/** List of MCP tools that can be used with the association */
|
|
104522
105548
|
Tools: string[];
|
|
104523
105549
|
/** The description of the MCP server */
|
|
104524
105550
|
Description?: string;
|
|
104525
105551
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
104526
105552
|
EnableWebhookUpdates?: boolean;
|
|
105553
|
+
/** MCP server endpoint URL */
|
|
105554
|
+
Endpoint?: string;
|
|
105555
|
+
/** The name of the MCP server */
|
|
105556
|
+
Name?: string;
|
|
104527
105557
|
});
|
|
104528
105558
|
}
|
|
104529
105559
|
|
|
104530
105560
|
export declare class MCPServerDatadogConfiguration {
|
|
104531
105561
|
constructor(props: {
|
|
105562
|
+
/** The description of the MCP server */
|
|
105563
|
+
Description?: string;
|
|
105564
|
+
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
105565
|
+
EnableWebhookUpdates?: boolean;
|
|
104532
105566
|
/** MCP server endpoint URL */
|
|
104533
|
-
Endpoint
|
|
105567
|
+
Endpoint?: string;
|
|
104534
105568
|
/** The name of the MCP server */
|
|
105569
|
+
Name?: string;
|
|
105570
|
+
});
|
|
105571
|
+
}
|
|
105572
|
+
|
|
105573
|
+
export declare class MCPServerDetails {
|
|
105574
|
+
constructor(props: {
|
|
105575
|
+
AuthorizationConfig: Record<string, unknown>;
|
|
105576
|
+
/** MCP server endpoint URL */
|
|
105577
|
+
Endpoint: string;
|
|
105578
|
+
/** MCP server name */
|
|
104535
105579
|
Name: string;
|
|
104536
|
-
/**
|
|
105580
|
+
/** Optional description for the MCP server */
|
|
104537
105581
|
Description?: string;
|
|
105582
|
+
});
|
|
105583
|
+
}
|
|
105584
|
+
|
|
105585
|
+
export declare class MCPServerGrafanaConfiguration {
|
|
105586
|
+
constructor(props: {
|
|
105587
|
+
/** MCP server endpoint URL */
|
|
105588
|
+
Endpoint: string;
|
|
104538
105589
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
104539
105590
|
EnableWebhookUpdates?: boolean;
|
|
105591
|
+
/** List of tool categories to enable for the Grafana MCP server */
|
|
105592
|
+
Tools?: "alerting" | "annotations" | "asserts" | "cloudwatch" | "dashboard" | "datasource" | "elasticsearch" | "examples" | "incident" | "loki" | "navigation" | "oncall" | "prometheus" | "pyroscope" | "rendering" | "runpanelquery" | "search" | "searchlogs" | "sift"[];
|
|
104540
105593
|
});
|
|
104541
105594
|
}
|
|
104542
105595
|
|
|
104543
|
-
export declare class
|
|
105596
|
+
export declare class MCPServerGrafanaDetails {
|
|
104544
105597
|
constructor(props: {
|
|
104545
105598
|
AuthorizationConfig: Record<string, unknown>;
|
|
104546
105599
|
/** MCP server endpoint URL */
|
|
@@ -104612,14 +105665,14 @@ export declare class MCPServerSigV4Details {
|
|
|
104612
105665
|
|
|
104613
105666
|
export declare class MCPServerSplunkConfiguration {
|
|
104614
105667
|
constructor(props: {
|
|
104615
|
-
/** MCP server endpoint URL */
|
|
104616
|
-
Endpoint: string;
|
|
104617
|
-
/** The name of the MCP server */
|
|
104618
|
-
Name: string;
|
|
104619
105668
|
/** The description of the MCP server */
|
|
104620
105669
|
Description?: string;
|
|
104621
105670
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
104622
105671
|
EnableWebhookUpdates?: boolean;
|
|
105672
|
+
/** MCP server endpoint URL */
|
|
105673
|
+
Endpoint?: string;
|
|
105674
|
+
/** The name of the MCP server */
|
|
105675
|
+
Name?: string;
|
|
104623
105676
|
});
|
|
104624
105677
|
}
|
|
104625
105678
|
|
|
@@ -109012,6 +110065,13 @@ export declare class MetricsConfigurationPolicy {
|
|
|
109012
110065
|
});
|
|
109013
110066
|
}
|
|
109014
110067
|
|
|
110068
|
+
export declare class MetricSource {
|
|
110069
|
+
constructor(props: {
|
|
110070
|
+
MetricSourceKeyAttributes: any;
|
|
110071
|
+
MetricSourceAttributes?: any;
|
|
110072
|
+
});
|
|
110073
|
+
}
|
|
110074
|
+
|
|
109015
110075
|
export declare class MetricsSource {
|
|
109016
110076
|
constructor(props: {
|
|
109017
110077
|
/** The type of content stored in the metric source. */
|
|
@@ -114046,17 +115106,6 @@ export declare class OAuthClientDetails {
|
|
|
114046
115106
|
});
|
|
114047
115107
|
}
|
|
114048
115108
|
|
|
114049
|
-
export declare class OAuthCredentialProvider {
|
|
114050
|
-
constructor(props: {
|
|
114051
|
-
ProviderArn: string;
|
|
114052
|
-
Scopes: string[];
|
|
114053
|
-
CustomParameters?: Record<string, unknown>;
|
|
114054
|
-
/** Return URL for OAuth callback. */
|
|
114055
|
-
DefaultReturnUrl?: string;
|
|
114056
|
-
GrantType?: GatewayTarget_OAuthGrantType;
|
|
114057
|
-
});
|
|
114058
|
-
}
|
|
114059
|
-
|
|
114060
115109
|
export declare class OAuthProperties {
|
|
114061
115110
|
constructor(props: {
|
|
114062
115111
|
AuthCodeUrl?: string;
|
|
@@ -115834,6 +116883,17 @@ export declare class OrganizationTelemetryRule_LoggingFilter {
|
|
|
115834
116883
|
});
|
|
115835
116884
|
}
|
|
115836
116885
|
|
|
116886
|
+
export declare class OrganizationTelemetryRule_RegionStatus {
|
|
116887
|
+
constructor(props: {
|
|
116888
|
+
/** The AWS region code */
|
|
116889
|
+
Region?: string;
|
|
116890
|
+
/** The ARN of the rule in this region */
|
|
116891
|
+
RuleArn?: string;
|
|
116892
|
+
/** The replication status of the rule in this region */
|
|
116893
|
+
Status?: string;
|
|
116894
|
+
});
|
|
116895
|
+
}
|
|
116896
|
+
|
|
115837
116897
|
export declare class OrganizationTelemetryRule_SingleHeader {
|
|
115838
116898
|
constructor(props: {
|
|
115839
116899
|
/** The name of the header */
|
|
@@ -115856,6 +116916,8 @@ export declare class OrganizationTelemetryRule_TelemetryDestinationConfiguration
|
|
|
115856
116916
|
DestinationPattern?: string;
|
|
115857
116917
|
DestinationType?: OrganizationTelemetryRule_DestinationType;
|
|
115858
116918
|
ELBLoadBalancerLoggingParameters?: OrganizationTelemetryRule_ELBLoadBalancerLoggingParameters;
|
|
116919
|
+
/** Parameters for log delivery configuration */
|
|
116920
|
+
LogDeliveryParameters?: Record<string, unknown>;
|
|
115859
116921
|
RetentionInDays?: number;
|
|
115860
116922
|
VPCFlowLogParameters?: OrganizationTelemetryRule_VPCFlowLogParameters;
|
|
115861
116923
|
WAFLoggingParameters?: OrganizationTelemetryRule_WAFLoggingParameters;
|
|
@@ -115866,7 +116928,12 @@ export declare class OrganizationTelemetryRule_TelemetryRule {
|
|
|
115866
116928
|
constructor(props: {
|
|
115867
116929
|
ResourceType: OrganizationTelemetryRule_ResourceType;
|
|
115868
116930
|
TelemetryType: OrganizationTelemetryRule_TelemetryType;
|
|
116931
|
+
AllowFieldUpdates?: boolean;
|
|
116932
|
+
/** When true, the rule is replicated to all supported regions */
|
|
116933
|
+
AllRegions?: boolean;
|
|
115869
116934
|
DestinationConfiguration?: OrganizationTelemetryRule_TelemetryDestinationConfiguration;
|
|
116935
|
+
/** List of AWS region codes where the rule should be replicated */
|
|
116936
|
+
Regions?: string[];
|
|
115870
116937
|
Scope?: string;
|
|
115871
116938
|
SelectionCriteria?: string;
|
|
115872
116939
|
TelemetrySourceTypes?: any;
|
|
@@ -117605,6 +118672,92 @@ export declare class PaymentConfiguration {
|
|
|
117605
118672
|
});
|
|
117606
118673
|
}
|
|
117607
118674
|
|
|
118675
|
+
export declare class PaymentCredentialProvider_CoinbaseCdpConfigurationInput {
|
|
118676
|
+
constructor(props: {
|
|
118677
|
+
/** The Coinbase CDP API key ID */
|
|
118678
|
+
ApiKeyId: string;
|
|
118679
|
+
/** The Coinbase CDP API key secret */
|
|
118680
|
+
ApiKeySecret: string;
|
|
118681
|
+
/** The Coinbase CDP wallet secret */
|
|
118682
|
+
WalletSecret?: string;
|
|
118683
|
+
});
|
|
118684
|
+
}
|
|
118685
|
+
|
|
118686
|
+
export declare class PaymentCredentialProvider_CoinbaseCdpConfigurationOutput {
|
|
118687
|
+
constructor(props: {
|
|
118688
|
+
/** The Coinbase CDP API key ID */
|
|
118689
|
+
ApiKeyId: string;
|
|
118690
|
+
ApiKeySecretArn: PaymentCredentialProvider_SecretInfo;
|
|
118691
|
+
WalletSecretArn?: PaymentCredentialProvider_SecretInfo;
|
|
118692
|
+
});
|
|
118693
|
+
}
|
|
118694
|
+
|
|
118695
|
+
export declare class PaymentCredentialProvider_PaymentProviderConfigurationInput {
|
|
118696
|
+
constructor(props: {
|
|
118697
|
+
CoinbaseCdpConfiguration?: PaymentCredentialProvider_CoinbaseCdpConfigurationInput;
|
|
118698
|
+
StripePrivyConfiguration?: PaymentCredentialProvider_StripePrivyConfigurationInput;
|
|
118699
|
+
});
|
|
118700
|
+
}
|
|
118701
|
+
|
|
118702
|
+
export declare class PaymentCredentialProvider_PaymentProviderConfigurationOutput {
|
|
118703
|
+
constructor(props: {
|
|
118704
|
+
CoinbaseCdpConfiguration?: PaymentCredentialProvider_CoinbaseCdpConfigurationOutput;
|
|
118705
|
+
StripePrivyConfiguration?: PaymentCredentialProvider_StripePrivyConfigurationOutput;
|
|
118706
|
+
});
|
|
118707
|
+
}
|
|
118708
|
+
|
|
118709
|
+
export declare class PaymentCredentialProvider_SecretInfo {
|
|
118710
|
+
constructor(props: {
|
|
118711
|
+
/** The ARN of the secret in AWS Secrets Manager */
|
|
118712
|
+
SecretArn: string;
|
|
118713
|
+
});
|
|
118714
|
+
}
|
|
118715
|
+
|
|
118716
|
+
export declare class PaymentCredentialProvider_StripePrivyConfigurationInput {
|
|
118717
|
+
constructor(props: {
|
|
118718
|
+
/** The app ID provided by Privy */
|
|
118719
|
+
AppId: string;
|
|
118720
|
+
/** The app secret provided by Privy */
|
|
118721
|
+
AppSecret: string;
|
|
118722
|
+
/** The authorization ID for the Stripe Privy integration */
|
|
118723
|
+
AuthorizationId: string;
|
|
118724
|
+
/** The authorization private key for the Stripe Privy integration */
|
|
118725
|
+
AuthorizationPrivateKey: string;
|
|
118726
|
+
});
|
|
118727
|
+
}
|
|
118728
|
+
|
|
118729
|
+
export declare class PaymentCredentialProvider_StripePrivyConfigurationOutput {
|
|
118730
|
+
constructor(props: {
|
|
118731
|
+
/** The app ID provided by Privy */
|
|
118732
|
+
AppId: string;
|
|
118733
|
+
AppSecretArn: PaymentCredentialProvider_SecretInfo;
|
|
118734
|
+
/** The authorization ID for the Stripe Privy integration */
|
|
118735
|
+
AuthorizationId: string;
|
|
118736
|
+
AuthorizationPrivateKeyArn: PaymentCredentialProvider_SecretInfo;
|
|
118737
|
+
});
|
|
118738
|
+
}
|
|
118739
|
+
|
|
118740
|
+
export declare class PaymentCredentialProvider_Tag {
|
|
118741
|
+
constructor(props: {
|
|
118742
|
+
Key: string;
|
|
118743
|
+
Value: string;
|
|
118744
|
+
});
|
|
118745
|
+
}
|
|
118746
|
+
|
|
118747
|
+
export declare class PaymentProviderConfigurationInput {
|
|
118748
|
+
constructor(props: {
|
|
118749
|
+
CoinbaseCdpConfiguration?: PaymentCredentialProvider_CoinbaseCdpConfigurationInput;
|
|
118750
|
+
StripePrivyConfiguration?: PaymentCredentialProvider_StripePrivyConfigurationInput;
|
|
118751
|
+
});
|
|
118752
|
+
}
|
|
118753
|
+
|
|
118754
|
+
export declare class PaymentProviderConfigurationOutput {
|
|
118755
|
+
constructor(props: {
|
|
118756
|
+
CoinbaseCdpConfiguration?: PaymentCredentialProvider_CoinbaseCdpConfigurationOutput;
|
|
118757
|
+
StripePrivyConfiguration?: PaymentCredentialProvider_StripePrivyConfigurationOutput;
|
|
118758
|
+
});
|
|
118759
|
+
}
|
|
118760
|
+
|
|
117608
118761
|
export declare class PCAConnectorADConnector_VpcInformation {
|
|
117609
118762
|
constructor(props: {
|
|
117610
118763
|
SecurityGroupIds: string[];
|
|
@@ -121225,12 +122378,14 @@ export declare class ProductionVariant {
|
|
|
121225
122378
|
InferenceAmiVersion?: string;
|
|
121226
122379
|
InitialInstanceCount?: number;
|
|
121227
122380
|
InitialVariantWeight?: number;
|
|
122381
|
+
InstancePools?: EndpointConfig_InstancePools[];
|
|
121228
122382
|
InstanceType?: string;
|
|
121229
122383
|
ManagedInstanceScaling?: EndpointConfig_ManagedInstanceScaling;
|
|
121230
122384
|
ModelDataDownloadTimeoutInSeconds?: number;
|
|
121231
122385
|
ModelName?: string;
|
|
121232
122386
|
RoutingConfig?: EndpointConfig_RoutingConfig;
|
|
121233
122387
|
ServerlessConfig?: EndpointConfig_ServerlessConfig;
|
|
122388
|
+
VariantInstanceProvisionTimeoutInSeconds?: number;
|
|
121234
122389
|
VolumeSizeInGB?: number;
|
|
121235
122390
|
});
|
|
121236
122391
|
}
|
|
@@ -134714,6 +135869,19 @@ export declare class RegisteredMCPServerDetails {
|
|
|
134714
135869
|
});
|
|
134715
135870
|
}
|
|
134716
135871
|
|
|
135872
|
+
export declare class RegisteredMCPServerGrafanaDetails {
|
|
135873
|
+
constructor(props: {
|
|
135874
|
+
/** MCP server authorization method */
|
|
135875
|
+
AuthorizationMethod: "bearer-token";
|
|
135876
|
+
/** MCP server endpoint URL */
|
|
135877
|
+
Endpoint: string;
|
|
135878
|
+
/** Optional description for the MCP server */
|
|
135879
|
+
Description?: string;
|
|
135880
|
+
/** MCP server name */
|
|
135881
|
+
Name?: string;
|
|
135882
|
+
});
|
|
135883
|
+
}
|
|
135884
|
+
|
|
134717
135885
|
export declare class RegisteredMCPServerSigV4Details {
|
|
134718
135886
|
constructor(props: {
|
|
134719
135887
|
/** The MCP server endpoint URL */
|
|
@@ -134902,6 +136070,19 @@ export declare class Relevance {
|
|
|
134902
136070
|
});
|
|
134903
136071
|
}
|
|
134904
136072
|
|
|
136073
|
+
export declare class RemediationConfiguration_ExecutionControls {
|
|
136074
|
+
constructor(props: {
|
|
136075
|
+
SsmControls?: RemediationConfiguration_SsmControls;
|
|
136076
|
+
});
|
|
136077
|
+
}
|
|
136078
|
+
|
|
136079
|
+
export declare class RemediationConfiguration_SsmControls {
|
|
136080
|
+
constructor(props: {
|
|
136081
|
+
ConcurrentExecutionRatePercentage?: number;
|
|
136082
|
+
ErrorPercentage?: number;
|
|
136083
|
+
});
|
|
136084
|
+
}
|
|
136085
|
+
|
|
134905
136086
|
export declare class RemixSettings {
|
|
134906
136087
|
constructor(props: {
|
|
134907
136088
|
ChannelMappings?: MediaLiveChannel_AudioChannelMapping[];
|
|
@@ -135686,8 +136867,11 @@ export declare class RequestBasedSli {
|
|
|
135686
136867
|
|
|
135687
136868
|
export declare class RequestBasedSliMetric {
|
|
135688
136869
|
constructor(props: {
|
|
136870
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
135689
136871
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
135690
136872
|
KeyAttributes?: any;
|
|
136873
|
+
MetricName?: string;
|
|
136874
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
135691
136875
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
135692
136876
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
135693
136877
|
MonitoredRequestCountMetric?: ServiceLevelObjective_MonitoredRequestCountMetric;
|
|
@@ -138236,6 +139420,7 @@ export declare class RuleBooleanExpression {
|
|
|
138236
139420
|
export declare class RuleConditionProperties {
|
|
138237
139421
|
constructor(props: {
|
|
138238
139422
|
Rules: MatchingWorkflow_RuleCondition[];
|
|
139423
|
+
MatchingConfig?: MatchingWorkflow_MatchingConfig;
|
|
138239
139424
|
});
|
|
138240
139425
|
}
|
|
138241
139426
|
|
|
@@ -138568,8 +139753,17 @@ export declare class Runtime_CustomJWTAuthorizerConfiguration {
|
|
|
138568
139753
|
});
|
|
138569
139754
|
}
|
|
138570
139755
|
|
|
139756
|
+
export declare class Runtime_EfsAccessPointConfiguration {
|
|
139757
|
+
constructor(props: {
|
|
139758
|
+
AccessPointArn: string;
|
|
139759
|
+
MountPath: string;
|
|
139760
|
+
});
|
|
139761
|
+
}
|
|
139762
|
+
|
|
138571
139763
|
export declare class Runtime_FilesystemConfiguration {
|
|
138572
139764
|
constructor(props: {
|
|
139765
|
+
EfsAccessPoint?: Runtime_EfsAccessPointConfiguration;
|
|
139766
|
+
S3FilesAccessPoint?: Runtime_S3FilesAccessPointConfiguration;
|
|
138573
139767
|
SessionStorage?: Runtime_SessionStorageConfiguration;
|
|
138574
139768
|
});
|
|
138575
139769
|
}
|
|
@@ -138596,6 +139790,13 @@ export declare class Runtime_RequestHeaderConfiguration {
|
|
|
138596
139790
|
});
|
|
138597
139791
|
}
|
|
138598
139792
|
|
|
139793
|
+
export declare class Runtime_S3FilesAccessPointConfiguration {
|
|
139794
|
+
constructor(props: {
|
|
139795
|
+
AccessPointArn: string;
|
|
139796
|
+
MountPath: string;
|
|
139797
|
+
});
|
|
139798
|
+
}
|
|
139799
|
+
|
|
138599
139800
|
export declare class Runtime_S3Location {
|
|
138600
139801
|
constructor(props: {
|
|
138601
139802
|
/** S3 bucket name */
|
|
@@ -138973,6 +140174,13 @@ export declare class S3FilesAccessPoint_RootDirectory {
|
|
|
138973
140174
|
});
|
|
138974
140175
|
}
|
|
138975
140176
|
|
|
140177
|
+
export declare class S3FilesAccessPointConfiguration {
|
|
140178
|
+
constructor(props: {
|
|
140179
|
+
AccessPointArn: string;
|
|
140180
|
+
MountPath: string;
|
|
140181
|
+
});
|
|
140182
|
+
}
|
|
140183
|
+
|
|
138976
140184
|
export declare class S3FilesFileSystem_ExpirationDataRule {
|
|
138977
140185
|
constructor(props: {
|
|
138978
140186
|
DaysAfterLastAccess: number;
|
|
@@ -139404,19 +140612,6 @@ export declare class S3Settings {
|
|
|
139404
140612
|
});
|
|
139405
140613
|
}
|
|
139406
140614
|
|
|
139407
|
-
export declare class S3Source {
|
|
139408
|
-
constructor(props: {
|
|
139409
|
-
/** <p>The Amazon Resource Name (ARN) for the data source.</p> */
|
|
139410
|
-
DataSourceArn: string;
|
|
139411
|
-
/** <p>A physical table type for an S3 data source.</p>
|
|
139412
|
-
<note>
|
|
139413
|
-
<p>For files that aren't JSON, only <code>STRING</code> data types are supported in input columns.</p>
|
|
139414
|
-
</note> */
|
|
139415
|
-
InputColumns: DataSet_InputColumn[];
|
|
139416
|
-
UploadSettings?: DataSet_UploadSettings;
|
|
139417
|
-
});
|
|
139418
|
-
}
|
|
139419
|
-
|
|
139420
140615
|
export declare class S3StorageConfig {
|
|
139421
140616
|
constructor(props: {
|
|
139422
140617
|
S3Uri: string;
|
|
@@ -142202,6 +143397,13 @@ export declare class Secret_Tag {
|
|
|
142202
143397
|
});
|
|
142203
143398
|
}
|
|
142204
143399
|
|
|
143400
|
+
export declare class SecretInfo {
|
|
143401
|
+
constructor(props: {
|
|
143402
|
+
/** The ARN of the secret in AWS Secrets Manager */
|
|
143403
|
+
SecretArn: string;
|
|
143404
|
+
});
|
|
143405
|
+
}
|
|
143406
|
+
|
|
142205
143407
|
export declare class SecretsManagerAccessTokenConfiguration {
|
|
142206
143408
|
constructor(props: {
|
|
142207
143409
|
/** <p>The name of the HTTP header used to supply the access token in requests to the source location.</p> */
|
|
@@ -142771,7 +143973,7 @@ export declare class SecurityHubAutomationRule_StringFilter {
|
|
|
142771
143973
|
+ ``ResourceType NOT_EQUALS AwsIamPolicy``
|
|
142772
143974
|
+ ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
|
|
142773
143975
|
|
|
142774
|
-
``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules V1. ``CONTAINS_WORD`` operator is only supported in ``GetFindingsV2``, ``GetFindingStatisticsV2``, ``GetResourcesV2``, and ``
|
|
143976
|
+
``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules V1. ``CONTAINS_WORD`` operator is only supported in ``GetFindingsV2``, ``GetFindingStatisticsV2``, ``GetResourcesV2``, and ``GetResourcesStatisticsV2`` APIs. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*. */
|
|
142775
143977
|
Comparison: SecurityHubAutomationRule_StringFilterComparison;
|
|
142776
143978
|
/** The string filter value. Filter values are case sensitive. For example, the product name for control-based findings is ``Security Hub CSPM``. If you provide ``security hub`` as the filter value, there's no match. */
|
|
142777
143979
|
Value: string;
|
|
@@ -143032,6 +144234,13 @@ export declare class SelectAttributes {
|
|
|
143032
144234
|
});
|
|
143033
144235
|
}
|
|
143034
144236
|
|
|
144237
|
+
export declare class SelectionConfig {
|
|
144238
|
+
constructor(props: {
|
|
144239
|
+
Type: ServiceLevelObjective_SelectionType;
|
|
144240
|
+
Pattern?: string;
|
|
144241
|
+
});
|
|
144242
|
+
}
|
|
144243
|
+
|
|
143035
144244
|
export declare class SelectionCriteria {
|
|
143036
144245
|
constructor(props: {
|
|
143037
144246
|
/** Delimiter to divide S3 key into hierarchy of prefixes. */
|
|
@@ -143154,6 +144363,7 @@ export declare class SemanticMemoryStrategy {
|
|
|
143154
144363
|
|
|
143155
144364
|
export declare class SemanticModelConfiguration {
|
|
143156
144365
|
constructor(props: {
|
|
144366
|
+
SemanticMetadata?: DataSet_DataSetSemanticMetadata[];
|
|
143157
144367
|
TableMap?: Record<string, unknown>;
|
|
143158
144368
|
});
|
|
143159
144369
|
}
|
|
@@ -143184,6 +144394,7 @@ export declare class SemanticTable {
|
|
|
143184
144394
|
Alias: string;
|
|
143185
144395
|
DestinationTableId: string;
|
|
143186
144396
|
RowLevelPermissionConfiguration?: DataSet_RowLevelPermissionConfiguration;
|
|
144397
|
+
SemanticMetadata?: DataSet_TableSemanticMetadata;
|
|
143187
144398
|
});
|
|
143188
144399
|
}
|
|
143189
144400
|
|
|
@@ -143831,6 +145042,19 @@ As soon as one calendar interval ends, another automatically begins. */
|
|
|
143831
145042
|
});
|
|
143832
145043
|
}
|
|
143833
145044
|
|
|
145045
|
+
export declare class ServiceLevelObjective_CompositeSliComponent {
|
|
145046
|
+
constructor(props: {
|
|
145047
|
+
OperationName: string;
|
|
145048
|
+
});
|
|
145049
|
+
}
|
|
145050
|
+
|
|
145051
|
+
export declare class ServiceLevelObjective_CompositeSliConfig {
|
|
145052
|
+
constructor(props: {
|
|
145053
|
+
SelectionConfig: ServiceLevelObjective_SelectionConfig;
|
|
145054
|
+
CompositeSliComponents?: any;
|
|
145055
|
+
});
|
|
145056
|
+
}
|
|
145057
|
+
|
|
143834
145058
|
export declare class ServiceLevelObjective_DependencyConfig {
|
|
143835
145059
|
constructor(props: {
|
|
143836
145060
|
DependencyKeyAttributes: any;
|
|
@@ -143903,6 +145127,13 @@ export declare class ServiceLevelObjective_MetricDataQuery {
|
|
|
143903
145127
|
});
|
|
143904
145128
|
}
|
|
143905
145129
|
|
|
145130
|
+
export declare class ServiceLevelObjective_MetricSource {
|
|
145131
|
+
constructor(props: {
|
|
145132
|
+
MetricSourceKeyAttributes: any;
|
|
145133
|
+
MetricSourceAttributes?: any;
|
|
145134
|
+
});
|
|
145135
|
+
}
|
|
145136
|
+
|
|
143906
145137
|
export declare class ServiceLevelObjective_MetricStat {
|
|
143907
145138
|
constructor(props: {
|
|
143908
145139
|
Metric: ServiceLevelObjective_Metric;
|
|
@@ -143943,8 +145174,11 @@ export declare class ServiceLevelObjective_RequestBasedSli {
|
|
|
143943
145174
|
|
|
143944
145175
|
export declare class ServiceLevelObjective_RequestBasedSliMetric {
|
|
143945
145176
|
constructor(props: {
|
|
145177
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
143946
145178
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
143947
145179
|
KeyAttributes?: any;
|
|
145180
|
+
MetricName?: string;
|
|
145181
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
143948
145182
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
143949
145183
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
143950
145184
|
MonitoredRequestCountMetric?: ServiceLevelObjective_MonitoredRequestCountMetric;
|
|
@@ -143962,6 +145196,13 @@ export declare class ServiceLevelObjective_RollingInterval {
|
|
|
143962
145196
|
});
|
|
143963
145197
|
}
|
|
143964
145198
|
|
|
145199
|
+
export declare class ServiceLevelObjective_SelectionConfig {
|
|
145200
|
+
constructor(props: {
|
|
145201
|
+
Type: ServiceLevelObjective_SelectionType;
|
|
145202
|
+
Pattern?: string;
|
|
145203
|
+
});
|
|
145204
|
+
}
|
|
145205
|
+
|
|
143965
145206
|
export declare class ServiceLevelObjective_Sli {
|
|
143966
145207
|
constructor(props: {
|
|
143967
145208
|
/** The arithmetic operation used when comparing the specified metric to the threshold. */
|
|
@@ -143974,9 +145215,12 @@ export declare class ServiceLevelObjective_Sli {
|
|
|
143974
145215
|
|
|
143975
145216
|
export declare class ServiceLevelObjective_SliMetric {
|
|
143976
145217
|
constructor(props: {
|
|
145218
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
143977
145219
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
143978
145220
|
KeyAttributes?: any;
|
|
143979
145221
|
MetricDataQueries?: any;
|
|
145222
|
+
MetricName?: string;
|
|
145223
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
143980
145224
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
143981
145225
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
143982
145226
|
/** If the SLO monitors a specific operation of the service, this field displays that operation name. */
|
|
@@ -144499,12 +145743,6 @@ export declare class SessionStickinessConfig {
|
|
|
144499
145743
|
});
|
|
144500
145744
|
}
|
|
144501
145745
|
|
|
144502
|
-
export declare class SessionStorageConfiguration {
|
|
144503
|
-
constructor(props: {
|
|
144504
|
-
MountPath: string;
|
|
144505
|
-
});
|
|
144506
|
-
}
|
|
144507
|
-
|
|
144508
145746
|
export declare class SessionSummaryConfiguration {
|
|
144509
145747
|
constructor(props: {
|
|
144510
145748
|
/** Maximum number of Sessions to Summarize */
|
|
@@ -144612,6 +145850,13 @@ export declare class ShareAttributes {
|
|
|
144612
145850
|
});
|
|
144613
145851
|
}
|
|
144614
145852
|
|
|
145853
|
+
export declare class SharedColumnSemanticMetadata {
|
|
145854
|
+
constructor(props: {
|
|
145855
|
+
ColumnProperties: DataSet_ColumnSemanticProperty[];
|
|
145856
|
+
ColumnNames?: string[];
|
|
145857
|
+
});
|
|
145858
|
+
}
|
|
145859
|
+
|
|
144615
145860
|
export declare class SharePointConfiguration {
|
|
144616
145861
|
constructor(props: {
|
|
144617
145862
|
SecretArn: string;
|
|
@@ -145276,9 +146521,12 @@ export declare class Sli {
|
|
|
145276
146521
|
|
|
145277
146522
|
export declare class SliMetric {
|
|
145278
146523
|
constructor(props: {
|
|
146524
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
145279
146525
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
145280
146526
|
KeyAttributes?: any;
|
|
145281
146527
|
MetricDataQueries?: any;
|
|
146528
|
+
MetricName?: string;
|
|
146529
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
145282
146530
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
145283
146531
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
145284
146532
|
/** If the SLO monitors a specific operation of the service, this field displays that operation name. */
|
|
@@ -147244,6 +148492,13 @@ export declare class SSMContactsPlan_Targets {
|
|
|
147244
148492
|
});
|
|
147245
148493
|
}
|
|
147246
148494
|
|
|
148495
|
+
export declare class SsmControls {
|
|
148496
|
+
constructor(props: {
|
|
148497
|
+
ConcurrentExecutionRatePercentage?: number;
|
|
148498
|
+
ErrorPercentage?: number;
|
|
148499
|
+
});
|
|
148500
|
+
}
|
|
148501
|
+
|
|
147247
148502
|
export declare class SSMLMessage {
|
|
147248
148503
|
constructor(props: {
|
|
147249
148504
|
Value: string;
|
|
@@ -148488,6 +149743,30 @@ export declare class StringValidation {
|
|
|
148488
149743
|
});
|
|
148489
149744
|
}
|
|
148490
149745
|
|
|
149746
|
+
export declare class StripePrivyConfigurationInput {
|
|
149747
|
+
constructor(props: {
|
|
149748
|
+
/** The app ID provided by Privy */
|
|
149749
|
+
AppId: string;
|
|
149750
|
+
/** The app secret provided by Privy */
|
|
149751
|
+
AppSecret: string;
|
|
149752
|
+
/** The authorization ID for the Stripe Privy integration */
|
|
149753
|
+
AuthorizationId: string;
|
|
149754
|
+
/** The authorization private key for the Stripe Privy integration */
|
|
149755
|
+
AuthorizationPrivateKey: string;
|
|
149756
|
+
});
|
|
149757
|
+
}
|
|
149758
|
+
|
|
149759
|
+
export declare class StripePrivyConfigurationOutput {
|
|
149760
|
+
constructor(props: {
|
|
149761
|
+
/** The app ID provided by Privy */
|
|
149762
|
+
AppId: string;
|
|
149763
|
+
AppSecretArn: PaymentCredentialProvider_SecretInfo;
|
|
149764
|
+
/** The authorization ID for the Stripe Privy integration */
|
|
149765
|
+
AuthorizationId: string;
|
|
149766
|
+
AuthorizationPrivateKeyArn: PaymentCredentialProvider_SecretInfo;
|
|
149767
|
+
});
|
|
149768
|
+
}
|
|
149769
|
+
|
|
148491
149770
|
export declare class Studio_Tag {
|
|
148492
149771
|
constructor(props: {
|
|
148493
149772
|
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
@@ -149391,6 +150670,12 @@ export declare class TablePathElement {
|
|
|
149391
150670
|
});
|
|
149392
150671
|
}
|
|
149393
150672
|
|
|
150673
|
+
export declare class TableSemanticMetadata {
|
|
150674
|
+
constructor(props: {
|
|
150675
|
+
ColumnMetadata?: DataSet_SharedColumnSemanticMetadata[];
|
|
150676
|
+
});
|
|
150677
|
+
}
|
|
150678
|
+
|
|
149394
150679
|
export declare class TagAssociation_DatabaseResource {
|
|
149395
150680
|
constructor(props: {
|
|
149396
150681
|
CatalogId: string;
|
|
@@ -150884,6 +152169,17 @@ export declare class TelemetryRule_LoggingFilter {
|
|
|
150884
152169
|
});
|
|
150885
152170
|
}
|
|
150886
152171
|
|
|
152172
|
+
export declare class TelemetryRule_RegionStatus {
|
|
152173
|
+
constructor(props: {
|
|
152174
|
+
/** The AWS region code */
|
|
152175
|
+
Region?: string;
|
|
152176
|
+
/** The ARN of the rule in this region */
|
|
152177
|
+
RuleArn?: string;
|
|
152178
|
+
/** The replication status of the rule in this region */
|
|
152179
|
+
Status?: string;
|
|
152180
|
+
});
|
|
152181
|
+
}
|
|
152182
|
+
|
|
150887
152183
|
export declare class TelemetryRule_SingleHeader {
|
|
150888
152184
|
constructor(props: {
|
|
150889
152185
|
/** The name of the header */
|
|
@@ -150906,7 +152202,7 @@ export declare class TelemetryRule_TelemetryDestinationConfiguration {
|
|
|
150906
152202
|
DestinationPattern?: string;
|
|
150907
152203
|
DestinationType?: TelemetryRule_DestinationType;
|
|
150908
152204
|
ELBLoadBalancerLoggingParameters?: TelemetryRule_ELBLoadBalancerLoggingParameters;
|
|
150909
|
-
/** Parameters for
|
|
152205
|
+
/** Parameters for log delivery configuration */
|
|
150910
152206
|
LogDeliveryParameters?: Record<string, unknown>;
|
|
150911
152207
|
RetentionInDays?: number;
|
|
150912
152208
|
VPCFlowLogParameters?: TelemetryRule_VPCFlowLogParameters;
|
|
@@ -150918,7 +152214,12 @@ export declare class TelemetryRule_TelemetryRule {
|
|
|
150918
152214
|
constructor(props: {
|
|
150919
152215
|
ResourceType: TelemetryRule_ResourceType;
|
|
150920
152216
|
TelemetryType: TelemetryRule_TelemetryType;
|
|
152217
|
+
AllowFieldUpdates?: boolean;
|
|
152218
|
+
/** When true, the rule is replicated to all supported regions */
|
|
152219
|
+
AllRegions?: boolean;
|
|
150921
152220
|
DestinationConfiguration?: TelemetryRule_TelemetryDestinationConfiguration;
|
|
152221
|
+
/** List of AWS region codes where the rule should be replicated */
|
|
152222
|
+
Regions?: string[];
|
|
150922
152223
|
SelectionCriteria?: string;
|
|
150923
152224
|
TelemetrySourceTypes?: any;
|
|
150924
152225
|
});
|
|
@@ -154076,6 +155377,12 @@ export declare class UplinkSpectrumConfig {
|
|
|
154076
155377
|
});
|
|
154077
155378
|
}
|
|
154078
155379
|
|
|
155380
|
+
export declare class UploadedDocumentMetadata {
|
|
155381
|
+
constructor(props: {
|
|
155382
|
+
Name?: string;
|
|
155383
|
+
});
|
|
155384
|
+
}
|
|
155385
|
+
|
|
154079
155386
|
export declare class UploadSettings {
|
|
154080
155387
|
constructor(props: {
|
|
154081
155388
|
/** <p>Whether the file has a header row, or the files each have a header row.</p> */
|
|
@@ -159015,6 +160322,8 @@ export declare class WebApp_Tag {
|
|
|
159015
160322
|
|
|
159016
160323
|
export declare class WebApp_Vpc {
|
|
159017
160324
|
constructor(props: {
|
|
160325
|
+
/** The IP address type for the VPC endpoint used by the web app. */
|
|
160326
|
+
IpAddressType?: "DUALSTACK" | "IPV4";
|
|
159018
160327
|
SecurityGroupIds?: string[];
|
|
159019
160328
|
SubnetIds?: string[];
|
|
159020
160329
|
VpcId?: string;
|
|
@@ -161707,6 +163016,7 @@ export type ARCRegionSwitchPlan_ExecutionBlockType =
|
|
|
161707
163016
|
| "EC2AutoScaling"
|
|
161708
163017
|
| "ECSServiceScaling"
|
|
161709
163018
|
| "EKSResourceScaling"
|
|
163019
|
+
| "LambdaEventSourceMapping"
|
|
161710
163020
|
| "ManualApproval"
|
|
161711
163021
|
| "Parallel"
|
|
161712
163022
|
| "RdsCreateCrossRegionReplica"
|
|
@@ -162755,7 +164065,7 @@ export type Bot_SpeechDetectionSensitivity =
|
|
|
162755
164065
|
| "HighNoiseTolerance"
|
|
162756
164066
|
| "MaximumNoiseTolerance";
|
|
162757
164067
|
|
|
162758
|
-
export type Bot_SpeechModelPreference = "Deepgram" | "Neural" | "Standard";
|
|
164068
|
+
export type Bot_SpeechModelPreference = "Deepgram" | "Enhanced" | "Neural" | "Standard";
|
|
162759
164069
|
|
|
162760
164070
|
export type BotAlias_BotAliasStatus = "Available" | "Creating" | "Deleting" | "Failed";
|
|
162761
164071
|
|
|
@@ -163788,6 +165098,7 @@ export type DevOpsAgentService_ServiceType =
|
|
|
163788
165098
|
| "dynatrace"
|
|
163789
165099
|
| "gitlab"
|
|
163790
165100
|
| "mcpserver"
|
|
165101
|
+
| "mcpservergrafana"
|
|
163791
165102
|
| "mcpservernewrelic"
|
|
163792
165103
|
| "mcpserversigv4"
|
|
163793
165104
|
| "mcpserversplunk"
|
|
@@ -163880,7 +165191,7 @@ export type Export_FrequencyOption = "SYNCHRONOUS";
|
|
|
163880
165191
|
|
|
163881
165192
|
export type Export_OverwriteOption = "CREATE_NEW_REPORT" | "OVERWRITE_REPORT";
|
|
163882
165193
|
|
|
163883
|
-
export type Export_S3OutputType = "CUSTOM";
|
|
165194
|
+
export type Export_S3OutputType = "ATHENA" | "CUSTOM" | "REDSHIFT";
|
|
163884
165195
|
|
|
163885
165196
|
export type ExpressGatewayService_AccessType = "PRIVATE" | "PUBLIC";
|
|
163886
165197
|
|
|
@@ -164186,6 +165497,15 @@ export type Guardrail_TopicType = "DENY";
|
|
|
164186
165497
|
|
|
164187
165498
|
export type Guardrail_WordAction = "BLOCK" | "NONE";
|
|
164188
165499
|
|
|
165500
|
+
export type Harness_HarnessStatus =
|
|
165501
|
+
| "CREATE_FAILED"
|
|
165502
|
+
| "CREATING"
|
|
165503
|
+
| "DELETE_FAILED"
|
|
165504
|
+
| "DELETING"
|
|
165505
|
+
| "READY"
|
|
165506
|
+
| "UPDATE_FAILED"
|
|
165507
|
+
| "UPDATING";
|
|
165508
|
+
|
|
164189
165509
|
export type HealthImagingDatastore_DatastoreStatus =
|
|
164190
165510
|
| "ACTIVE"
|
|
164191
165511
|
| "CREATE_FAILED"
|
|
@@ -165144,6 +166464,7 @@ export type OrganizationTelemetryRule_ResourceType =
|
|
|
165144
166464
|
| "AWS::EC2::VPC"
|
|
165145
166465
|
| "AWS::EKS::Cluster"
|
|
165146
166466
|
| "AWS::ElasticLoadBalancingV2::LoadBalancer"
|
|
166467
|
+
| "AWS::SecurityHub::Hub"
|
|
165147
166468
|
| "AWS::WAFv2::WebACL";
|
|
165148
166469
|
|
|
165149
166470
|
export type OrganizationTelemetryRule_TelemetrySourceType =
|
|
@@ -165198,6 +166519,10 @@ export type Partnership_X12GS05TimeFormat = "HHMM" | "HHMMSS" | "HHMMSSDD";
|
|
|
165198
166519
|
|
|
165199
166520
|
export type Partnership_X12TechnicalAcknowledgment = "DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS";
|
|
165200
166521
|
|
|
166522
|
+
export type PaymentCredentialProvider_PaymentCredentialProviderVendorType =
|
|
166523
|
+
| "CoinbaseCDP"
|
|
166524
|
+
| "StripePrivy";
|
|
166525
|
+
|
|
165201
166526
|
export type PCAConnectorADTemplate_ApplicationPolicyType =
|
|
165202
166527
|
| "ALL_APPLICATION_POLICIES"
|
|
165203
166528
|
| "ANY_PURPOSE"
|
|
@@ -166067,8 +167392,10 @@ export type QuickSightDataSource_DataSourceType =
|
|
|
166067
167392
|
| "DYNAMODB"
|
|
166068
167393
|
| "EXASOL"
|
|
166069
167394
|
| "FILE"
|
|
167395
|
+
| "FULLY_MANAGED_KNOWLEDGE_BASE"
|
|
166070
167396
|
| "GITHUB"
|
|
166071
167397
|
| "GLUE"
|
|
167398
|
+
| "GOOGLESHEETS"
|
|
166072
167399
|
| "GOOGLE_ANALYTICS"
|
|
166073
167400
|
| "GOOGLE_DRIVE"
|
|
166074
167401
|
| "IMPALA"
|
|
@@ -167538,6 +168865,8 @@ export type Server_TlsSessionResumptionMode = "DISABLED" | "ENABLED" | "ENFORCED
|
|
|
167538
168865
|
|
|
167539
168866
|
export type ServiceLevelObjective_DurationUnit = "DAY" | "HOUR" | "MINUTE" | "MONTH";
|
|
167540
168867
|
|
|
168868
|
+
export type ServiceLevelObjective_SelectionType = "EXPLICIT" | "PREFIX" | "REGEX";
|
|
168869
|
+
|
|
167541
168870
|
export type ServiceTemplate_Provisioning = "CUSTOMER_MANAGED";
|
|
167542
168871
|
|
|
167543
168872
|
export type SessionLogger_Event =
|
|
@@ -167721,6 +169050,7 @@ export type TelemetryRule_ResourceType =
|
|
|
167721
169050
|
| "AWS::EC2::VPC"
|
|
167722
169051
|
| "AWS::EKS::Cluster"
|
|
167723
169052
|
| "AWS::ElasticLoadBalancingV2::LoadBalancer"
|
|
169053
|
+
| "AWS::SecurityHub::Hub"
|
|
167724
169054
|
| "AWS::WAFv2::WebACL";
|
|
167725
169055
|
|
|
167726
169056
|
export type TelemetryRule_TelemetrySourceType =
|