@intentius/chant-lexicon-aws 0.1.11 → 0.1.13
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 +883 -50
- package/dist/types/index.d.ts +1324 -119
- package/package.json +3 -3
- package/src/codegen/docs.ts +1 -1
- package/src/generated/index.d.ts +1324 -119
- package/src/generated/index.ts +136 -6
- package/src/generated/lexicon-aws.json +883 -50
package/dist/types/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;
|
|
@@ -24532,6 +24645,28 @@ export declare class PatchBaseline {
|
|
|
24532
24645
|
readonly Id: string;
|
|
24533
24646
|
}
|
|
24534
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
|
+
|
|
24535
24670
|
export declare class PaymentCryptographyAlias {
|
|
24536
24671
|
constructor(props: {
|
|
24537
24672
|
AliasName: string;
|
|
@@ -27520,7 +27655,9 @@ export declare class ReplicationGroup {
|
|
|
27520
27655
|
ReadEndPoint?: Record<string, unknown>;
|
|
27521
27656
|
/** The endpoint of the reader node in the replication group. */
|
|
27522
27657
|
ReaderEndPoint?: ReplicationGroup_Endpoint;
|
|
27523
|
-
/** 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. */
|
|
27524
27661
|
ReplicasPerNodeGroup?: number;
|
|
27525
27662
|
/** The replication group identifier. This parameter is stored as a lowercase string. */
|
|
27526
27663
|
ReplicationGroupId?: string;
|
|
@@ -38129,6 +38266,12 @@ export declare class AdditionalInstanceConfiguration {
|
|
|
38129
38266
|
});
|
|
38130
38267
|
}
|
|
38131
38268
|
|
|
38269
|
+
export declare class AdditionalNotes {
|
|
38270
|
+
constructor(props: {
|
|
38271
|
+
Text?: string;
|
|
38272
|
+
});
|
|
38273
|
+
}
|
|
38274
|
+
|
|
38132
38275
|
export declare class AdditionalStorageVolume {
|
|
38133
38276
|
constructor(props: {
|
|
38134
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). */
|
|
@@ -48272,6 +48415,14 @@ export declare class ARCRegionSwitchPlan_EksResourceScalingUngraceful {
|
|
|
48272
48415
|
});
|
|
48273
48416
|
}
|
|
48274
48417
|
|
|
48418
|
+
export declare class ARCRegionSwitchPlan_EventSourceMapping {
|
|
48419
|
+
constructor(props: {
|
|
48420
|
+
Arn: string;
|
|
48421
|
+
CrossAccountRole?: string;
|
|
48422
|
+
ExternalId?: string;
|
|
48423
|
+
});
|
|
48424
|
+
}
|
|
48425
|
+
|
|
48275
48426
|
export declare class ARCRegionSwitchPlan_ExecutionApprovalConfiguration {
|
|
48276
48427
|
constructor(props: {
|
|
48277
48428
|
ApprovalRole: string;
|
|
@@ -48319,6 +48470,21 @@ export declare class ARCRegionSwitchPlan_KubernetesScalingResource {
|
|
|
48319
48470
|
});
|
|
48320
48471
|
}
|
|
48321
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
|
+
|
|
48322
48488
|
export declare class ARCRegionSwitchPlan_Lambdas {
|
|
48323
48489
|
constructor(props: {
|
|
48324
48490
|
Arn?: string;
|
|
@@ -49586,12 +49752,6 @@ export declare class AuthorizerConfig {
|
|
|
49586
49752
|
});
|
|
49587
49753
|
}
|
|
49588
49754
|
|
|
49589
|
-
export declare class AuthorizerConfiguration {
|
|
49590
|
-
constructor(props: {
|
|
49591
|
-
CustomJWTAuthorizer?: Runtime_CustomJWTAuthorizerConfiguration;
|
|
49592
|
-
});
|
|
49593
|
-
}
|
|
49594
|
-
|
|
49595
49755
|
export declare class AuthParameters {
|
|
49596
49756
|
constructor(props: {
|
|
49597
49757
|
ApiKeyAuthParameters?: EventsConnection_ApiKeyAuthParameters;
|
|
@@ -52051,6 +52211,34 @@ export declare class BedrockAgent_SessionSummaryConfiguration {
|
|
|
52051
52211
|
});
|
|
52052
52212
|
}
|
|
52053
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
|
+
|
|
52054
52242
|
export declare class BedrockAgentCoreGateway_AuthorizingClaimMatchValueType {
|
|
52055
52243
|
constructor(props: {
|
|
52056
52244
|
ClaimMatchOperator: BedrockAgentCoreGateway_ClaimMatchOperator;
|
|
@@ -58132,7 +58320,7 @@ export declare class CfDistribution_LegacyS3Origin {
|
|
|
58132
58320
|
/** The domain name assigned to your CF distribution. */
|
|
58133
58321
|
DNSName: string;
|
|
58134
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.
|
|
58135
|
-
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. */
|
|
58136
58324
|
OriginAccessIdentity?: string;
|
|
58137
58325
|
});
|
|
58138
58326
|
}
|
|
@@ -60727,6 +60915,26 @@ export declare class CognitoUserPoolConfiguration {
|
|
|
60727
60915
|
});
|
|
60728
60916
|
}
|
|
60729
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
|
+
|
|
60730
60938
|
export declare class Collaboration_DataEncryptionMetadata {
|
|
60731
60939
|
constructor(props: {
|
|
60732
60940
|
AllowCleartext: boolean;
|
|
@@ -60891,6 +61099,20 @@ export declare class ColumnLevelPermissionRule {
|
|
|
60891
61099
|
});
|
|
60892
61100
|
}
|
|
60893
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
|
+
|
|
60894
61116
|
export declare class ColumnStatisticsConfiguration {
|
|
60895
61117
|
constructor(props: {
|
|
60896
61118
|
Statistics: DataBrewJob_StatisticsConfiguration;
|
|
@@ -61533,6 +61755,19 @@ export declare class CompositeFilter {
|
|
|
61533
61755
|
});
|
|
61534
61756
|
}
|
|
61535
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
|
+
|
|
61536
61771
|
export declare class CompositeSlotTypeSetting {
|
|
61537
61772
|
constructor(props: {
|
|
61538
61773
|
SubSlots?: Bot_SubSlotTypeComposition[];
|
|
@@ -64705,12 +64940,6 @@ export declare class ContainerAction {
|
|
|
64705
64940
|
});
|
|
64706
64941
|
}
|
|
64707
64942
|
|
|
64708
|
-
export declare class ContainerConfiguration {
|
|
64709
|
-
constructor(props: {
|
|
64710
|
-
ContainerUri: string;
|
|
64711
|
-
});
|
|
64712
|
-
}
|
|
64713
|
-
|
|
64714
64943
|
export declare class ContainerDistributionConfiguration {
|
|
64715
64944
|
constructor(props: {
|
|
64716
64945
|
/** Tags that are attached to the container distribution configuration. */
|
|
@@ -65583,6 +65812,8 @@ export declare class CpuOptions {
|
|
|
65583
65812
|
AmdSevSnp?: "disabled" | "enabled";
|
|
65584
65813
|
/** The number of CPU cores for the instance. */
|
|
65585
65814
|
CoreCount?: number;
|
|
65815
|
+
/** Indicates whether the instance is enabled for nested virtualization. */
|
|
65816
|
+
NestedVirtualization?: "disabled" | "enabled";
|
|
65586
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``. */
|
|
65587
65818
|
ThreadsPerCore?: number;
|
|
65588
65819
|
});
|
|
@@ -66893,6 +67124,12 @@ export declare class CustomImageContainerEnvironmentVariable {
|
|
|
66893
67124
|
});
|
|
66894
67125
|
}
|
|
66895
67126
|
|
|
67127
|
+
export declare class CustomInstruction {
|
|
67128
|
+
constructor(props: {
|
|
67129
|
+
InlineCustomInstruction?: DataSet_InlineCustomInstruction;
|
|
67130
|
+
});
|
|
67131
|
+
}
|
|
67132
|
+
|
|
66896
67133
|
export declare class CustomInstructions {
|
|
66897
67134
|
constructor(props: {
|
|
66898
67135
|
CustomInstructionsString: string;
|
|
@@ -67543,6 +67780,15 @@ export declare class CwAnomalyDetector_SingleMetricAnomalyDetector {
|
|
|
67543
67780
|
});
|
|
67544
67781
|
}
|
|
67545
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
|
+
|
|
67546
67792
|
export declare class Daemon_DaemonAlarmConfiguration {
|
|
67547
67793
|
constructor(props: {
|
|
67548
67794
|
/** The CloudWatch alarm names to monitor during a daemon deployment. */
|
|
@@ -67821,8 +68067,7 @@ export declare class DaemonTaskDefinition_LinuxParameters {
|
|
|
67821
68067
|
Devices?: DaemonTaskDefinition_Device[];
|
|
67822
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}}'`` */
|
|
67823
68069
|
InitProcessEnabled?: boolean;
|
|
67824
|
-
/** The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the ``--tmpfs`` option to docker run.
|
|
67825
|
-
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. */
|
|
67826
68071
|
Tmpfs?: DaemonTaskDefinition_Tmpfs[];
|
|
67827
68072
|
});
|
|
67828
68073
|
}
|
|
@@ -67944,7 +68189,8 @@ export declare class DaemonTaskDefinition_Volume {
|
|
|
67944
68189
|
/** The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.
|
|
67945
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.
|
|
67946
68191
|
For all other types of volumes, this name is referenced in the ``sourceVolume`` parameter of the ``mountPoints`` object in the container definition.
|
|
67947
|
-
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. */
|
|
67948
68194
|
Name?: string;
|
|
67949
68195
|
});
|
|
67950
68196
|
}
|
|
@@ -70149,6 +70395,12 @@ export declare class Dataset {
|
|
|
70149
70395
|
});
|
|
70150
70396
|
}
|
|
70151
70397
|
|
|
70398
|
+
export declare class DataSet_AdditionalNotes {
|
|
70399
|
+
constructor(props: {
|
|
70400
|
+
Text?: string;
|
|
70401
|
+
});
|
|
70402
|
+
}
|
|
70403
|
+
|
|
70152
70404
|
export declare class DataSet_AggregateOperation {
|
|
70153
70405
|
constructor(props: {
|
|
70154
70406
|
Aggregations: DataSet_Aggregation[];
|
|
@@ -70237,6 +70489,20 @@ export declare class DataSet_ColumnLevelPermissionRule {
|
|
|
70237
70489
|
});
|
|
70238
70490
|
}
|
|
70239
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
|
+
|
|
70240
70506
|
export declare class DataSet_ColumnTag {
|
|
70241
70507
|
constructor(props: {
|
|
70242
70508
|
ColumnDescription?: DataSet_ColumnDescription;
|
|
@@ -70260,6 +70526,12 @@ export declare class DataSet_CreateColumnsOperation {
|
|
|
70260
70526
|
});
|
|
70261
70527
|
}
|
|
70262
70528
|
|
|
70529
|
+
export declare class DataSet_CustomInstruction {
|
|
70530
|
+
constructor(props: {
|
|
70531
|
+
InlineCustomInstruction?: DataSet_InlineCustomInstruction;
|
|
70532
|
+
});
|
|
70533
|
+
}
|
|
70534
|
+
|
|
70263
70535
|
export declare class DataSet_CustomSql {
|
|
70264
70536
|
constructor(props: {
|
|
70265
70537
|
/** <p>The column schema from the SQL query result set.</p> */
|
|
@@ -70394,6 +70666,19 @@ export declare class DataSet_DataSetRefreshProperties {
|
|
|
70394
70666
|
});
|
|
70395
70667
|
}
|
|
70396
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
|
+
|
|
70397
70682
|
export declare class DataSet_DataSetStringComparisonFilterCondition {
|
|
70398
70683
|
constructor(props: {
|
|
70399
70684
|
Operator: DataSet_DataSetStringComparisonFilterOperator;
|
|
@@ -70556,6 +70841,13 @@ export declare class DataSet_IngestionWaitPolicy {
|
|
|
70556
70841
|
});
|
|
70557
70842
|
}
|
|
70558
70843
|
|
|
70844
|
+
export declare class DataSet_InlineCustomInstruction {
|
|
70845
|
+
constructor(props: {
|
|
70846
|
+
InstructionText: string;
|
|
70847
|
+
UploadedDocumentMetadata?: DataSet_UploadedDocumentMetadata;
|
|
70848
|
+
});
|
|
70849
|
+
}
|
|
70850
|
+
|
|
70559
70851
|
export declare class DataSet_InputColumn {
|
|
70560
70852
|
constructor(props: {
|
|
70561
70853
|
/** <p>The name of this column in the underlying data source.</p> */
|
|
@@ -70890,6 +71182,7 @@ export declare class DataSet_SaaSTable {
|
|
|
70890
71182
|
|
|
70891
71183
|
export declare class DataSet_SemanticModelConfiguration {
|
|
70892
71184
|
constructor(props: {
|
|
71185
|
+
SemanticMetadata?: DataSet_DataSetSemanticMetadata[];
|
|
70893
71186
|
TableMap?: Record<string, unknown>;
|
|
70894
71187
|
});
|
|
70895
71188
|
}
|
|
@@ -70899,6 +71192,14 @@ export declare class DataSet_SemanticTable {
|
|
|
70899
71192
|
Alias: string;
|
|
70900
71193
|
DestinationTableId: string;
|
|
70901
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[];
|
|
70902
71203
|
});
|
|
70903
71204
|
}
|
|
70904
71205
|
|
|
@@ -70934,6 +71235,12 @@ export declare class DataSet_TablePathElement {
|
|
|
70934
71235
|
});
|
|
70935
71236
|
}
|
|
70936
71237
|
|
|
71238
|
+
export declare class DataSet_TableSemanticMetadata {
|
|
71239
|
+
constructor(props: {
|
|
71240
|
+
ColumnMetadata?: DataSet_SharedColumnSemanticMetadata[];
|
|
71241
|
+
});
|
|
71242
|
+
}
|
|
71243
|
+
|
|
70937
71244
|
export declare class DataSet_Tag {
|
|
70938
71245
|
constructor(props: {
|
|
70939
71246
|
/** <p>Tag key.</p> */
|
|
@@ -71018,6 +71325,12 @@ export declare class DataSet_UntagColumnOperation {
|
|
|
71018
71325
|
});
|
|
71019
71326
|
}
|
|
71020
71327
|
|
|
71328
|
+
export declare class DataSet_UploadedDocumentMetadata {
|
|
71329
|
+
constructor(props: {
|
|
71330
|
+
Name?: string;
|
|
71331
|
+
});
|
|
71332
|
+
}
|
|
71333
|
+
|
|
71021
71334
|
export declare class DataSet_UploadSettings {
|
|
71022
71335
|
constructor(props: {
|
|
71023
71336
|
/** <p>Whether the file has a header row, or the files each have a header row.</p> */
|
|
@@ -71196,6 +71509,19 @@ export declare class DataSetSchema {
|
|
|
71196
71509
|
});
|
|
71197
71510
|
}
|
|
71198
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
|
+
|
|
71199
71525
|
export declare class DatasetSource {
|
|
71200
71526
|
constructor(props: {
|
|
71201
71527
|
/** The format of the dataset source associated with the dataset. */
|
|
@@ -71319,6 +71645,13 @@ export declare class DataSourceToIndexFieldMapping {
|
|
|
71319
71645
|
});
|
|
71320
71646
|
}
|
|
71321
71647
|
|
|
71648
|
+
export declare class DataSourceType {
|
|
71649
|
+
constructor(props: {
|
|
71650
|
+
InlineExamples?: BedrockAgentCoreDataset_InlineExamplesSource;
|
|
71651
|
+
S3Source?: BedrockAgentCoreDataset_S3Source;
|
|
71652
|
+
});
|
|
71653
|
+
}
|
|
71654
|
+
|
|
71322
71655
|
export declare class DataStorage {
|
|
71323
71656
|
constructor(props: {
|
|
71324
71657
|
/** The unit of cached data capacity of the Serverless Cache. */
|
|
@@ -73932,9 +74265,6 @@ export declare class DeploymentIoTJobConfiguration {
|
|
|
73932
74265
|
|
|
73933
74266
|
export declare class DeploymentLifecycleHook {
|
|
73934
74267
|
constructor(props: {
|
|
73935
|
-
/** The Amazon Resource Name (ARN) of the hook target. Currently, only Lambda function ARNs are supported.
|
|
73936
|
-
You must provide this parameter when configuring a deployment lifecycle hook. */
|
|
73937
|
-
HookTargetArn: string;
|
|
73938
74268
|
/** The lifecycle stages at which to run the hook. Choose from these valid values:
|
|
73939
74269
|
+ RECONCILE_SERVICE
|
|
73940
74270
|
The reconciliation stage that only happens when you start a new service deployment with more than 1 service revision in an ACTIVE state.
|
|
@@ -73950,22 +74280,37 @@ export declare class DeploymentLifecycleHook {
|
|
|
73950
74280
|
You can use a lifecycle hook for this stage.
|
|
73951
74281
|
+ POST_TEST_TRAFFIC_SHIFT
|
|
73952
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.
|
|
73953
74286
|
You can use a lifecycle hook for this stage.
|
|
73954
74287
|
+ PRODUCTION_TRAFFIC_SHIFT
|
|
73955
|
-
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.
|
|
73956
74289
|
You can use a lifecycle hook for this stage.
|
|
73957
74290
|
+ POST_PRODUCTION_TRAFFIC_SHIFT
|
|
73958
74291
|
The production traffic shift is complete.
|
|
73959
74292
|
You can use a lifecycle hook for this stage.
|
|
73960
74293
|
|
|
73961
|
-
|
|
73962
|
-
|
|
73963
|
-
|
|
73964
|
-
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*. */
|
|
73965
|
-
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"[];
|
|
73966
74297
|
/** Use this field to specify custom parameters that ECS passes to your hook target invocations (such as a Lambda function).
|
|
73967
74298
|
This field must be a JSON object as a string. */
|
|
73968
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;
|
|
73969
74314
|
});
|
|
73970
74315
|
}
|
|
73971
74316
|
|
|
@@ -74721,29 +75066,40 @@ export declare class DevOpsAgentAssociation_KeyValuePair {
|
|
|
74721
75066
|
|
|
74722
75067
|
export declare class DevOpsAgentAssociation_MCPServerConfiguration {
|
|
74723
75068
|
constructor(props: {
|
|
74724
|
-
/** MCP server endpoint URL */
|
|
74725
|
-
Endpoint: string;
|
|
74726
|
-
/** The name of the MCP server */
|
|
74727
|
-
Name: string;
|
|
74728
75069
|
/** List of MCP tools that can be used with the association */
|
|
74729
75070
|
Tools: string[];
|
|
74730
75071
|
/** The description of the MCP server */
|
|
74731
75072
|
Description?: string;
|
|
74732
75073
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
74733
75074
|
EnableWebhookUpdates?: boolean;
|
|
75075
|
+
/** MCP server endpoint URL */
|
|
75076
|
+
Endpoint?: string;
|
|
75077
|
+
/** The name of the MCP server */
|
|
75078
|
+
Name?: string;
|
|
74734
75079
|
});
|
|
74735
75080
|
}
|
|
74736
75081
|
|
|
74737
75082
|
export declare class DevOpsAgentAssociation_MCPServerDatadogConfiguration {
|
|
74738
75083
|
constructor(props: {
|
|
74739
|
-
/** MCP server endpoint URL */
|
|
74740
|
-
Endpoint: string;
|
|
74741
|
-
/** The name of the MCP server */
|
|
74742
|
-
Name: string;
|
|
74743
75084
|
/** The description of the MCP server */
|
|
74744
75085
|
Description?: string;
|
|
74745
75086
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
74746
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"[];
|
|
74747
75103
|
});
|
|
74748
75104
|
}
|
|
74749
75105
|
|
|
@@ -74765,14 +75121,14 @@ export declare class DevOpsAgentAssociation_MCPServerSigV4Configuration {
|
|
|
74765
75121
|
|
|
74766
75122
|
export declare class DevOpsAgentAssociation_MCPServerSplunkConfiguration {
|
|
74767
75123
|
constructor(props: {
|
|
74768
|
-
/** MCP server endpoint URL */
|
|
74769
|
-
Endpoint: string;
|
|
74770
|
-
/** The name of the MCP server */
|
|
74771
|
-
Name: string;
|
|
74772
75124
|
/** The description of the MCP server */
|
|
74773
75125
|
Description?: string;
|
|
74774
75126
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
74775
75127
|
EnableWebhookUpdates?: boolean;
|
|
75128
|
+
/** MCP server endpoint URL */
|
|
75129
|
+
Endpoint?: string;
|
|
75130
|
+
/** The name of the MCP server */
|
|
75131
|
+
Name?: string;
|
|
74776
75132
|
});
|
|
74777
75133
|
}
|
|
74778
75134
|
|
|
@@ -74909,6 +75265,18 @@ export declare class DevOpsAgentService_MCPServerDetails {
|
|
|
74909
75265
|
});
|
|
74910
75266
|
}
|
|
74911
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
|
+
|
|
74912
75280
|
export declare class DevOpsAgentService_MCPServerOAuthClientCredentialsConfig {
|
|
74913
75281
|
constructor(props: {
|
|
74914
75282
|
/** OAuth client ID */
|
|
@@ -75065,6 +75433,19 @@ export declare class DevOpsAgentService_RegisteredMCPServerDetails {
|
|
|
75065
75433
|
});
|
|
75066
75434
|
}
|
|
75067
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
|
+
|
|
75068
75449
|
export declare class DevOpsAgentService_RegisteredMCPServerSigV4Details {
|
|
75069
75450
|
constructor(props: {
|
|
75070
75451
|
/** The MCP server endpoint URL */
|
|
@@ -75322,10 +75703,10 @@ export declare class DirectoryBucket_LifecycleConfiguration {
|
|
|
75322
75703
|
|
|
75323
75704
|
export declare class DirectoryBucket_MetricsConfiguration {
|
|
75324
75705
|
constructor(props: {
|
|
75706
|
+
/** The ID used to identify the metrics configuration. */
|
|
75707
|
+
Id: string;
|
|
75325
75708
|
/** The access point ARN used when evaluating a metrics filter. */
|
|
75326
75709
|
AccessPointArn?: string;
|
|
75327
|
-
/** The ID used to identify the metrics configuration. */
|
|
75328
|
-
Id?: string;
|
|
75329
75710
|
/** The prefix used when evaluating a metrics filter. */
|
|
75330
75711
|
Prefix?: string;
|
|
75331
75712
|
});
|
|
@@ -78347,7 +78728,7 @@ export declare class EcsService_DeploymentConfiguration {
|
|
|
78347
78728
|
/** The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
78348
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* */
|
|
78349
78730
|
DeploymentCircuitBreaker?: EcsService_DeploymentCircuitBreaker;
|
|
78350
|
-
/** 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. */
|
|
78351
78732
|
LifecycleHooks?: EcsService_DeploymentLifecycleHook[];
|
|
78352
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. */
|
|
78353
78734
|
LinearConfiguration?: EcsService_LinearConfiguration;
|
|
@@ -78425,9 +78806,6 @@ export declare class EcsService_DeploymentController {
|
|
|
78425
78806
|
|
|
78426
78807
|
export declare class EcsService_DeploymentLifecycleHook {
|
|
78427
78808
|
constructor(props: {
|
|
78428
|
-
/** The Amazon Resource Name (ARN) of the hook target. Currently, only Lambda function ARNs are supported.
|
|
78429
|
-
You must provide this parameter when configuring a deployment lifecycle hook. */
|
|
78430
|
-
HookTargetArn: string;
|
|
78431
78809
|
/** The lifecycle stages at which to run the hook. Choose from these valid values:
|
|
78432
78810
|
+ RECONCILE_SERVICE
|
|
78433
78811
|
The reconciliation stage that only happens when you start a new service deployment with more than 1 service revision in an ACTIVE state.
|
|
@@ -78443,22 +78821,37 @@ export declare class EcsService_DeploymentLifecycleHook {
|
|
|
78443
78821
|
You can use a lifecycle hook for this stage.
|
|
78444
78822
|
+ POST_TEST_TRAFFIC_SHIFT
|
|
78445
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.
|
|
78446
78827
|
You can use a lifecycle hook for this stage.
|
|
78447
78828
|
+ PRODUCTION_TRAFFIC_SHIFT
|
|
78448
|
-
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.
|
|
78449
78830
|
You can use a lifecycle hook for this stage.
|
|
78450
78831
|
+ POST_PRODUCTION_TRAFFIC_SHIFT
|
|
78451
78832
|
The production traffic shift is complete.
|
|
78452
78833
|
You can use a lifecycle hook for this stage.
|
|
78453
78834
|
|
|
78454
|
-
|
|
78455
|
-
|
|
78456
|
-
|
|
78457
|
-
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*. */
|
|
78458
|
-
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"[];
|
|
78459
78838
|
/** Use this field to specify custom parameters that ECS passes to your hook target invocations (such as a Lambda function).
|
|
78460
78839
|
This field must be a JSON object as a string. */
|
|
78461
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;
|
|
78462
78855
|
});
|
|
78463
78856
|
}
|
|
78464
78857
|
|
|
@@ -78482,6 +78875,13 @@ export declare class EcsService_ForceNewDeployment {
|
|
|
78482
78875
|
});
|
|
78483
78876
|
}
|
|
78484
78877
|
|
|
78878
|
+
export declare class EcsService_HookTimeoutConfig {
|
|
78879
|
+
constructor(props: {
|
|
78880
|
+
Action?: "CONTINUE" | "ROLLBACK";
|
|
78881
|
+
TimeoutInMinutes?: number;
|
|
78882
|
+
});
|
|
78883
|
+
}
|
|
78884
|
+
|
|
78485
78885
|
export declare class EcsService_LinearConfiguration {
|
|
78486
78886
|
constructor(props: {
|
|
78487
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. */
|
|
@@ -78900,6 +79300,13 @@ export declare class EFSAccessPoint_RootDirectory {
|
|
|
78900
79300
|
});
|
|
78901
79301
|
}
|
|
78902
79302
|
|
|
79303
|
+
export declare class EfsAccessPointConfiguration {
|
|
79304
|
+
constructor(props: {
|
|
79305
|
+
AccessPointArn: string;
|
|
79306
|
+
MountPath: string;
|
|
79307
|
+
});
|
|
79308
|
+
}
|
|
79309
|
+
|
|
78903
79310
|
export declare class EFSAuthorizationConfig {
|
|
78904
79311
|
constructor(props: {
|
|
78905
79312
|
AccessPointId?: string;
|
|
@@ -81072,6 +81479,14 @@ export declare class EndpointConfig_ExplainerConfig {
|
|
|
81072
81479
|
});
|
|
81073
81480
|
}
|
|
81074
81481
|
|
|
81482
|
+
export declare class EndpointConfig_InstancePools {
|
|
81483
|
+
constructor(props: {
|
|
81484
|
+
InstanceType: string;
|
|
81485
|
+
Priority: number;
|
|
81486
|
+
ModelNameOverride?: string;
|
|
81487
|
+
});
|
|
81488
|
+
}
|
|
81489
|
+
|
|
81075
81490
|
export declare class EndpointConfig_ManagedInstanceScaling {
|
|
81076
81491
|
constructor(props: {
|
|
81077
81492
|
MaxInstanceCount?: number;
|
|
@@ -81089,12 +81504,14 @@ export declare class EndpointConfig_ProductionVariant {
|
|
|
81089
81504
|
InferenceAmiVersion?: string;
|
|
81090
81505
|
InitialInstanceCount?: number;
|
|
81091
81506
|
InitialVariantWeight?: number;
|
|
81507
|
+
InstancePools?: EndpointConfig_InstancePools[];
|
|
81092
81508
|
InstanceType?: string;
|
|
81093
81509
|
ManagedInstanceScaling?: EndpointConfig_ManagedInstanceScaling;
|
|
81094
81510
|
ModelDataDownloadTimeoutInSeconds?: number;
|
|
81095
81511
|
ModelName?: string;
|
|
81096
81512
|
RoutingConfig?: EndpointConfig_RoutingConfig;
|
|
81097
81513
|
ServerlessConfig?: EndpointConfig_ServerlessConfig;
|
|
81514
|
+
VariantInstanceProvisionTimeoutInSeconds?: number;
|
|
81098
81515
|
VolumeSizeInGB?: number;
|
|
81099
81516
|
});
|
|
81100
81517
|
}
|
|
@@ -81860,11 +82277,11 @@ export declare class EvaluationForm_EvaluationFormLanguageConfiguration {
|
|
|
81860
82277
|
|
|
81861
82278
|
export declare class EvaluationForm_EvaluationFormMultiSelectQuestionAutomation {
|
|
81862
82279
|
constructor(props: {
|
|
81863
|
-
/** Automation options for the multi-select question. */
|
|
81864
|
-
Options: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
81865
82280
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
81866
82281
|
/** Reference IDs of default options. */
|
|
81867
82282
|
DefaultOptionRefIds?: any;
|
|
82283
|
+
/** Automation options for the multi-select question. */
|
|
82284
|
+
Options?: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
81868
82285
|
});
|
|
81869
82286
|
}
|
|
81870
82287
|
|
|
@@ -82003,15 +82420,15 @@ export declare class EvaluationForm_EvaluationFormSection {
|
|
|
82003
82420
|
|
|
82004
82421
|
export declare class EvaluationForm_EvaluationFormSingleSelectQuestionAutomation {
|
|
82005
82422
|
constructor(props: {
|
|
82006
|
-
/** The automation options of the single select question.
|
|
82007
|
-
*Minimum*: 1
|
|
82008
|
-
*Maximum*: 20 */
|
|
82009
|
-
Options: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
82010
82423
|
/** Automation answer source. */
|
|
82011
82424
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
82012
82425
|
/** The identifier of the default answer option, when none of the automation options match the criteria.
|
|
82013
82426
|
*Length Constraints*: Minimum length of 1. Maximum length of 40. */
|
|
82014
82427
|
DefaultOptionRefId?: string;
|
|
82428
|
+
/** The automation options of the single select question.
|
|
82429
|
+
*Minimum*: 1
|
|
82430
|
+
*Maximum*: 20 */
|
|
82431
|
+
Options?: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
82015
82432
|
});
|
|
82016
82433
|
}
|
|
82017
82434
|
|
|
@@ -82236,11 +82653,11 @@ export declare class EvaluationFormLanguageConfiguration {
|
|
|
82236
82653
|
|
|
82237
82654
|
export declare class EvaluationFormMultiSelectQuestionAutomation {
|
|
82238
82655
|
constructor(props: {
|
|
82239
|
-
/** Automation options for the multi-select question. */
|
|
82240
|
-
Options: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
82241
82656
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
82242
82657
|
/** Reference IDs of default options. */
|
|
82243
82658
|
DefaultOptionRefIds?: any;
|
|
82659
|
+
/** Automation options for the multi-select question. */
|
|
82660
|
+
Options?: EvaluationForm_EvaluationFormMultiSelectQuestionAutomationOption[];
|
|
82244
82661
|
});
|
|
82245
82662
|
}
|
|
82246
82663
|
|
|
@@ -82379,15 +82796,15 @@ export declare class EvaluationFormSection {
|
|
|
82379
82796
|
|
|
82380
82797
|
export declare class EvaluationFormSingleSelectQuestionAutomation {
|
|
82381
82798
|
constructor(props: {
|
|
82382
|
-
/** The automation options of the single select question.
|
|
82383
|
-
*Minimum*: 1
|
|
82384
|
-
*Maximum*: 20 */
|
|
82385
|
-
Options: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
82386
82799
|
/** Automation answer source. */
|
|
82387
82800
|
AnswerSource?: EvaluationForm_EvaluationFormQuestionAutomationAnswerSource;
|
|
82388
82801
|
/** The identifier of the default answer option, when none of the automation options match the criteria.
|
|
82389
82802
|
*Length Constraints*: Minimum length of 1. Maximum length of 40. */
|
|
82390
82803
|
DefaultOptionRefId?: string;
|
|
82804
|
+
/** The automation options of the single select question.
|
|
82805
|
+
*Minimum*: 1
|
|
82806
|
+
*Maximum*: 20 */
|
|
82807
|
+
Options?: EvaluationForm_EvaluationFormSingleSelectQuestionAutomationOption[];
|
|
82391
82808
|
});
|
|
82392
82809
|
}
|
|
82393
82810
|
|
|
@@ -84991,12 +85408,6 @@ export declare class FileSource {
|
|
|
84991
85408
|
});
|
|
84992
85409
|
}
|
|
84993
85410
|
|
|
84994
|
-
export declare class FilesystemConfiguration {
|
|
84995
|
-
constructor(props: {
|
|
84996
|
-
SessionStorage?: Runtime_SessionStorageConfiguration;
|
|
84997
|
-
});
|
|
84998
|
-
}
|
|
84999
|
-
|
|
85000
85411
|
export declare class FileSystemGID {
|
|
85001
85412
|
constructor(props: {
|
|
85002
85413
|
/** The GID of the file system user. */
|
|
@@ -90376,6 +90787,479 @@ export declare class Hardware {
|
|
|
90376
90787
|
});
|
|
90377
90788
|
}
|
|
90378
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
|
+
|
|
90379
91263
|
export declare class Hash {
|
|
90380
91264
|
constructor(props: {
|
|
90381
91265
|
Sha256?: string;
|
|
@@ -90734,6 +91618,13 @@ export declare class HomeDirectoryMapEntry {
|
|
|
90734
91618
|
});
|
|
90735
91619
|
}
|
|
90736
91620
|
|
|
91621
|
+
export declare class HookTimeoutConfig {
|
|
91622
|
+
constructor(props: {
|
|
91623
|
+
Action?: "CONTINUE" | "ROLLBACK";
|
|
91624
|
+
TimeoutInMinutes?: number;
|
|
91625
|
+
});
|
|
91626
|
+
}
|
|
91627
|
+
|
|
90737
91628
|
export declare class HookVersion_LoggingConfig {
|
|
90738
91629
|
constructor(props: {
|
|
90739
91630
|
/** The Amazon CloudWatch log group to which CloudFormation sends error logging information when invoking the type's handlers. */
|
|
@@ -93469,6 +94360,13 @@ export declare class InlineCustomDocumentEnrichmentConfiguration {
|
|
|
93469
94360
|
});
|
|
93470
94361
|
}
|
|
93471
94362
|
|
|
94363
|
+
export declare class InlineCustomInstruction {
|
|
94364
|
+
constructor(props: {
|
|
94365
|
+
InstructionText: string;
|
|
94366
|
+
UploadedDocumentMetadata?: DataSet_UploadedDocumentMetadata;
|
|
94367
|
+
});
|
|
94368
|
+
}
|
|
94369
|
+
|
|
93472
94370
|
export declare class InlineDocumentEnrichmentConfiguration {
|
|
93473
94371
|
constructor(props: {
|
|
93474
94372
|
Condition?: QBusinessDataSource_DocumentAttributeCondition;
|
|
@@ -93477,6 +94375,13 @@ export declare class InlineDocumentEnrichmentConfiguration {
|
|
|
93477
94375
|
});
|
|
93478
94376
|
}
|
|
93479
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
|
+
|
|
93480
94385
|
export declare class InlineRedactionConfiguration {
|
|
93481
94386
|
constructor(props: {
|
|
93482
94387
|
InlineRedactionPatterns: DataProtectionSettings_InlineRedactionPattern[];
|
|
@@ -94666,6 +95571,14 @@ export declare class InstanceNetworkPerformanceOptionsRequest {
|
|
|
94666
95571
|
});
|
|
94667
95572
|
}
|
|
94668
95573
|
|
|
95574
|
+
export declare class InstancePools {
|
|
95575
|
+
constructor(props: {
|
|
95576
|
+
InstanceType: string;
|
|
95577
|
+
Priority: number;
|
|
95578
|
+
ModelNameOverride?: string;
|
|
95579
|
+
});
|
|
95580
|
+
}
|
|
95581
|
+
|
|
94669
95582
|
export declare class InstanceReusePolicy {
|
|
94670
95583
|
constructor(props: {
|
|
94671
95584
|
ReuseOnScaleIn?: boolean;
|
|
@@ -98353,7 +99266,11 @@ export declare class KeyValueStore_ImportSource {
|
|
|
98353
99266
|
|
|
98354
99267
|
export declare class KeyValueStore_Tag {
|
|
98355
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 ``_ - . : / = + @``. */
|
|
98356
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 ``_ - . : / = + @``. */
|
|
98357
99274
|
Value: string;
|
|
98358
99275
|
});
|
|
98359
99276
|
}
|
|
@@ -99390,6 +100307,21 @@ export declare class LambdaEventSource {
|
|
|
99390
100307
|
});
|
|
99391
100308
|
}
|
|
99392
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
|
+
|
|
99393
100325
|
export declare class LambdaExecutionParameters {
|
|
99394
100326
|
constructor(props: {
|
|
99395
100327
|
EnvironmentVariables?: Record<string, unknown>;
|
|
@@ -99762,6 +100694,8 @@ export declare class LaunchTemplate_CpuOptions {
|
|
|
99762
100694
|
AmdSevSnp?: "disabled" | "enabled";
|
|
99763
100695
|
/** The number of CPU cores for the instance. */
|
|
99764
100696
|
CoreCount?: number;
|
|
100697
|
+
/** Indicates whether the instance is enabled for nested virtualization. */
|
|
100698
|
+
NestedVirtualization?: "disabled" | "enabled";
|
|
99765
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``. */
|
|
99766
100700
|
ThreadsPerCore?: number;
|
|
99767
100701
|
});
|
|
@@ -99889,12 +100823,19 @@ export declare class LaunchTemplate_InstanceRequirements {
|
|
|
99889
100823
|
+ For instance types with NVIDIA A100 GPUs, specify ``a100``.
|
|
99890
100824
|
+ For instance types with NVIDIA H100 GPUs, specify ``h100``.
|
|
99891
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``.
|
|
99892
100828
|
+ For instance types with NVIDIA GRID K520 GPUs, specify ``k520``.
|
|
99893
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``.
|
|
99894
100832
|
+ For instance types with NVIDIA M60 GPUs, specify ``m60``.
|
|
99895
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``.
|
|
99896
100836
|
+ For instance types with NVIDIA T4 GPUs, specify ``t4``.
|
|
99897
100837
|
+ For instance types with NVIDIA T4G GPUs, specify ``t4g``.
|
|
100838
|
+
+ For instance types with Xilinx U30 cards, specify ``u30``.
|
|
99898
100839
|
+ For instance types with Xilinx VU9P FPGAs, specify ``vu9p``.
|
|
99899
100840
|
+ For instance types with NVIDIA V100 GPUs, specify ``v100``.
|
|
99900
100841
|
|
|
@@ -99907,6 +100848,7 @@ export declare class LaunchTemplate_InstanceRequirements {
|
|
|
99907
100848
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
|
99908
100849
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
99909
100850
|
+ For instance types with Inference accelerators, specify ``inference``.
|
|
100851
|
+
+ For instance types with Media accelerators, specify ``media``.
|
|
99910
100852
|
|
|
99911
100853
|
Default: Any accelerator type */
|
|
99912
100854
|
AcceleratorTypes?: string[];
|
|
@@ -100704,7 +101646,7 @@ export declare class LegacyS3Origin {
|
|
|
100704
101646
|
/** The domain name assigned to your CF distribution. */
|
|
100705
101647
|
DNSName: string;
|
|
100706
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.
|
|
100707
|
-
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. */
|
|
100708
101650
|
OriginAccessIdentity?: string;
|
|
100709
101651
|
});
|
|
100710
101652
|
}
|
|
@@ -104345,6 +105287,13 @@ export declare class Matching {
|
|
|
104345
105287
|
});
|
|
104346
105288
|
}
|
|
104347
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
|
+
|
|
104348
105297
|
export declare class MatchingRule {
|
|
104349
105298
|
constructor(props: {
|
|
104350
105299
|
Rule: any;
|
|
@@ -104380,6 +105329,13 @@ export declare class MatchingWorkflow_IntermediateSourceConfiguration {
|
|
|
104380
105329
|
});
|
|
104381
105330
|
}
|
|
104382
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
|
+
|
|
104383
105339
|
export declare class MatchingWorkflow_OutputAttribute {
|
|
104384
105340
|
constructor(props: {
|
|
104385
105341
|
Name: string;
|
|
@@ -104442,6 +105398,7 @@ export declare class MatchingWorkflow_RuleCondition {
|
|
|
104442
105398
|
export declare class MatchingWorkflow_RuleConditionProperties {
|
|
104443
105399
|
constructor(props: {
|
|
104444
105400
|
Rules: MatchingWorkflow_RuleCondition[];
|
|
105401
|
+
MatchingConfig?: MatchingWorkflow_MatchingConfig;
|
|
104445
105402
|
});
|
|
104446
105403
|
}
|
|
104447
105404
|
|
|
@@ -104587,33 +105544,56 @@ export declare class McpLambdaTargetConfiguration {
|
|
|
104587
105544
|
|
|
104588
105545
|
export declare class MCPServerConfiguration {
|
|
104589
105546
|
constructor(props: {
|
|
104590
|
-
/** MCP server endpoint URL */
|
|
104591
|
-
Endpoint: string;
|
|
104592
|
-
/** The name of the MCP server */
|
|
104593
|
-
Name: string;
|
|
104594
105547
|
/** List of MCP tools that can be used with the association */
|
|
104595
105548
|
Tools: string[];
|
|
104596
105549
|
/** The description of the MCP server */
|
|
104597
105550
|
Description?: string;
|
|
104598
105551
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
104599
105552
|
EnableWebhookUpdates?: boolean;
|
|
105553
|
+
/** MCP server endpoint URL */
|
|
105554
|
+
Endpoint?: string;
|
|
105555
|
+
/** The name of the MCP server */
|
|
105556
|
+
Name?: string;
|
|
104600
105557
|
});
|
|
104601
105558
|
}
|
|
104602
105559
|
|
|
104603
105560
|
export declare class MCPServerDatadogConfiguration {
|
|
104604
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;
|
|
104605
105566
|
/** MCP server endpoint URL */
|
|
104606
|
-
Endpoint
|
|
105567
|
+
Endpoint?: string;
|
|
104607
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 */
|
|
104608
105579
|
Name: string;
|
|
104609
|
-
/**
|
|
105580
|
+
/** Optional description for the MCP server */
|
|
104610
105581
|
Description?: string;
|
|
105582
|
+
});
|
|
105583
|
+
}
|
|
105584
|
+
|
|
105585
|
+
export declare class MCPServerGrafanaConfiguration {
|
|
105586
|
+
constructor(props: {
|
|
105587
|
+
/** MCP server endpoint URL */
|
|
105588
|
+
Endpoint: string;
|
|
104611
105589
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
104612
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"[];
|
|
104613
105593
|
});
|
|
104614
105594
|
}
|
|
104615
105595
|
|
|
104616
|
-
export declare class
|
|
105596
|
+
export declare class MCPServerGrafanaDetails {
|
|
104617
105597
|
constructor(props: {
|
|
104618
105598
|
AuthorizationConfig: Record<string, unknown>;
|
|
104619
105599
|
/** MCP server endpoint URL */
|
|
@@ -104685,14 +105665,14 @@ export declare class MCPServerSigV4Details {
|
|
|
104685
105665
|
|
|
104686
105666
|
export declare class MCPServerSplunkConfiguration {
|
|
104687
105667
|
constructor(props: {
|
|
104688
|
-
/** MCP server endpoint URL */
|
|
104689
|
-
Endpoint: string;
|
|
104690
|
-
/** The name of the MCP server */
|
|
104691
|
-
Name: string;
|
|
104692
105668
|
/** The description of the MCP server */
|
|
104693
105669
|
Description?: string;
|
|
104694
105670
|
/** When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service */
|
|
104695
105671
|
EnableWebhookUpdates?: boolean;
|
|
105672
|
+
/** MCP server endpoint URL */
|
|
105673
|
+
Endpoint?: string;
|
|
105674
|
+
/** The name of the MCP server */
|
|
105675
|
+
Name?: string;
|
|
104696
105676
|
});
|
|
104697
105677
|
}
|
|
104698
105678
|
|
|
@@ -109085,6 +110065,13 @@ export declare class MetricsConfigurationPolicy {
|
|
|
109085
110065
|
});
|
|
109086
110066
|
}
|
|
109087
110067
|
|
|
110068
|
+
export declare class MetricSource {
|
|
110069
|
+
constructor(props: {
|
|
110070
|
+
MetricSourceKeyAttributes: any;
|
|
110071
|
+
MetricSourceAttributes?: any;
|
|
110072
|
+
});
|
|
110073
|
+
}
|
|
110074
|
+
|
|
109088
110075
|
export declare class MetricsSource {
|
|
109089
110076
|
constructor(props: {
|
|
109090
110077
|
/** The type of content stored in the metric source. */
|
|
@@ -114119,17 +115106,6 @@ export declare class OAuthClientDetails {
|
|
|
114119
115106
|
});
|
|
114120
115107
|
}
|
|
114121
115108
|
|
|
114122
|
-
export declare class OAuthCredentialProvider {
|
|
114123
|
-
constructor(props: {
|
|
114124
|
-
ProviderArn: string;
|
|
114125
|
-
Scopes: string[];
|
|
114126
|
-
CustomParameters?: Record<string, unknown>;
|
|
114127
|
-
/** Return URL for OAuth callback. */
|
|
114128
|
-
DefaultReturnUrl?: string;
|
|
114129
|
-
GrantType?: GatewayTarget_OAuthGrantType;
|
|
114130
|
-
});
|
|
114131
|
-
}
|
|
114132
|
-
|
|
114133
115109
|
export declare class OAuthProperties {
|
|
114134
115110
|
constructor(props: {
|
|
114135
115111
|
AuthCodeUrl?: string;
|
|
@@ -115940,6 +116916,8 @@ export declare class OrganizationTelemetryRule_TelemetryDestinationConfiguration
|
|
|
115940
116916
|
DestinationPattern?: string;
|
|
115941
116917
|
DestinationType?: OrganizationTelemetryRule_DestinationType;
|
|
115942
116918
|
ELBLoadBalancerLoggingParameters?: OrganizationTelemetryRule_ELBLoadBalancerLoggingParameters;
|
|
116919
|
+
/** Parameters for log delivery configuration */
|
|
116920
|
+
LogDeliveryParameters?: Record<string, unknown>;
|
|
115943
116921
|
RetentionInDays?: number;
|
|
115944
116922
|
VPCFlowLogParameters?: OrganizationTelemetryRule_VPCFlowLogParameters;
|
|
115945
116923
|
WAFLoggingParameters?: OrganizationTelemetryRule_WAFLoggingParameters;
|
|
@@ -117694,6 +118672,92 @@ export declare class PaymentConfiguration {
|
|
|
117694
118672
|
});
|
|
117695
118673
|
}
|
|
117696
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
|
+
|
|
117697
118761
|
export declare class PCAConnectorADConnector_VpcInformation {
|
|
117698
118762
|
constructor(props: {
|
|
117699
118763
|
SecurityGroupIds: string[];
|
|
@@ -121314,12 +122378,14 @@ export declare class ProductionVariant {
|
|
|
121314
122378
|
InferenceAmiVersion?: string;
|
|
121315
122379
|
InitialInstanceCount?: number;
|
|
121316
122380
|
InitialVariantWeight?: number;
|
|
122381
|
+
InstancePools?: EndpointConfig_InstancePools[];
|
|
121317
122382
|
InstanceType?: string;
|
|
121318
122383
|
ManagedInstanceScaling?: EndpointConfig_ManagedInstanceScaling;
|
|
121319
122384
|
ModelDataDownloadTimeoutInSeconds?: number;
|
|
121320
122385
|
ModelName?: string;
|
|
121321
122386
|
RoutingConfig?: EndpointConfig_RoutingConfig;
|
|
121322
122387
|
ServerlessConfig?: EndpointConfig_ServerlessConfig;
|
|
122388
|
+
VariantInstanceProvisionTimeoutInSeconds?: number;
|
|
121323
122389
|
VolumeSizeInGB?: number;
|
|
121324
122390
|
});
|
|
121325
122391
|
}
|
|
@@ -134803,6 +135869,19 @@ export declare class RegisteredMCPServerDetails {
|
|
|
134803
135869
|
});
|
|
134804
135870
|
}
|
|
134805
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
|
+
|
|
134806
135885
|
export declare class RegisteredMCPServerSigV4Details {
|
|
134807
135886
|
constructor(props: {
|
|
134808
135887
|
/** The MCP server endpoint URL */
|
|
@@ -135788,8 +136867,11 @@ export declare class RequestBasedSli {
|
|
|
135788
136867
|
|
|
135789
136868
|
export declare class RequestBasedSliMetric {
|
|
135790
136869
|
constructor(props: {
|
|
136870
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
135791
136871
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
135792
136872
|
KeyAttributes?: any;
|
|
136873
|
+
MetricName?: string;
|
|
136874
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
135793
136875
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
135794
136876
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
135795
136877
|
MonitoredRequestCountMetric?: ServiceLevelObjective_MonitoredRequestCountMetric;
|
|
@@ -138338,6 +139420,7 @@ export declare class RuleBooleanExpression {
|
|
|
138338
139420
|
export declare class RuleConditionProperties {
|
|
138339
139421
|
constructor(props: {
|
|
138340
139422
|
Rules: MatchingWorkflow_RuleCondition[];
|
|
139423
|
+
MatchingConfig?: MatchingWorkflow_MatchingConfig;
|
|
138341
139424
|
});
|
|
138342
139425
|
}
|
|
138343
139426
|
|
|
@@ -138670,8 +139753,17 @@ export declare class Runtime_CustomJWTAuthorizerConfiguration {
|
|
|
138670
139753
|
});
|
|
138671
139754
|
}
|
|
138672
139755
|
|
|
139756
|
+
export declare class Runtime_EfsAccessPointConfiguration {
|
|
139757
|
+
constructor(props: {
|
|
139758
|
+
AccessPointArn: string;
|
|
139759
|
+
MountPath: string;
|
|
139760
|
+
});
|
|
139761
|
+
}
|
|
139762
|
+
|
|
138673
139763
|
export declare class Runtime_FilesystemConfiguration {
|
|
138674
139764
|
constructor(props: {
|
|
139765
|
+
EfsAccessPoint?: Runtime_EfsAccessPointConfiguration;
|
|
139766
|
+
S3FilesAccessPoint?: Runtime_S3FilesAccessPointConfiguration;
|
|
138675
139767
|
SessionStorage?: Runtime_SessionStorageConfiguration;
|
|
138676
139768
|
});
|
|
138677
139769
|
}
|
|
@@ -138698,6 +139790,13 @@ export declare class Runtime_RequestHeaderConfiguration {
|
|
|
138698
139790
|
});
|
|
138699
139791
|
}
|
|
138700
139792
|
|
|
139793
|
+
export declare class Runtime_S3FilesAccessPointConfiguration {
|
|
139794
|
+
constructor(props: {
|
|
139795
|
+
AccessPointArn: string;
|
|
139796
|
+
MountPath: string;
|
|
139797
|
+
});
|
|
139798
|
+
}
|
|
139799
|
+
|
|
138701
139800
|
export declare class Runtime_S3Location {
|
|
138702
139801
|
constructor(props: {
|
|
138703
139802
|
/** S3 bucket name */
|
|
@@ -139075,6 +140174,13 @@ export declare class S3FilesAccessPoint_RootDirectory {
|
|
|
139075
140174
|
});
|
|
139076
140175
|
}
|
|
139077
140176
|
|
|
140177
|
+
export declare class S3FilesAccessPointConfiguration {
|
|
140178
|
+
constructor(props: {
|
|
140179
|
+
AccessPointArn: string;
|
|
140180
|
+
MountPath: string;
|
|
140181
|
+
});
|
|
140182
|
+
}
|
|
140183
|
+
|
|
139078
140184
|
export declare class S3FilesFileSystem_ExpirationDataRule {
|
|
139079
140185
|
constructor(props: {
|
|
139080
140186
|
DaysAfterLastAccess: number;
|
|
@@ -139506,19 +140612,6 @@ export declare class S3Settings {
|
|
|
139506
140612
|
});
|
|
139507
140613
|
}
|
|
139508
140614
|
|
|
139509
|
-
export declare class S3Source {
|
|
139510
|
-
constructor(props: {
|
|
139511
|
-
/** <p>The Amazon Resource Name (ARN) for the data source.</p> */
|
|
139512
|
-
DataSourceArn: string;
|
|
139513
|
-
/** <p>A physical table type for an S3 data source.</p>
|
|
139514
|
-
<note>
|
|
139515
|
-
<p>For files that aren't JSON, only <code>STRING</code> data types are supported in input columns.</p>
|
|
139516
|
-
</note> */
|
|
139517
|
-
InputColumns: DataSet_InputColumn[];
|
|
139518
|
-
UploadSettings?: DataSet_UploadSettings;
|
|
139519
|
-
});
|
|
139520
|
-
}
|
|
139521
|
-
|
|
139522
140615
|
export declare class S3StorageConfig {
|
|
139523
140616
|
constructor(props: {
|
|
139524
140617
|
S3Uri: string;
|
|
@@ -142304,6 +143397,13 @@ export declare class Secret_Tag {
|
|
|
142304
143397
|
});
|
|
142305
143398
|
}
|
|
142306
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
|
+
|
|
142307
143407
|
export declare class SecretsManagerAccessTokenConfiguration {
|
|
142308
143408
|
constructor(props: {
|
|
142309
143409
|
/** <p>The name of the HTTP header used to supply the access token in requests to the source location.</p> */
|
|
@@ -142873,7 +143973,7 @@ export declare class SecurityHubAutomationRule_StringFilter {
|
|
|
142873
143973
|
+ ``ResourceType NOT_EQUALS AwsIamPolicy``
|
|
142874
143974
|
+ ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
|
|
142875
143975
|
|
|
142876
|
-
``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*. */
|
|
142877
143977
|
Comparison: SecurityHubAutomationRule_StringFilterComparison;
|
|
142878
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. */
|
|
142879
143979
|
Value: string;
|
|
@@ -143134,6 +144234,13 @@ export declare class SelectAttributes {
|
|
|
143134
144234
|
});
|
|
143135
144235
|
}
|
|
143136
144236
|
|
|
144237
|
+
export declare class SelectionConfig {
|
|
144238
|
+
constructor(props: {
|
|
144239
|
+
Type: ServiceLevelObjective_SelectionType;
|
|
144240
|
+
Pattern?: string;
|
|
144241
|
+
});
|
|
144242
|
+
}
|
|
144243
|
+
|
|
143137
144244
|
export declare class SelectionCriteria {
|
|
143138
144245
|
constructor(props: {
|
|
143139
144246
|
/** Delimiter to divide S3 key into hierarchy of prefixes. */
|
|
@@ -143256,6 +144363,7 @@ export declare class SemanticMemoryStrategy {
|
|
|
143256
144363
|
|
|
143257
144364
|
export declare class SemanticModelConfiguration {
|
|
143258
144365
|
constructor(props: {
|
|
144366
|
+
SemanticMetadata?: DataSet_DataSetSemanticMetadata[];
|
|
143259
144367
|
TableMap?: Record<string, unknown>;
|
|
143260
144368
|
});
|
|
143261
144369
|
}
|
|
@@ -143286,6 +144394,7 @@ export declare class SemanticTable {
|
|
|
143286
144394
|
Alias: string;
|
|
143287
144395
|
DestinationTableId: string;
|
|
143288
144396
|
RowLevelPermissionConfiguration?: DataSet_RowLevelPermissionConfiguration;
|
|
144397
|
+
SemanticMetadata?: DataSet_TableSemanticMetadata;
|
|
143289
144398
|
});
|
|
143290
144399
|
}
|
|
143291
144400
|
|
|
@@ -143933,6 +145042,19 @@ As soon as one calendar interval ends, another automatically begins. */
|
|
|
143933
145042
|
});
|
|
143934
145043
|
}
|
|
143935
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
|
+
|
|
143936
145058
|
export declare class ServiceLevelObjective_DependencyConfig {
|
|
143937
145059
|
constructor(props: {
|
|
143938
145060
|
DependencyKeyAttributes: any;
|
|
@@ -144005,6 +145127,13 @@ export declare class ServiceLevelObjective_MetricDataQuery {
|
|
|
144005
145127
|
});
|
|
144006
145128
|
}
|
|
144007
145129
|
|
|
145130
|
+
export declare class ServiceLevelObjective_MetricSource {
|
|
145131
|
+
constructor(props: {
|
|
145132
|
+
MetricSourceKeyAttributes: any;
|
|
145133
|
+
MetricSourceAttributes?: any;
|
|
145134
|
+
});
|
|
145135
|
+
}
|
|
145136
|
+
|
|
144008
145137
|
export declare class ServiceLevelObjective_MetricStat {
|
|
144009
145138
|
constructor(props: {
|
|
144010
145139
|
Metric: ServiceLevelObjective_Metric;
|
|
@@ -144045,8 +145174,11 @@ export declare class ServiceLevelObjective_RequestBasedSli {
|
|
|
144045
145174
|
|
|
144046
145175
|
export declare class ServiceLevelObjective_RequestBasedSliMetric {
|
|
144047
145176
|
constructor(props: {
|
|
145177
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
144048
145178
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
144049
145179
|
KeyAttributes?: any;
|
|
145180
|
+
MetricName?: string;
|
|
145181
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
144050
145182
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
144051
145183
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
144052
145184
|
MonitoredRequestCountMetric?: ServiceLevelObjective_MonitoredRequestCountMetric;
|
|
@@ -144064,6 +145196,13 @@ export declare class ServiceLevelObjective_RollingInterval {
|
|
|
144064
145196
|
});
|
|
144065
145197
|
}
|
|
144066
145198
|
|
|
145199
|
+
export declare class ServiceLevelObjective_SelectionConfig {
|
|
145200
|
+
constructor(props: {
|
|
145201
|
+
Type: ServiceLevelObjective_SelectionType;
|
|
145202
|
+
Pattern?: string;
|
|
145203
|
+
});
|
|
145204
|
+
}
|
|
145205
|
+
|
|
144067
145206
|
export declare class ServiceLevelObjective_Sli {
|
|
144068
145207
|
constructor(props: {
|
|
144069
145208
|
/** The arithmetic operation used when comparing the specified metric to the threshold. */
|
|
@@ -144076,9 +145215,12 @@ export declare class ServiceLevelObjective_Sli {
|
|
|
144076
145215
|
|
|
144077
145216
|
export declare class ServiceLevelObjective_SliMetric {
|
|
144078
145217
|
constructor(props: {
|
|
145218
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
144079
145219
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
144080
145220
|
KeyAttributes?: any;
|
|
144081
145221
|
MetricDataQueries?: any;
|
|
145222
|
+
MetricName?: string;
|
|
145223
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
144082
145224
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
144083
145225
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
144084
145226
|
/** If the SLO monitors a specific operation of the service, this field displays that operation name. */
|
|
@@ -144601,12 +145743,6 @@ export declare class SessionStickinessConfig {
|
|
|
144601
145743
|
});
|
|
144602
145744
|
}
|
|
144603
145745
|
|
|
144604
|
-
export declare class SessionStorageConfiguration {
|
|
144605
|
-
constructor(props: {
|
|
144606
|
-
MountPath: string;
|
|
144607
|
-
});
|
|
144608
|
-
}
|
|
144609
|
-
|
|
144610
145746
|
export declare class SessionSummaryConfiguration {
|
|
144611
145747
|
constructor(props: {
|
|
144612
145748
|
/** Maximum number of Sessions to Summarize */
|
|
@@ -144714,6 +145850,13 @@ export declare class ShareAttributes {
|
|
|
144714
145850
|
});
|
|
144715
145851
|
}
|
|
144716
145852
|
|
|
145853
|
+
export declare class SharedColumnSemanticMetadata {
|
|
145854
|
+
constructor(props: {
|
|
145855
|
+
ColumnProperties: DataSet_ColumnSemanticProperty[];
|
|
145856
|
+
ColumnNames?: string[];
|
|
145857
|
+
});
|
|
145858
|
+
}
|
|
145859
|
+
|
|
144717
145860
|
export declare class SharePointConfiguration {
|
|
144718
145861
|
constructor(props: {
|
|
144719
145862
|
SecretArn: string;
|
|
@@ -145378,9 +146521,12 @@ export declare class Sli {
|
|
|
145378
146521
|
|
|
145379
146522
|
export declare class SliMetric {
|
|
145380
146523
|
constructor(props: {
|
|
146524
|
+
CompositeSliConfig?: ServiceLevelObjective_CompositeSliConfig;
|
|
145381
146525
|
DependencyConfig?: ServiceLevelObjective_DependencyConfig;
|
|
145382
146526
|
KeyAttributes?: any;
|
|
145383
146527
|
MetricDataQueries?: any;
|
|
146528
|
+
MetricName?: string;
|
|
146529
|
+
MetricSource?: ServiceLevelObjective_MetricSource;
|
|
145384
146530
|
/** If the SLO monitors either the LATENCY or AVAILABILITY metric that Application Signals collects, this field displays which of those metrics is used. */
|
|
145385
146531
|
MetricType?: "AVAILABILITY" | "LATENCY";
|
|
145386
146532
|
/** If the SLO monitors a specific operation of the service, this field displays that operation name. */
|
|
@@ -148597,6 +149743,30 @@ export declare class StringValidation {
|
|
|
148597
149743
|
});
|
|
148598
149744
|
}
|
|
148599
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
|
+
|
|
148600
149770
|
export declare class Studio_Tag {
|
|
148601
149771
|
constructor(props: {
|
|
148602
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 -. */
|
|
@@ -149500,6 +150670,12 @@ export declare class TablePathElement {
|
|
|
149500
150670
|
});
|
|
149501
150671
|
}
|
|
149502
150672
|
|
|
150673
|
+
export declare class TableSemanticMetadata {
|
|
150674
|
+
constructor(props: {
|
|
150675
|
+
ColumnMetadata?: DataSet_SharedColumnSemanticMetadata[];
|
|
150676
|
+
});
|
|
150677
|
+
}
|
|
150678
|
+
|
|
149503
150679
|
export declare class TagAssociation_DatabaseResource {
|
|
149504
150680
|
constructor(props: {
|
|
149505
150681
|
CatalogId: string;
|
|
@@ -151026,7 +152202,7 @@ export declare class TelemetryRule_TelemetryDestinationConfiguration {
|
|
|
151026
152202
|
DestinationPattern?: string;
|
|
151027
152203
|
DestinationType?: TelemetryRule_DestinationType;
|
|
151028
152204
|
ELBLoadBalancerLoggingParameters?: TelemetryRule_ELBLoadBalancerLoggingParameters;
|
|
151029
|
-
/** Parameters for
|
|
152205
|
+
/** Parameters for log delivery configuration */
|
|
151030
152206
|
LogDeliveryParameters?: Record<string, unknown>;
|
|
151031
152207
|
RetentionInDays?: number;
|
|
151032
152208
|
VPCFlowLogParameters?: TelemetryRule_VPCFlowLogParameters;
|
|
@@ -154201,6 +155377,12 @@ export declare class UplinkSpectrumConfig {
|
|
|
154201
155377
|
});
|
|
154202
155378
|
}
|
|
154203
155379
|
|
|
155380
|
+
export declare class UploadedDocumentMetadata {
|
|
155381
|
+
constructor(props: {
|
|
155382
|
+
Name?: string;
|
|
155383
|
+
});
|
|
155384
|
+
}
|
|
155385
|
+
|
|
154204
155386
|
export declare class UploadSettings {
|
|
154205
155387
|
constructor(props: {
|
|
154206
155388
|
/** <p>Whether the file has a header row, or the files each have a header row.</p> */
|
|
@@ -159140,6 +160322,8 @@ export declare class WebApp_Tag {
|
|
|
159140
160322
|
|
|
159141
160323
|
export declare class WebApp_Vpc {
|
|
159142
160324
|
constructor(props: {
|
|
160325
|
+
/** The IP address type for the VPC endpoint used by the web app. */
|
|
160326
|
+
IpAddressType?: "DUALSTACK" | "IPV4";
|
|
159143
160327
|
SecurityGroupIds?: string[];
|
|
159144
160328
|
SubnetIds?: string[];
|
|
159145
160329
|
VpcId?: string;
|
|
@@ -161832,6 +163016,7 @@ export type ARCRegionSwitchPlan_ExecutionBlockType =
|
|
|
161832
163016
|
| "EC2AutoScaling"
|
|
161833
163017
|
| "ECSServiceScaling"
|
|
161834
163018
|
| "EKSResourceScaling"
|
|
163019
|
+
| "LambdaEventSourceMapping"
|
|
161835
163020
|
| "ManualApproval"
|
|
161836
163021
|
| "Parallel"
|
|
161837
163022
|
| "RdsCreateCrossRegionReplica"
|
|
@@ -162880,7 +164065,7 @@ export type Bot_SpeechDetectionSensitivity =
|
|
|
162880
164065
|
| "HighNoiseTolerance"
|
|
162881
164066
|
| "MaximumNoiseTolerance";
|
|
162882
164067
|
|
|
162883
|
-
export type Bot_SpeechModelPreference = "Deepgram" | "Neural" | "Standard";
|
|
164068
|
+
export type Bot_SpeechModelPreference = "Deepgram" | "Enhanced" | "Neural" | "Standard";
|
|
162884
164069
|
|
|
162885
164070
|
export type BotAlias_BotAliasStatus = "Available" | "Creating" | "Deleting" | "Failed";
|
|
162886
164071
|
|
|
@@ -163913,6 +165098,7 @@ export type DevOpsAgentService_ServiceType =
|
|
|
163913
165098
|
| "dynatrace"
|
|
163914
165099
|
| "gitlab"
|
|
163915
165100
|
| "mcpserver"
|
|
165101
|
+
| "mcpservergrafana"
|
|
163916
165102
|
| "mcpservernewrelic"
|
|
163917
165103
|
| "mcpserversigv4"
|
|
163918
165104
|
| "mcpserversplunk"
|
|
@@ -164005,7 +165191,7 @@ export type Export_FrequencyOption = "SYNCHRONOUS";
|
|
|
164005
165191
|
|
|
164006
165192
|
export type Export_OverwriteOption = "CREATE_NEW_REPORT" | "OVERWRITE_REPORT";
|
|
164007
165193
|
|
|
164008
|
-
export type Export_S3OutputType = "CUSTOM";
|
|
165194
|
+
export type Export_S3OutputType = "ATHENA" | "CUSTOM" | "REDSHIFT";
|
|
164009
165195
|
|
|
164010
165196
|
export type ExpressGatewayService_AccessType = "PRIVATE" | "PUBLIC";
|
|
164011
165197
|
|
|
@@ -164311,6 +165497,15 @@ export type Guardrail_TopicType = "DENY";
|
|
|
164311
165497
|
|
|
164312
165498
|
export type Guardrail_WordAction = "BLOCK" | "NONE";
|
|
164313
165499
|
|
|
165500
|
+
export type Harness_HarnessStatus =
|
|
165501
|
+
| "CREATE_FAILED"
|
|
165502
|
+
| "CREATING"
|
|
165503
|
+
| "DELETE_FAILED"
|
|
165504
|
+
| "DELETING"
|
|
165505
|
+
| "READY"
|
|
165506
|
+
| "UPDATE_FAILED"
|
|
165507
|
+
| "UPDATING";
|
|
165508
|
+
|
|
164314
165509
|
export type HealthImagingDatastore_DatastoreStatus =
|
|
164315
165510
|
| "ACTIVE"
|
|
164316
165511
|
| "CREATE_FAILED"
|
|
@@ -165269,6 +166464,7 @@ export type OrganizationTelemetryRule_ResourceType =
|
|
|
165269
166464
|
| "AWS::EC2::VPC"
|
|
165270
166465
|
| "AWS::EKS::Cluster"
|
|
165271
166466
|
| "AWS::ElasticLoadBalancingV2::LoadBalancer"
|
|
166467
|
+
| "AWS::SecurityHub::Hub"
|
|
165272
166468
|
| "AWS::WAFv2::WebACL";
|
|
165273
166469
|
|
|
165274
166470
|
export type OrganizationTelemetryRule_TelemetrySourceType =
|
|
@@ -165323,6 +166519,10 @@ export type Partnership_X12GS05TimeFormat = "HHMM" | "HHMMSS" | "HHMMSSDD";
|
|
|
165323
166519
|
|
|
165324
166520
|
export type Partnership_X12TechnicalAcknowledgment = "DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS";
|
|
165325
166521
|
|
|
166522
|
+
export type PaymentCredentialProvider_PaymentCredentialProviderVendorType =
|
|
166523
|
+
| "CoinbaseCDP"
|
|
166524
|
+
| "StripePrivy";
|
|
166525
|
+
|
|
165326
166526
|
export type PCAConnectorADTemplate_ApplicationPolicyType =
|
|
165327
166527
|
| "ALL_APPLICATION_POLICIES"
|
|
165328
166528
|
| "ANY_PURPOSE"
|
|
@@ -166192,8 +167392,10 @@ export type QuickSightDataSource_DataSourceType =
|
|
|
166192
167392
|
| "DYNAMODB"
|
|
166193
167393
|
| "EXASOL"
|
|
166194
167394
|
| "FILE"
|
|
167395
|
+
| "FULLY_MANAGED_KNOWLEDGE_BASE"
|
|
166195
167396
|
| "GITHUB"
|
|
166196
167397
|
| "GLUE"
|
|
167398
|
+
| "GOOGLESHEETS"
|
|
166197
167399
|
| "GOOGLE_ANALYTICS"
|
|
166198
167400
|
| "GOOGLE_DRIVE"
|
|
166199
167401
|
| "IMPALA"
|
|
@@ -167663,6 +168865,8 @@ export type Server_TlsSessionResumptionMode = "DISABLED" | "ENABLED" | "ENFORCED
|
|
|
167663
168865
|
|
|
167664
168866
|
export type ServiceLevelObjective_DurationUnit = "DAY" | "HOUR" | "MINUTE" | "MONTH";
|
|
167665
168867
|
|
|
168868
|
+
export type ServiceLevelObjective_SelectionType = "EXPLICIT" | "PREFIX" | "REGEX";
|
|
168869
|
+
|
|
167666
168870
|
export type ServiceTemplate_Provisioning = "CUSTOMER_MANAGED";
|
|
167667
168871
|
|
|
167668
168872
|
export type SessionLogger_Event =
|
|
@@ -167846,6 +169050,7 @@ export type TelemetryRule_ResourceType =
|
|
|
167846
169050
|
| "AWS::EC2::VPC"
|
|
167847
169051
|
| "AWS::EKS::Cluster"
|
|
167848
169052
|
| "AWS::ElasticLoadBalancingV2::LoadBalancer"
|
|
169053
|
+
| "AWS::SecurityHub::Hub"
|
|
167849
169054
|
| "AWS::WAFv2::WebACL";
|
|
167850
169055
|
|
|
167851
169056
|
export type TelemetryRule_TelemetrySourceType =
|