@intentius/chant-lexicon-aws 0.0.14 → 0.0.16
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 +7 -7
- package/dist/manifest.json +1 -1
- package/dist/meta.json +744 -16
- package/dist/rules/waw030.ts +55 -0
- package/dist/rules/waw031.ts +66 -0
- package/dist/types/index.d.ts +773 -34
- package/package.json +29 -26
- package/src/codegen/docs.ts +11 -1
- package/src/generated/index.d.ts +773 -34
- package/src/generated/index.ts +62 -3
- package/src/generated/lexicon-aws.json +744 -16
- package/src/lint/post-synth/waw030.test.ts +209 -1
- package/src/lint/post-synth/waw030.ts +55 -0
- package/src/lint/post-synth/waw031.test.ts +273 -0
- package/src/lint/post-synth/waw031.ts +66 -0
- package/src/plugin.ts +29 -197
- package/src/serializer.test.ts +40 -0
- package/src/serializer.ts +6 -1
- /package/{dist → src}/skills/chant-eks.md +0 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -3237,6 +3237,24 @@ export declare class BedrockKnowledgeBase {
|
|
|
3237
3237
|
readonly UpdatedAt: string;
|
|
3238
3238
|
}
|
|
3239
3239
|
|
|
3240
|
+
export declare class BedrockMantleProject {
|
|
3241
|
+
constructor(props: {
|
|
3242
|
+
/** The name of the project. */
|
|
3243
|
+
Name: string;
|
|
3244
|
+
/** The ARN of the project. */
|
|
3245
|
+
Arn?: string;
|
|
3246
|
+
/** The timestamp when the project was created. */
|
|
3247
|
+
CreatedAt?: string;
|
|
3248
|
+
/** The unique identifier of the project. */
|
|
3249
|
+
Id?: string;
|
|
3250
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
3251
|
+
Tags?: BedrockMantleProject_Tag[];
|
|
3252
|
+
}, attributes?: CFResourceAttributes);
|
|
3253
|
+
readonly Arn: string;
|
|
3254
|
+
readonly CreatedAt: string;
|
|
3255
|
+
readonly Id: string;
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3240
3258
|
export declare class BedrockPrompt {
|
|
3241
3259
|
constructor(props: {
|
|
3242
3260
|
/** Name for a prompt resource. */
|
|
@@ -3569,6 +3587,31 @@ export declare class BrowserCustom {
|
|
|
3569
3587
|
readonly Status: BrowserCustom_BrowserStatus;
|
|
3570
3588
|
}
|
|
3571
3589
|
|
|
3590
|
+
export declare class BrowserProfile {
|
|
3591
|
+
constructor(props: {
|
|
3592
|
+
Name: string;
|
|
3593
|
+
CreatedAt?: string;
|
|
3594
|
+
Description?: string;
|
|
3595
|
+
LastSavedAt?: string;
|
|
3596
|
+
LastSavedBrowserId?: string;
|
|
3597
|
+
LastSavedBrowserSessionId?: string;
|
|
3598
|
+
LastUpdatedAt?: string;
|
|
3599
|
+
ProfileArn?: string;
|
|
3600
|
+
ProfileId?: string;
|
|
3601
|
+
Status?: BrowserProfile_BrowserProfileStatus;
|
|
3602
|
+
/** A map of tag keys and values. */
|
|
3603
|
+
Tags?: Record<string, unknown>;
|
|
3604
|
+
}, attributes?: CFResourceAttributes);
|
|
3605
|
+
readonly CreatedAt: string;
|
|
3606
|
+
readonly LastSavedAt: string;
|
|
3607
|
+
readonly LastSavedBrowserId: string;
|
|
3608
|
+
readonly LastSavedBrowserSessionId: string;
|
|
3609
|
+
readonly LastUpdatedAt: string;
|
|
3610
|
+
readonly ProfileArn: string;
|
|
3611
|
+
readonly ProfileId: string;
|
|
3612
|
+
readonly Status: BrowserProfile_BrowserProfileStatus;
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3572
3615
|
export declare class BrowserSettings {
|
|
3573
3616
|
constructor(props: {
|
|
3574
3617
|
AdditionalEncryptionContext?: Record<string, unknown>;
|
|
@@ -9824,6 +9867,67 @@ export declare class Dimension {
|
|
|
9824
9867
|
readonly Arn: string;
|
|
9825
9868
|
}
|
|
9826
9869
|
|
|
9870
|
+
export declare class DirectConnectConnection {
|
|
9871
|
+
constructor(props: {
|
|
9872
|
+
/** The bandwidth of the connection. */
|
|
9873
|
+
Bandwidth: string;
|
|
9874
|
+
/** The name of the connection. */
|
|
9875
|
+
ConnectionName: string;
|
|
9876
|
+
/** The location of the connection. */
|
|
9877
|
+
Location: string;
|
|
9878
|
+
/** The ARN of the connection. */
|
|
9879
|
+
ConnectionArn?: string;
|
|
9880
|
+
/** The ID of the connection. */
|
|
9881
|
+
ConnectionId?: string;
|
|
9882
|
+
/** The state of the connection. */
|
|
9883
|
+
ConnectionState?: string;
|
|
9884
|
+
/** The ID or ARN of the LAG to associate the connection with. */
|
|
9885
|
+
LagId?: any;
|
|
9886
|
+
/** The name of the service provider associated with the requested connection. */
|
|
9887
|
+
ProviderName?: string;
|
|
9888
|
+
/** Indicates whether you want the connection to support MAC Security (MACsec). */
|
|
9889
|
+
RequestMACSec?: boolean;
|
|
9890
|
+
/** The tags associated with the connection. */
|
|
9891
|
+
Tags?: DirectConnectConnection_Tag[];
|
|
9892
|
+
}, attributes?: CFResourceAttributes);
|
|
9893
|
+
readonly ConnectionArn: string;
|
|
9894
|
+
readonly ConnectionId: string;
|
|
9895
|
+
readonly ConnectionState: string;
|
|
9896
|
+
}
|
|
9897
|
+
|
|
9898
|
+
export declare class DirectConnectGateway {
|
|
9899
|
+
constructor(props: {
|
|
9900
|
+
/** The name of the Direct Connect gateway. */
|
|
9901
|
+
DirectConnectGatewayName: string;
|
|
9902
|
+
/** The autonomous system number (ASN) for the Amazon side of the connection. */
|
|
9903
|
+
AmazonSideAsn?: string;
|
|
9904
|
+
/** The ARN of the Direct Connect gateway. */
|
|
9905
|
+
DirectConnectGatewayArn?: string;
|
|
9906
|
+
/** The ID of the Direct Connect gateway. */
|
|
9907
|
+
DirectConnectGatewayId?: string;
|
|
9908
|
+
/** The tags associated with the Direct Connect gateway. */
|
|
9909
|
+
Tags?: DirectConnectGateway_Tag[];
|
|
9910
|
+
}, attributes?: CFResourceAttributes);
|
|
9911
|
+
readonly DirectConnectGatewayArn: string;
|
|
9912
|
+
readonly DirectConnectGatewayId: string;
|
|
9913
|
+
}
|
|
9914
|
+
|
|
9915
|
+
export declare class DirectConnectGatewayAssociation {
|
|
9916
|
+
constructor(props: {
|
|
9917
|
+
/** The ID or ARN of the virtual private gateway or transit gateway. */
|
|
9918
|
+
AssociatedGatewayId: any;
|
|
9919
|
+
/** The ID or ARN of the Direct Connect gateway. */
|
|
9920
|
+
DirectConnectGatewayId: any;
|
|
9921
|
+
/** The Amazon Resource Name (ARN) of the role to accept the Direct Connect Gateway association proposal. Needs directconnect:AcceptDirectConnectGatewayAssociationProposal permissions. */
|
|
9922
|
+
AcceptDirectConnectGatewayAssociationProposalRoleArn?: string;
|
|
9923
|
+
/** The Amazon VPC prefixes to advertise to the Direct Connect gateway. This parameter is required when you create an association to a transit gateway. */
|
|
9924
|
+
AllowedPrefixesToDirectConnectGateway?: string[];
|
|
9925
|
+
/** The ID of the Direct Connect gateway association. */
|
|
9926
|
+
AssociationId?: string;
|
|
9927
|
+
}, attributes?: CFResourceAttributes);
|
|
9928
|
+
readonly AssociationId: string;
|
|
9929
|
+
}
|
|
9930
|
+
|
|
9827
9931
|
export declare class DirectConnectGatewayAttachment {
|
|
9828
9932
|
constructor(props: {
|
|
9829
9933
|
/** The ID of a core network for the Direct Connect Gateway attachment. */
|
|
@@ -12129,6 +12233,36 @@ export declare class EvaluationForm {
|
|
|
12129
12233
|
readonly EvaluationFormArn: string;
|
|
12130
12234
|
}
|
|
12131
12235
|
|
|
12236
|
+
export declare class Evaluator {
|
|
12237
|
+
constructor(props: {
|
|
12238
|
+
/** The configuration for the evaluator. */
|
|
12239
|
+
EvaluatorConfig: Evaluator_EvaluatorConfig;
|
|
12240
|
+
/** The name of the evaluator. Must be unique within your account. */
|
|
12241
|
+
EvaluatorName: string;
|
|
12242
|
+
/** The evaluation level that determines the scope of evaluation. */
|
|
12243
|
+
Level: Evaluator_EvaluatorLevel;
|
|
12244
|
+
/** The timestamp when the evaluator was created. */
|
|
12245
|
+
CreatedAt?: string;
|
|
12246
|
+
/** The description of the evaluator. */
|
|
12247
|
+
Description?: string;
|
|
12248
|
+
/** The Amazon Resource Name (ARN) of the evaluator. */
|
|
12249
|
+
EvaluatorArn?: string;
|
|
12250
|
+
/** The unique identifier of the evaluator. */
|
|
12251
|
+
EvaluatorId?: string;
|
|
12252
|
+
/** The current status of the evaluator. */
|
|
12253
|
+
Status?: Evaluator_EvaluatorStatus;
|
|
12254
|
+
/** A list of tags to assign to the evaluator. */
|
|
12255
|
+
Tags?: Evaluator_Tag[];
|
|
12256
|
+
/** The timestamp when the evaluator was last updated. */
|
|
12257
|
+
UpdatedAt?: string;
|
|
12258
|
+
}, attributes?: CFResourceAttributes);
|
|
12259
|
+
readonly CreatedAt: string;
|
|
12260
|
+
readonly EvaluatorArn: string;
|
|
12261
|
+
readonly EvaluatorId: string;
|
|
12262
|
+
readonly Status: Evaluator_EvaluatorStatus;
|
|
12263
|
+
readonly UpdatedAt: string;
|
|
12264
|
+
}
|
|
12265
|
+
|
|
12132
12266
|
export declare class EventBridgeRuleTemplate {
|
|
12133
12267
|
constructor(props: {
|
|
12134
12268
|
EventType: EventBridgeRuleTemplate_EventBridgeRuleTemplateEventType;
|
|
@@ -17767,6 +17901,34 @@ export declare class Label {
|
|
|
17767
17901
|
readonly LastUpdatedTime: string;
|
|
17768
17902
|
}
|
|
17769
17903
|
|
|
17904
|
+
export declare class Lag {
|
|
17905
|
+
constructor(props: {
|
|
17906
|
+
/** The bandwidth of the individual physical dedicated connections bundled by the LAG. */
|
|
17907
|
+
ConnectionsBandwidth: string;
|
|
17908
|
+
/** The name of the LAG. */
|
|
17909
|
+
LagName: string;
|
|
17910
|
+
/** The location for the LAG. */
|
|
17911
|
+
Location: string;
|
|
17912
|
+
/** The ARN of the LAG. */
|
|
17913
|
+
LagArn?: string;
|
|
17914
|
+
/** The ID of the LAG. */
|
|
17915
|
+
LagId?: string;
|
|
17916
|
+
/** The state of the LAG. */
|
|
17917
|
+
LagState?: string;
|
|
17918
|
+
/** The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational. */
|
|
17919
|
+
MinimumLinks?: number;
|
|
17920
|
+
/** The name of the service provider associated with the requested LAG. */
|
|
17921
|
+
ProviderName?: string;
|
|
17922
|
+
/** Indicates whether you want the LAG to support MAC Security (MACsec). */
|
|
17923
|
+
RequestMACSec?: boolean;
|
|
17924
|
+
/** The tags associated with the LAG. */
|
|
17925
|
+
Tags?: Lag_Tag[];
|
|
17926
|
+
}, attributes?: CFResourceAttributes);
|
|
17927
|
+
readonly LagArn: string;
|
|
17928
|
+
readonly LagId: string;
|
|
17929
|
+
readonly LagState: string;
|
|
17930
|
+
}
|
|
17931
|
+
|
|
17770
17932
|
export declare class LakeFormationResource {
|
|
17771
17933
|
constructor(props: {
|
|
17772
17934
|
ResourceArn: string;
|
|
@@ -22518,6 +22680,46 @@ export declare class OmicsWorkflow {
|
|
|
22518
22680
|
readonly Uuid: string;
|
|
22519
22681
|
}
|
|
22520
22682
|
|
|
22683
|
+
export declare class OnlineEvaluationConfig {
|
|
22684
|
+
constructor(props: {
|
|
22685
|
+
/** The data source configuration that specifies CloudWatch log groups and service names to monitor. */
|
|
22686
|
+
DataSourceConfig: OnlineEvaluationConfig_DataSourceConfig;
|
|
22687
|
+
/** The Amazon Resource Name (ARN) of the IAM role that grants permissions for evaluation. */
|
|
22688
|
+
EvaluationExecutionRoleArn: string;
|
|
22689
|
+
/** The list of evaluators to apply during online evaluation. */
|
|
22690
|
+
Evaluators: OnlineEvaluationConfig_EvaluatorReference[];
|
|
22691
|
+
/** The name of the online evaluation configuration. Must be unique within your account. */
|
|
22692
|
+
OnlineEvaluationConfigName: string;
|
|
22693
|
+
/** The evaluation rule that defines sampling configuration, filters, and session detection settings. */
|
|
22694
|
+
Rule: OnlineEvaluationConfig_Rule;
|
|
22695
|
+
/** The timestamp when the online evaluation configuration was created. */
|
|
22696
|
+
CreatedAt?: string;
|
|
22697
|
+
/** The description of the online evaluation configuration. */
|
|
22698
|
+
Description?: string;
|
|
22699
|
+
/** The execution status indicating whether the online evaluation is currently running. */
|
|
22700
|
+
ExecutionStatus?: OnlineEvaluationConfig_ExecutionStatus;
|
|
22701
|
+
/** The Amazon Resource Name (ARN) of the online evaluation configuration. */
|
|
22702
|
+
OnlineEvaluationConfigArn?: string;
|
|
22703
|
+
/** The unique identifier of the online evaluation configuration. */
|
|
22704
|
+
OnlineEvaluationConfigId?: string;
|
|
22705
|
+
/** The configuration that specifies where evaluation results should be written. */
|
|
22706
|
+
OutputConfig?: OnlineEvaluationConfig_OutputConfig;
|
|
22707
|
+
/** The status of the online evaluation configuration. */
|
|
22708
|
+
Status?: OnlineEvaluationConfig_OnlineEvaluationConfigStatus;
|
|
22709
|
+
/** A list of tags to assign to the online evaluation configuration. */
|
|
22710
|
+
Tags?: OnlineEvaluationConfig_Tag[];
|
|
22711
|
+
/** The timestamp when the online evaluation configuration was last updated. */
|
|
22712
|
+
UpdatedAt?: string;
|
|
22713
|
+
}, attributes?: CFResourceAttributes);
|
|
22714
|
+
readonly CreatedAt: string;
|
|
22715
|
+
readonly ExecutionStatus: OnlineEvaluationConfig_ExecutionStatus;
|
|
22716
|
+
readonly OnlineEvaluationConfigArn: string;
|
|
22717
|
+
readonly OnlineEvaluationConfigId: string;
|
|
22718
|
+
readonly OutputConfig: OnlineEvaluationConfig_OutputConfig;
|
|
22719
|
+
readonly Status: OnlineEvaluationConfig_OnlineEvaluationConfigStatus;
|
|
22720
|
+
readonly UpdatedAt: string;
|
|
22721
|
+
}
|
|
22722
|
+
|
|
22521
22723
|
export declare class OpenSearchServerlessAccessPolicy {
|
|
22522
22724
|
constructor(props: {
|
|
22523
22725
|
/** The name of the policy */
|
|
@@ -24394,6 +24596,38 @@ export declare class PrivateGraphEndpoint {
|
|
|
24394
24596
|
readonly VpcEndpointId: string;
|
|
24395
24597
|
}
|
|
24396
24598
|
|
|
24599
|
+
export declare class PrivateVirtualInterface {
|
|
24600
|
+
constructor(props: {
|
|
24601
|
+
/** The BGP peers configured on this virtual interface. */
|
|
24602
|
+
BgpPeers: PrivateVirtualInterface_BgpPeer[];
|
|
24603
|
+
/** The ID or ARN of the connection or LAG. */
|
|
24604
|
+
ConnectionId: any;
|
|
24605
|
+
/** The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-). */
|
|
24606
|
+
VirtualInterfaceName: string;
|
|
24607
|
+
/** The ID of the VLAN. */
|
|
24608
|
+
Vlan: number;
|
|
24609
|
+
/** The Amazon Resource Name (ARN) of the role to allocate the private virtual interface. Needs directconnect:AllocatePrivateVirtualInterface permissions and tag permissions if applicable. */
|
|
24610
|
+
AllocatePrivateVirtualInterfaceRoleArn?: string;
|
|
24611
|
+
/** The ID or ARN of the Direct Connect gateway. */
|
|
24612
|
+
DirectConnectGatewayId?: any;
|
|
24613
|
+
/** Indicates whether to enable or disable SiteLink. */
|
|
24614
|
+
EnableSiteLink?: boolean;
|
|
24615
|
+
/** The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500. */
|
|
24616
|
+
Mtu?: number;
|
|
24617
|
+
/** The tags associated with the private virtual interface. */
|
|
24618
|
+
Tags?: PrivateVirtualInterface_Tag[];
|
|
24619
|
+
/** The ID or ARN of the virtual private gateway. */
|
|
24620
|
+
VirtualGatewayId?: string;
|
|
24621
|
+
/** The ID of the virtual interface. */
|
|
24622
|
+
VirtualInterfaceArn?: string;
|
|
24623
|
+
/** The ID of the virtual interface. */
|
|
24624
|
+
VirtualInterfaceId?: string;
|
|
24625
|
+
}, attributes?: CFResourceAttributes);
|
|
24626
|
+
readonly BgpPeers_Item_BgpPeerId: string;
|
|
24627
|
+
readonly VirtualInterfaceArn: string;
|
|
24628
|
+
readonly VirtualInterfaceId: string;
|
|
24629
|
+
}
|
|
24630
|
+
|
|
24397
24631
|
export declare class ProactiveEngagement {
|
|
24398
24632
|
constructor(props: {
|
|
24399
24633
|
/** A list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you for escalations to the SRT and to initiate proactive customer support.
|
|
@@ -24745,6 +24979,32 @@ We recommend that type names adhere to the following pattern: company_or_organiz
|
|
|
24745
24979
|
readonly TypeVersionArn: string;
|
|
24746
24980
|
}
|
|
24747
24981
|
|
|
24982
|
+
export declare class PublicVirtualInterface {
|
|
24983
|
+
constructor(props: {
|
|
24984
|
+
/** The BGP peers configured on this virtual interface. */
|
|
24985
|
+
BgpPeers: PublicVirtualInterface_BgpPeer[];
|
|
24986
|
+
/** The ID or ARN of the connection or LAG. */
|
|
24987
|
+
ConnectionId: any;
|
|
24988
|
+
/** The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-). */
|
|
24989
|
+
VirtualInterfaceName: string;
|
|
24990
|
+
/** The ID of the VLAN. */
|
|
24991
|
+
Vlan: number;
|
|
24992
|
+
/** The Amazon Resource Name (ARN) of the role to allocate the public virtual interface. Needs directconnect:AllocatePublicVirtualInterface permissions and tag permissions if applicable. */
|
|
24993
|
+
AllocatePublicVirtualInterfaceRoleArn?: string;
|
|
24994
|
+
/** The routes to be advertised to the AWS network in this region. */
|
|
24995
|
+
RouteFilterPrefixes?: string[];
|
|
24996
|
+
/** The tags associated with the public virtual interface. */
|
|
24997
|
+
Tags?: PublicVirtualInterface_Tag[];
|
|
24998
|
+
/** The ARN of the virtual interface. */
|
|
24999
|
+
VirtualInterfaceArn?: string;
|
|
25000
|
+
/** The ID of the virtual interface. */
|
|
25001
|
+
VirtualInterfaceId?: string;
|
|
25002
|
+
}, attributes?: CFResourceAttributes);
|
|
25003
|
+
readonly BgpPeers_Item_BgpPeerId: string;
|
|
25004
|
+
readonly VirtualInterfaceArn: string;
|
|
25005
|
+
readonly VirtualInterfaceId: string;
|
|
25006
|
+
}
|
|
25007
|
+
|
|
24748
25008
|
export declare class Publisher {
|
|
24749
25009
|
constructor(props: {
|
|
24750
25010
|
/** Whether you accept the terms and conditions for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to publish public extensions to the CloudFormation registry. The terms and conditions can be found at https://cloudformation-registry-documents.s3.amazonaws.com/Terms_and_Conditions_for_AWS_CloudFormation_Registry_Publishers.pdf */
|
|
@@ -32755,6 +33015,36 @@ export declare class TransitGatewayVpcAttachment {
|
|
|
32755
33015
|
readonly Id: string;
|
|
32756
33016
|
}
|
|
32757
33017
|
|
|
33018
|
+
export declare class TransitVirtualInterface {
|
|
33019
|
+
constructor(props: {
|
|
33020
|
+
/** The BGP peers configured on this virtual interface.. */
|
|
33021
|
+
BgpPeers: TransitVirtualInterface_BgpPeer[];
|
|
33022
|
+
/** The ID or ARN of the connection or LAG. */
|
|
33023
|
+
ConnectionId: any;
|
|
33024
|
+
/** The ID or ARN of the Direct Connect gateway. */
|
|
33025
|
+
DirectConnectGatewayId: any;
|
|
33026
|
+
/** The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-). */
|
|
33027
|
+
VirtualInterfaceName: string;
|
|
33028
|
+
/** The ID of the VLAN. */
|
|
33029
|
+
Vlan: number;
|
|
33030
|
+
/** The Amazon Resource Name (ARN) of the role to allocate the TransitVifAllocation. Needs directconnect:AllocateTransitVirtualInterface permissions and tag permissions if applicable. */
|
|
33031
|
+
AllocateTransitVirtualInterfaceRoleArn?: string;
|
|
33032
|
+
/** Indicates whether to enable or disable SiteLink. */
|
|
33033
|
+
EnableSiteLink?: boolean;
|
|
33034
|
+
/** The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500. */
|
|
33035
|
+
Mtu?: number;
|
|
33036
|
+
/** The tags associated with the private virtual interface. */
|
|
33037
|
+
Tags?: TransitVirtualInterface_Tag[];
|
|
33038
|
+
/** The ARN of the virtual interface. */
|
|
33039
|
+
VirtualInterfaceArn?: string;
|
|
33040
|
+
/** The ID of the virtual interface. */
|
|
33041
|
+
VirtualInterfaceId?: string;
|
|
33042
|
+
}, attributes?: CFResourceAttributes);
|
|
33043
|
+
readonly BgpPeers_Item_BgpPeerId: string;
|
|
33044
|
+
readonly VirtualInterfaceArn: string;
|
|
33045
|
+
readonly VirtualInterfaceId: string;
|
|
33046
|
+
}
|
|
33047
|
+
|
|
32758
33048
|
export declare class Trigger {
|
|
32759
33049
|
constructor(props: {
|
|
32760
33050
|
/** The actions initiated by this trigger. */
|
|
@@ -46480,6 +46770,24 @@ export declare class ARCRegionSwitchPlan_ParallelExecutionBlockConfiguration {
|
|
|
46480
46770
|
});
|
|
46481
46771
|
}
|
|
46482
46772
|
|
|
46773
|
+
export declare class ARCRegionSwitchPlan_RdsCreateCrossRegionReplicaConfiguration {
|
|
46774
|
+
constructor(props: {
|
|
46775
|
+
DbInstanceArnMap: Record<string, unknown>;
|
|
46776
|
+
CrossAccountRole?: string;
|
|
46777
|
+
ExternalId?: string;
|
|
46778
|
+
TimeoutMinutes?: number;
|
|
46779
|
+
});
|
|
46780
|
+
}
|
|
46781
|
+
|
|
46782
|
+
export declare class ARCRegionSwitchPlan_RdsPromoteReadReplicaConfiguration {
|
|
46783
|
+
constructor(props: {
|
|
46784
|
+
DbInstanceArnMap: Record<string, unknown>;
|
|
46785
|
+
CrossAccountRole?: string;
|
|
46786
|
+
ExternalId?: string;
|
|
46787
|
+
TimeoutMinutes?: number;
|
|
46788
|
+
});
|
|
46789
|
+
}
|
|
46790
|
+
|
|
46483
46791
|
export declare class ARCRegionSwitchPlan_RegionSwitchPlanConfiguration {
|
|
46484
46792
|
constructor(props: {
|
|
46485
46793
|
Arn: string;
|
|
@@ -50502,6 +50810,16 @@ export declare class BedrockEmbeddingModelConfiguration {
|
|
|
50502
50810
|
});
|
|
50503
50811
|
}
|
|
50504
50812
|
|
|
50813
|
+
export declare class BedrockEvaluatorModelConfig {
|
|
50814
|
+
constructor(props: {
|
|
50815
|
+
/** The identifier of the Amazon Bedrock model to use for evaluation. */
|
|
50816
|
+
ModelId: string;
|
|
50817
|
+
/** Additional model-specific request fields. */
|
|
50818
|
+
AdditionalModelRequestFields?: Record<string, unknown>;
|
|
50819
|
+
InferenceConfig?: Evaluator_InferenceConfiguration;
|
|
50820
|
+
});
|
|
50821
|
+
}
|
|
50822
|
+
|
|
50505
50823
|
export declare class BedrockFlow_AgentFlowNodeConfiguration {
|
|
50506
50824
|
constructor(props: {
|
|
50507
50825
|
/** Arn representation of the Agent Alias. */
|
|
@@ -51199,6 +51517,15 @@ export declare class BedrockKnowledgeBase_VideoSegmentationConfiguration {
|
|
|
51199
51517
|
});
|
|
51200
51518
|
}
|
|
51201
51519
|
|
|
51520
|
+
export declare class BedrockMantleProject_Tag {
|
|
51521
|
+
constructor(props: {
|
|
51522
|
+
/** The key name of the tag. */
|
|
51523
|
+
Key: string;
|
|
51524
|
+
/** The value for the tag. */
|
|
51525
|
+
Value: string;
|
|
51526
|
+
});
|
|
51527
|
+
}
|
|
51528
|
+
|
|
51202
51529
|
export declare class BedrockModelSpecification {
|
|
51203
51530
|
constructor(props: {
|
|
51204
51531
|
ModelArn: string;
|
|
@@ -52873,6 +53200,36 @@ export declare class BrowserNetworkConfiguration {
|
|
|
52873
53200
|
});
|
|
52874
53201
|
}
|
|
52875
53202
|
|
|
53203
|
+
export declare class BrowserProfile_BrowserProfileSummary {
|
|
53204
|
+
constructor(props: {
|
|
53205
|
+
CreatedAt: string;
|
|
53206
|
+
LastUpdatedAt: string;
|
|
53207
|
+
Name: string;
|
|
53208
|
+
ProfileArn: string;
|
|
53209
|
+
ProfileId: string;
|
|
53210
|
+
Status: BrowserProfile_BrowserProfileStatus;
|
|
53211
|
+
Description?: string;
|
|
53212
|
+
LastSavedAt?: string;
|
|
53213
|
+
LastSavedBrowserId?: string;
|
|
53214
|
+
LastSavedBrowserSessionId?: string;
|
|
53215
|
+
});
|
|
53216
|
+
}
|
|
53217
|
+
|
|
53218
|
+
export declare class BrowserProfileSummary {
|
|
53219
|
+
constructor(props: {
|
|
53220
|
+
CreatedAt: string;
|
|
53221
|
+
LastUpdatedAt: string;
|
|
53222
|
+
Name: string;
|
|
53223
|
+
ProfileArn: string;
|
|
53224
|
+
ProfileId: string;
|
|
53225
|
+
Status: BrowserProfile_BrowserProfileStatus;
|
|
53226
|
+
Description?: string;
|
|
53227
|
+
LastSavedAt?: string;
|
|
53228
|
+
LastSavedBrowserId?: string;
|
|
53229
|
+
LastSavedBrowserSessionId?: string;
|
|
53230
|
+
});
|
|
53231
|
+
}
|
|
53232
|
+
|
|
52876
53233
|
export declare class BrowserSettings_Tag {
|
|
52877
53234
|
constructor(props: {
|
|
52878
53235
|
Key: string;
|
|
@@ -55063,6 +55420,15 @@ export declare class CategoricalHyperParameterRange {
|
|
|
55063
55420
|
});
|
|
55064
55421
|
}
|
|
55065
55422
|
|
|
55423
|
+
export declare class CategoricalScaleDefinition {
|
|
55424
|
+
constructor(props: {
|
|
55425
|
+
/** The description that explains what this categorical rating represents. */
|
|
55426
|
+
Definition: string;
|
|
55427
|
+
/** The label of this categorical rating option. */
|
|
55428
|
+
Label: string;
|
|
55429
|
+
});
|
|
55430
|
+
}
|
|
55431
|
+
|
|
55066
55432
|
export declare class CdcSpecification {
|
|
55067
55433
|
constructor(props: {
|
|
55068
55434
|
Status: CassandraTable_CdcStatus;
|
|
@@ -57033,6 +57399,15 @@ export declare class CloudWatchLogsDestinationConfiguration {
|
|
|
57033
57399
|
});
|
|
57034
57400
|
}
|
|
57035
57401
|
|
|
57402
|
+
export declare class CloudWatchLogsInputConfig {
|
|
57403
|
+
constructor(props: {
|
|
57404
|
+
/** The list of CloudWatch log group names to monitor for agent traces. */
|
|
57405
|
+
LogGroupNames: string[];
|
|
57406
|
+
/** The list of service names to filter traces within the specified log groups. */
|
|
57407
|
+
ServiceNames: string[];
|
|
57408
|
+
});
|
|
57409
|
+
}
|
|
57410
|
+
|
|
57036
57411
|
export declare class CloudWatchLogsLogDelivery {
|
|
57037
57412
|
constructor(props: {
|
|
57038
57413
|
/** Specifies whether the logs get sent to the specified CloudWatch Logs destination. */
|
|
@@ -57079,15 +57454,6 @@ export declare class CloudWatchMonitoringConfiguration {
|
|
|
57079
57454
|
});
|
|
57080
57455
|
}
|
|
57081
57456
|
|
|
57082
|
-
export declare class CloudWatchOutputConfig {
|
|
57083
|
-
constructor(props: {
|
|
57084
|
-
/** The name of the CloudWatch log group where you want to send command output. */
|
|
57085
|
-
CloudWatchLogGroupName?: string;
|
|
57086
|
-
/** Enables Systems Manager to send command output to CloudWatch Logs. */
|
|
57087
|
-
CloudWatchOutputEnabled?: boolean;
|
|
57088
|
-
});
|
|
57089
|
-
}
|
|
57090
|
-
|
|
57091
57457
|
export declare class ClusterAutoScalingConfig {
|
|
57092
57458
|
constructor(props: {
|
|
57093
57459
|
/** The auto-scaling mode for the cluster */
|
|
@@ -59164,6 +59530,7 @@ export declare class ComputeEnvironment_ComputeResources {
|
|
|
59164
59530
|
LaunchTemplate?: ComputeEnvironment_LaunchTemplateSpecification;
|
|
59165
59531
|
MinvCpus?: number;
|
|
59166
59532
|
PlacementGroup?: string;
|
|
59533
|
+
ScalingPolicy?: ComputeEnvironment_ComputeScalingPolicy;
|
|
59167
59534
|
SecurityGroupIds?: string[];
|
|
59168
59535
|
SpotIamFleetRole?: string;
|
|
59169
59536
|
/** A key-value pair to associate with a resource. */
|
|
@@ -59172,6 +59539,12 @@ export declare class ComputeEnvironment_ComputeResources {
|
|
|
59172
59539
|
});
|
|
59173
59540
|
}
|
|
59174
59541
|
|
|
59542
|
+
export declare class ComputeEnvironment_ComputeScalingPolicy {
|
|
59543
|
+
constructor(props: {
|
|
59544
|
+
MinScaleDownDelayMinutes?: number;
|
|
59545
|
+
});
|
|
59546
|
+
}
|
|
59547
|
+
|
|
59175
59548
|
export declare class ComputeEnvironment_Ec2ConfigurationObject {
|
|
59176
59549
|
constructor(props: {
|
|
59177
59550
|
ImageType: string;
|
|
@@ -59348,6 +59721,7 @@ export declare class ComputeResources {
|
|
|
59348
59721
|
LaunchTemplate?: ComputeEnvironment_LaunchTemplateSpecification;
|
|
59349
59722
|
MinvCpus?: number;
|
|
59350
59723
|
PlacementGroup?: string;
|
|
59724
|
+
ScalingPolicy?: ComputeEnvironment_ComputeScalingPolicy;
|
|
59351
59725
|
SecurityGroupIds?: string[];
|
|
59352
59726
|
SpotIamFleetRole?: string;
|
|
59353
59727
|
/** A key-value pair to associate with a resource. */
|
|
@@ -59356,6 +59730,12 @@ export declare class ComputeResources {
|
|
|
59356
59730
|
});
|
|
59357
59731
|
}
|
|
59358
59732
|
|
|
59733
|
+
export declare class ComputeScalingPolicy {
|
|
59734
|
+
constructor(props: {
|
|
59735
|
+
MinScaleDownDelayMinutes?: number;
|
|
59736
|
+
});
|
|
59737
|
+
}
|
|
59738
|
+
|
|
59359
59739
|
export declare class Conditional {
|
|
59360
59740
|
constructor(props: {
|
|
59361
59741
|
ConditionalBranches: any;
|
|
@@ -67899,6 +68279,12 @@ export declare class DataSharingPreference {
|
|
|
67899
68279
|
});
|
|
67900
68280
|
}
|
|
67901
68281
|
|
|
68282
|
+
export declare class DataSourceConfig {
|
|
68283
|
+
constructor(props: {
|
|
68284
|
+
CloudWatchLogs: OnlineEvaluationConfig_CloudWatchLogsInputConfig;
|
|
68285
|
+
});
|
|
68286
|
+
}
|
|
68287
|
+
|
|
67902
68288
|
export declare class DataSourceCredentials {
|
|
67903
68289
|
constructor(props: {
|
|
67904
68290
|
/** <p>The Amazon Resource Name (ARN) of a data source that has the credential pair that you
|
|
@@ -71603,6 +71989,24 @@ export declare class Dimension_Tag {
|
|
|
71603
71989
|
});
|
|
71604
71990
|
}
|
|
71605
71991
|
|
|
71992
|
+
export declare class DirectConnectConnection_Tag {
|
|
71993
|
+
constructor(props: {
|
|
71994
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
71995
|
+
Key: string;
|
|
71996
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
71997
|
+
Value: string;
|
|
71998
|
+
});
|
|
71999
|
+
}
|
|
72000
|
+
|
|
72001
|
+
export declare class DirectConnectGateway_Tag {
|
|
72002
|
+
constructor(props: {
|
|
72003
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
72004
|
+
Key: string;
|
|
72005
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
72006
|
+
Value: string;
|
|
72007
|
+
});
|
|
72008
|
+
}
|
|
72009
|
+
|
|
71606
72010
|
export declare class DirectConnectGatewayAttachment_ProposedNetworkFunctionGroupChange {
|
|
71607
72011
|
constructor(props: {
|
|
71608
72012
|
/** The rule number in the policy document that applies to this change. */
|
|
@@ -78644,6 +79048,101 @@ export declare class EvaluationReviewNotificationRecipientValue {
|
|
|
78644
79048
|
});
|
|
78645
79049
|
}
|
|
78646
79050
|
|
|
79051
|
+
export declare class Evaluator_BedrockEvaluatorModelConfig {
|
|
79052
|
+
constructor(props: {
|
|
79053
|
+
/** The identifier of the Amazon Bedrock model to use for evaluation. */
|
|
79054
|
+
ModelId: string;
|
|
79055
|
+
/** Additional model-specific request fields. */
|
|
79056
|
+
AdditionalModelRequestFields?: Record<string, unknown>;
|
|
79057
|
+
InferenceConfig?: Evaluator_InferenceConfiguration;
|
|
79058
|
+
});
|
|
79059
|
+
}
|
|
79060
|
+
|
|
79061
|
+
export declare class Evaluator_CategoricalScaleDefinition {
|
|
79062
|
+
constructor(props: {
|
|
79063
|
+
/** The description that explains what this categorical rating represents. */
|
|
79064
|
+
Definition: string;
|
|
79065
|
+
/** The label of this categorical rating option. */
|
|
79066
|
+
Label: string;
|
|
79067
|
+
});
|
|
79068
|
+
}
|
|
79069
|
+
|
|
79070
|
+
export declare class Evaluator_EvaluatorConfig {
|
|
79071
|
+
constructor(props: {
|
|
79072
|
+
LlmAsAJudge: Evaluator_LlmAsAJudgeEvaluatorConfig;
|
|
79073
|
+
});
|
|
79074
|
+
}
|
|
79075
|
+
|
|
79076
|
+
export declare class Evaluator_EvaluatorModelConfig {
|
|
79077
|
+
constructor(props: {
|
|
79078
|
+
BedrockEvaluatorModelConfig: Evaluator_BedrockEvaluatorModelConfig;
|
|
79079
|
+
});
|
|
79080
|
+
}
|
|
79081
|
+
|
|
79082
|
+
export declare class Evaluator_InferenceConfiguration {
|
|
79083
|
+
constructor(props: {
|
|
79084
|
+
/** The maximum number of tokens to generate in the model response. */
|
|
79085
|
+
MaxTokens?: number;
|
|
79086
|
+
/** The temperature value that controls randomness in the model's responses. */
|
|
79087
|
+
Temperature?: number;
|
|
79088
|
+
/** The top-p sampling parameter that controls the diversity of the model's responses. */
|
|
79089
|
+
TopP?: number;
|
|
79090
|
+
});
|
|
79091
|
+
}
|
|
79092
|
+
|
|
79093
|
+
export declare class Evaluator_LlmAsAJudgeEvaluatorConfig {
|
|
79094
|
+
constructor(props: {
|
|
79095
|
+
/** The evaluation instructions that guide the language model in assessing agent performance. */
|
|
79096
|
+
Instructions: string;
|
|
79097
|
+
ModelConfig: Evaluator_EvaluatorModelConfig;
|
|
79098
|
+
RatingScale: Evaluator_RatingScale;
|
|
79099
|
+
});
|
|
79100
|
+
}
|
|
79101
|
+
|
|
79102
|
+
export declare class Evaluator_NumericalScaleDefinition {
|
|
79103
|
+
constructor(props: {
|
|
79104
|
+
/** The description that explains what this numerical rating represents. */
|
|
79105
|
+
Definition: string;
|
|
79106
|
+
/** The label that describes this numerical rating option. */
|
|
79107
|
+
Label: string;
|
|
79108
|
+
/** The numerical value for this rating scale option. */
|
|
79109
|
+
Value: number;
|
|
79110
|
+
});
|
|
79111
|
+
}
|
|
79112
|
+
|
|
79113
|
+
export declare class Evaluator_RatingScale {
|
|
79114
|
+
constructor(props: {
|
|
79115
|
+
Categorical?: Evaluator_CategoricalScaleDefinition[];
|
|
79116
|
+
Numerical?: Evaluator_NumericalScaleDefinition[];
|
|
79117
|
+
});
|
|
79118
|
+
}
|
|
79119
|
+
|
|
79120
|
+
export declare class Evaluator_Tag {
|
|
79121
|
+
constructor(props: {
|
|
79122
|
+
Key: string;
|
|
79123
|
+
Value: string;
|
|
79124
|
+
});
|
|
79125
|
+
}
|
|
79126
|
+
|
|
79127
|
+
export declare class EvaluatorConfig {
|
|
79128
|
+
constructor(props: {
|
|
79129
|
+
LlmAsAJudge: Evaluator_LlmAsAJudgeEvaluatorConfig;
|
|
79130
|
+
});
|
|
79131
|
+
}
|
|
79132
|
+
|
|
79133
|
+
export declare class EvaluatorModelConfig {
|
|
79134
|
+
constructor(props: {
|
|
79135
|
+
BedrockEvaluatorModelConfig: Evaluator_BedrockEvaluatorModelConfig;
|
|
79136
|
+
});
|
|
79137
|
+
}
|
|
79138
|
+
|
|
79139
|
+
export declare class EvaluatorReference {
|
|
79140
|
+
constructor(props: {
|
|
79141
|
+
/** The unique identifier of the evaluator. */
|
|
79142
|
+
EvaluatorId: string;
|
|
79143
|
+
});
|
|
79144
|
+
}
|
|
79145
|
+
|
|
78647
79146
|
export declare class Event {
|
|
78648
79147
|
constructor(props: {
|
|
78649
79148
|
/** The name of the event. */
|
|
@@ -81080,14 +81579,6 @@ export declare class FilterTag {
|
|
|
81080
81579
|
});
|
|
81081
81580
|
}
|
|
81082
81581
|
|
|
81083
|
-
export declare class FilterValue {
|
|
81084
|
-
constructor(props: {
|
|
81085
|
-
Value: string;
|
|
81086
|
-
/** Variable name */
|
|
81087
|
-
ValueReference: string;
|
|
81088
|
-
});
|
|
81089
|
-
}
|
|
81090
|
-
|
|
81091
81582
|
export declare class FindingsFilter_CriterionAdditionalProperties {
|
|
81092
81583
|
constructor(props: {
|
|
81093
81584
|
eq?: string[];
|
|
@@ -88808,21 +89299,6 @@ export declare class InferenceComponentStartupParameters {
|
|
|
88808
89299
|
});
|
|
88809
89300
|
}
|
|
88810
89301
|
|
|
88811
|
-
export declare class InferenceConfiguration {
|
|
88812
|
-
constructor(props: {
|
|
88813
|
-
/** Maximum length of output */
|
|
88814
|
-
MaximumLength?: number;
|
|
88815
|
-
/** List of stop sequences */
|
|
88816
|
-
StopSequences?: string[];
|
|
88817
|
-
/** Controls randomness, higher values increase diversity */
|
|
88818
|
-
Temperature?: number;
|
|
88819
|
-
/** Sample from the k most likely next tokens */
|
|
88820
|
-
TopK?: number;
|
|
88821
|
-
/** Cumulative probability cutoff for token selection */
|
|
88822
|
-
TopP?: number;
|
|
88823
|
-
});
|
|
88824
|
-
}
|
|
88825
|
-
|
|
88826
89302
|
export declare class InferenceExecutionConfig {
|
|
88827
89303
|
constructor(props: {
|
|
88828
89304
|
Mode: string;
|
|
@@ -94890,6 +95366,15 @@ export declare class LabelSummary {
|
|
|
94890
95366
|
});
|
|
94891
95367
|
}
|
|
94892
95368
|
|
|
95369
|
+
export declare class Lag_Tag {
|
|
95370
|
+
constructor(props: {
|
|
95371
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
95372
|
+
Key: string;
|
|
95373
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
95374
|
+
Value: string;
|
|
95375
|
+
});
|
|
95376
|
+
}
|
|
95377
|
+
|
|
94893
95378
|
export declare class LambdaAlias_AliasRoutingConfiguration {
|
|
94894
95379
|
constructor(props: {
|
|
94895
95380
|
/** The second version, and the percentage of traffic that's routed to it. */
|
|
@@ -97609,6 +98094,15 @@ export declare class LiveSource_Tag {
|
|
|
97609
98094
|
});
|
|
97610
98095
|
}
|
|
97611
98096
|
|
|
98097
|
+
export declare class LlmAsAJudgeEvaluatorConfig {
|
|
98098
|
+
constructor(props: {
|
|
98099
|
+
/** The evaluation instructions that guide the language model in assessing agent performance. */
|
|
98100
|
+
Instructions: string;
|
|
98101
|
+
ModelConfig: Evaluator_EvaluatorModelConfig;
|
|
98102
|
+
RatingScale: Evaluator_RatingScale;
|
|
98103
|
+
});
|
|
98104
|
+
}
|
|
98105
|
+
|
|
97612
98106
|
export declare class LoadBalancer_LoadBalancerAttribute {
|
|
97613
98107
|
constructor(props: {
|
|
97614
98108
|
/** The name of the attribute.
|
|
@@ -109122,6 +109616,17 @@ export declare class NumberAttributeConstraints {
|
|
|
109122
109616
|
});
|
|
109123
109617
|
}
|
|
109124
109618
|
|
|
109619
|
+
export declare class NumericalScaleDefinition {
|
|
109620
|
+
constructor(props: {
|
|
109621
|
+
/** The description that explains what this numerical rating represents. */
|
|
109622
|
+
Definition: string;
|
|
109623
|
+
/** The label that describes this numerical rating option. */
|
|
109624
|
+
Label: string;
|
|
109625
|
+
/** The numerical value for this rating scale option. */
|
|
109626
|
+
Value: number;
|
|
109627
|
+
});
|
|
109628
|
+
}
|
|
109629
|
+
|
|
109125
109630
|
export declare class NumericQuestionPropertyValueAutomation {
|
|
109126
109631
|
constructor(props: {
|
|
109127
109632
|
/** The property label of the automation. */
|
|
@@ -109646,6 +110151,92 @@ export declare class OnlineAbConfigObject {
|
|
|
109646
110151
|
});
|
|
109647
110152
|
}
|
|
109648
110153
|
|
|
110154
|
+
export declare class OnlineEvaluationConfig_CloudWatchLogsInputConfig {
|
|
110155
|
+
constructor(props: {
|
|
110156
|
+
/** The list of CloudWatch log group names to monitor for agent traces. */
|
|
110157
|
+
LogGroupNames: string[];
|
|
110158
|
+
/** The list of service names to filter traces within the specified log groups. */
|
|
110159
|
+
ServiceNames: string[];
|
|
110160
|
+
});
|
|
110161
|
+
}
|
|
110162
|
+
|
|
110163
|
+
export declare class OnlineEvaluationConfig_CloudWatchOutputConfig {
|
|
110164
|
+
constructor(props: {
|
|
110165
|
+
/** The CloudWatch log group name for evaluation results. */
|
|
110166
|
+
LogGroupName?: string;
|
|
110167
|
+
});
|
|
110168
|
+
}
|
|
110169
|
+
|
|
110170
|
+
export declare class OnlineEvaluationConfig_DataSourceConfig {
|
|
110171
|
+
constructor(props: {
|
|
110172
|
+
CloudWatchLogs: OnlineEvaluationConfig_CloudWatchLogsInputConfig;
|
|
110173
|
+
});
|
|
110174
|
+
}
|
|
110175
|
+
|
|
110176
|
+
export declare class OnlineEvaluationConfig_EvaluatorReference {
|
|
110177
|
+
constructor(props: {
|
|
110178
|
+
/** The unique identifier of the evaluator. */
|
|
110179
|
+
EvaluatorId: string;
|
|
110180
|
+
});
|
|
110181
|
+
}
|
|
110182
|
+
|
|
110183
|
+
export declare class OnlineEvaluationConfig_Filter {
|
|
110184
|
+
constructor(props: {
|
|
110185
|
+
/** The key or field name to filter on within the agent trace data. */
|
|
110186
|
+
Key: string;
|
|
110187
|
+
/** The comparison operator to use for filtering. */
|
|
110188
|
+
Operator: "Contains" | "Equals" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "NotContains" | "NotEquals";
|
|
110189
|
+
Value: OnlineEvaluationConfig_FilterValue;
|
|
110190
|
+
});
|
|
110191
|
+
}
|
|
110192
|
+
|
|
110193
|
+
export declare class OnlineEvaluationConfig_FilterValue {
|
|
110194
|
+
constructor(props: {
|
|
110195
|
+
/** The boolean value for true/false filtering conditions. */
|
|
110196
|
+
BooleanValue?: boolean;
|
|
110197
|
+
/** The numeric value for numerical filtering. */
|
|
110198
|
+
DoubleValue?: number;
|
|
110199
|
+
/** The string value for text-based filtering. */
|
|
110200
|
+
StringValue?: string;
|
|
110201
|
+
});
|
|
110202
|
+
}
|
|
110203
|
+
|
|
110204
|
+
export declare class OnlineEvaluationConfig_OutputConfig {
|
|
110205
|
+
constructor(props: {
|
|
110206
|
+
CloudWatchConfig?: OnlineEvaluationConfig_CloudWatchOutputConfig;
|
|
110207
|
+
});
|
|
110208
|
+
}
|
|
110209
|
+
|
|
110210
|
+
export declare class OnlineEvaluationConfig_Rule {
|
|
110211
|
+
constructor(props: {
|
|
110212
|
+
SamplingConfig: OnlineEvaluationConfig_SamplingConfig;
|
|
110213
|
+
/** The list of filters that determine which agent traces should be included in the evaluation. */
|
|
110214
|
+
Filters?: OnlineEvaluationConfig_Filter[];
|
|
110215
|
+
SessionConfig?: OnlineEvaluationConfig_SessionConfig;
|
|
110216
|
+
});
|
|
110217
|
+
}
|
|
110218
|
+
|
|
110219
|
+
export declare class OnlineEvaluationConfig_SamplingConfig {
|
|
110220
|
+
constructor(props: {
|
|
110221
|
+
/** The percentage of agent traces to sample for evaluation. */
|
|
110222
|
+
SamplingPercentage: number;
|
|
110223
|
+
});
|
|
110224
|
+
}
|
|
110225
|
+
|
|
110226
|
+
export declare class OnlineEvaluationConfig_SessionConfig {
|
|
110227
|
+
constructor(props: {
|
|
110228
|
+
/** The number of minutes of inactivity after which an agent session is considered complete. */
|
|
110229
|
+
SessionTimeoutMinutes: number;
|
|
110230
|
+
});
|
|
110231
|
+
}
|
|
110232
|
+
|
|
110233
|
+
export declare class OnlineEvaluationConfig_Tag {
|
|
110234
|
+
constructor(props: {
|
|
110235
|
+
Key: string;
|
|
110236
|
+
Value: string;
|
|
110237
|
+
});
|
|
110238
|
+
}
|
|
110239
|
+
|
|
109649
110240
|
export declare class OnlineStoreSecurityConfig {
|
|
109650
110241
|
constructor(props: {
|
|
109651
110242
|
KmsKeyId?: string;
|
|
@@ -111322,6 +111913,12 @@ export declare class OutputColumnNameOverride {
|
|
|
111322
111913
|
});
|
|
111323
111914
|
}
|
|
111324
111915
|
|
|
111916
|
+
export declare class OutputConfig {
|
|
111917
|
+
constructor(props: {
|
|
111918
|
+
CloudWatchConfig?: OnlineEvaluationConfig_CloudWatchOutputConfig;
|
|
111919
|
+
});
|
|
111920
|
+
}
|
|
111921
|
+
|
|
111325
111922
|
export declare class OutputContext {
|
|
111326
111923
|
constructor(props: {
|
|
111327
111924
|
Name: string;
|
|
@@ -115673,6 +116270,31 @@ export declare class PrivateRegistryAccess {
|
|
|
115673
116270
|
});
|
|
115674
116271
|
}
|
|
115675
116272
|
|
|
116273
|
+
export declare class PrivateVirtualInterface_BgpPeer {
|
|
116274
|
+
constructor(props: {
|
|
116275
|
+
/** The address family for the BGP peer. */
|
|
116276
|
+
AddressFamily: string;
|
|
116277
|
+
/** The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. */
|
|
116278
|
+
Asn: string;
|
|
116279
|
+
/** The IP address assigned to the Amazon interface. */
|
|
116280
|
+
AmazonAddress?: string;
|
|
116281
|
+
/** The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximum length of 80 characters. */
|
|
116282
|
+
AuthKey?: string;
|
|
116283
|
+
BgpPeerId?: string;
|
|
116284
|
+
/** The IP address assigned to the customer interface. */
|
|
116285
|
+
CustomerAddress?: string;
|
|
116286
|
+
});
|
|
116287
|
+
}
|
|
116288
|
+
|
|
116289
|
+
export declare class PrivateVirtualInterface_Tag {
|
|
116290
|
+
constructor(props: {
|
|
116291
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
116292
|
+
Key: string;
|
|
116293
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
116294
|
+
Value: string;
|
|
116295
|
+
});
|
|
116296
|
+
}
|
|
116297
|
+
|
|
115676
116298
|
export declare class ProactiveEngagement_EmergencyContact {
|
|
115677
116299
|
constructor(props: {
|
|
115678
116300
|
/** The email address for the contact. */
|
|
@@ -116736,6 +117358,31 @@ export declare class PublicRouterNetworkInterfaceRule {
|
|
|
116736
117358
|
});
|
|
116737
117359
|
}
|
|
116738
117360
|
|
|
117361
|
+
export declare class PublicVirtualInterface_BgpPeer {
|
|
117362
|
+
constructor(props: {
|
|
117363
|
+
/** The address family for the BGP peer. */
|
|
117364
|
+
AddressFamily: string;
|
|
117365
|
+
/** The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. */
|
|
117366
|
+
Asn: string;
|
|
117367
|
+
/** The IP address assigned to the Amazon interface. */
|
|
117368
|
+
AmazonAddress?: string;
|
|
117369
|
+
/** The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximum length of 80 characters. */
|
|
117370
|
+
AuthKey?: string;
|
|
117371
|
+
BgpPeerId?: string;
|
|
117372
|
+
/** The IP address assigned to the customer interface. */
|
|
117373
|
+
CustomerAddress?: string;
|
|
117374
|
+
});
|
|
117375
|
+
}
|
|
117376
|
+
|
|
117377
|
+
export declare class PublicVirtualInterface_Tag {
|
|
117378
|
+
constructor(props: {
|
|
117379
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
117380
|
+
Key: string;
|
|
117381
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
117382
|
+
Value: string;
|
|
117383
|
+
});
|
|
117384
|
+
}
|
|
117385
|
+
|
|
116739
117386
|
export declare class PublishFindingToSnsParams {
|
|
116740
117387
|
constructor(props: {
|
|
116741
117388
|
/** The ARN of the topic to which you want to publish the findings. */
|
|
@@ -127597,6 +128244,13 @@ export declare class RateIncreaseCriteria {
|
|
|
127597
128244
|
});
|
|
127598
128245
|
}
|
|
127599
128246
|
|
|
128247
|
+
export declare class RatingScale {
|
|
128248
|
+
constructor(props: {
|
|
128249
|
+
Categorical?: Evaluator_CategoricalScaleDefinition[];
|
|
128250
|
+
Numerical?: Evaluator_NumericalScaleDefinition[];
|
|
128251
|
+
});
|
|
128252
|
+
}
|
|
128253
|
+
|
|
127600
128254
|
export declare class RbinRule_ResourceTag {
|
|
127601
128255
|
constructor(props: {
|
|
127602
128256
|
/** The tag key of the resource. */
|
|
@@ -127647,6 +128301,15 @@ export declare class RdsConfiguration {
|
|
|
127647
128301
|
});
|
|
127648
128302
|
}
|
|
127649
128303
|
|
|
128304
|
+
export declare class RdsCreateCrossRegionReplicaConfiguration {
|
|
128305
|
+
constructor(props: {
|
|
128306
|
+
DbInstanceArnMap: Record<string, unknown>;
|
|
128307
|
+
CrossAccountRole?: string;
|
|
128308
|
+
ExternalId?: string;
|
|
128309
|
+
TimeoutMinutes?: number;
|
|
128310
|
+
});
|
|
128311
|
+
}
|
|
128312
|
+
|
|
127650
128313
|
export declare class RDSDBClusterParameterGroup_Tag {
|
|
127651
128314
|
constructor(props: {
|
|
127652
128315
|
/** A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"). */
|
|
@@ -127774,6 +128437,15 @@ export declare class RdsParameters {
|
|
|
127774
128437
|
});
|
|
127775
128438
|
}
|
|
127776
128439
|
|
|
128440
|
+
export declare class RdsPromoteReadReplicaConfiguration {
|
|
128441
|
+
constructor(props: {
|
|
128442
|
+
DbInstanceArnMap: Record<string, unknown>;
|
|
128443
|
+
CrossAccountRole?: string;
|
|
128444
|
+
ExternalId?: string;
|
|
128445
|
+
TimeoutMinutes?: number;
|
|
128446
|
+
});
|
|
128447
|
+
}
|
|
128448
|
+
|
|
127777
128449
|
export declare class ReadCacheConfiguration {
|
|
127778
128450
|
constructor(props: {
|
|
127779
128451
|
SizeGiB?: number;
|
|
@@ -135218,6 +135890,13 @@ export declare class SampleValue {
|
|
|
135218
135890
|
});
|
|
135219
135891
|
}
|
|
135220
135892
|
|
|
135893
|
+
export declare class SamplingConfig {
|
|
135894
|
+
constructor(props: {
|
|
135895
|
+
/** The percentage of agent traces to sample for evaluation. */
|
|
135896
|
+
SamplingPercentage: number;
|
|
135897
|
+
});
|
|
135898
|
+
}
|
|
135899
|
+
|
|
135221
135900
|
export declare class SamplingRule_SamplingRule {
|
|
135222
135901
|
constructor(props: {
|
|
135223
135902
|
/** The percentage of matching requests to instrument, after the reservoir is exhausted. */
|
|
@@ -138382,6 +139061,13 @@ export declare class SessionAttribute {
|
|
|
138382
139061
|
});
|
|
138383
139062
|
}
|
|
138384
139063
|
|
|
139064
|
+
export declare class SessionConfig {
|
|
139065
|
+
constructor(props: {
|
|
139066
|
+
/** The number of minutes of inactivity after which an agent session is considered complete. */
|
|
139067
|
+
SessionTimeoutMinutes: number;
|
|
139068
|
+
});
|
|
139069
|
+
}
|
|
139070
|
+
|
|
138385
139071
|
export declare class SessionKeysAbpV10x {
|
|
138386
139072
|
constructor(props: {
|
|
138387
139073
|
AppSKey: string;
|
|
@@ -147154,6 +147840,31 @@ export declare class Transitions {
|
|
|
147154
147840
|
});
|
|
147155
147841
|
}
|
|
147156
147842
|
|
|
147843
|
+
export declare class TransitVirtualInterface_BgpPeer {
|
|
147844
|
+
constructor(props: {
|
|
147845
|
+
/** The address family for the BGP peer. */
|
|
147846
|
+
AddressFamily: string;
|
|
147847
|
+
/** The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. */
|
|
147848
|
+
Asn: string;
|
|
147849
|
+
/** The IP address assigned to the Amazon interface. */
|
|
147850
|
+
AmazonAddress?: string;
|
|
147851
|
+
/** The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximum length of 80 characters. */
|
|
147852
|
+
AuthKey?: string;
|
|
147853
|
+
BgpPeerId?: string;
|
|
147854
|
+
/** The IP address assigned to the customer interface. */
|
|
147855
|
+
CustomerAddress?: string;
|
|
147856
|
+
});
|
|
147857
|
+
}
|
|
147858
|
+
|
|
147859
|
+
export declare class TransitVirtualInterface_Tag {
|
|
147860
|
+
constructor(props: {
|
|
147861
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
147862
|
+
Key: string;
|
|
147863
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
147864
|
+
Value: string;
|
|
147865
|
+
});
|
|
147866
|
+
}
|
|
147867
|
+
|
|
147157
147868
|
export declare class TreatmentObject {
|
|
147158
147869
|
constructor(props: {
|
|
147159
147870
|
Feature: string;
|
|
@@ -155225,6 +155936,8 @@ export type ARCRegionSwitchPlan_ExecutionBlockType =
|
|
|
155225
155936
|
| "EKSResourceScaling"
|
|
155226
155937
|
| "ManualApproval"
|
|
155227
155938
|
| "Parallel"
|
|
155939
|
+
| "RdsCreateCrossRegionReplica"
|
|
155940
|
+
| "RdsPromoteReadReplica"
|
|
155228
155941
|
| "Route53HealthCheck";
|
|
155229
155942
|
|
|
155230
155943
|
export type ARCRegionSwitchPlan_GlobalAuroraDefaultBehavior = "failover" | "switchoverOnly";
|
|
@@ -155235,11 +155948,15 @@ export type ARCRegionSwitchPlan_LambdaUngracefulBehavior = "skip";
|
|
|
155235
155948
|
|
|
155236
155949
|
export type ARCRegionSwitchPlan_RecoveryApproach = "activeActive" | "activePassive";
|
|
155237
155950
|
|
|
155238
|
-
export type ARCRegionSwitchPlan_RegionToRunIn =
|
|
155951
|
+
export type ARCRegionSwitchPlan_RegionToRunIn =
|
|
155952
|
+
| "activatingRegion"
|
|
155953
|
+
| "activeRegion"
|
|
155954
|
+
| "deactivatingRegion"
|
|
155955
|
+
| "inactiveRegion";
|
|
155239
155956
|
|
|
155240
155957
|
export type ARCRegionSwitchPlan_RoutingControlStateChange = "Off" | "On";
|
|
155241
155958
|
|
|
155242
|
-
export type ARCRegionSwitchPlan_WorkflowTargetAction = "activate" | "deactivate";
|
|
155959
|
+
export type ARCRegionSwitchPlan_WorkflowTargetAction = "activate" | "deactivate" | "postRecovery";
|
|
155243
155960
|
|
|
155244
155961
|
export type Assessment_AssessmentReportDestinationType = "S3";
|
|
155245
155962
|
|
|
@@ -156281,6 +156998,8 @@ export type BrowserCustom_BrowserStatus =
|
|
|
156281
156998
|
| "DELETING"
|
|
156282
156999
|
| "READY";
|
|
156283
157000
|
|
|
157001
|
+
export type BrowserProfile_BrowserProfileStatus = "DELETED" | "DELETING" | "READY" | "SAVING";
|
|
157002
|
+
|
|
156284
157003
|
export type BrowserSettings_Category =
|
|
156285
157004
|
| "Chat"
|
|
156286
157005
|
| "CriminalActivity"
|
|
@@ -157268,6 +157987,16 @@ export type EnvironmentAccountConnection_Status = "CONNECTED" | "PENDING" | "REJ
|
|
|
157268
157987
|
|
|
157269
157988
|
export type EnvironmentTemplate_Provisioning = "CUSTOMER_MANAGED";
|
|
157270
157989
|
|
|
157990
|
+
export type Evaluator_EvaluatorLevel = "SESSION" | "TOOL_CALL" | "TRACE";
|
|
157991
|
+
|
|
157992
|
+
export type Evaluator_EvaluatorStatus =
|
|
157993
|
+
| "ACTIVE"
|
|
157994
|
+
| "CREATE_FAILED"
|
|
157995
|
+
| "CREATING"
|
|
157996
|
+
| "DELETING"
|
|
157997
|
+
| "UPDATE_FAILED"
|
|
157998
|
+
| "UPDATING";
|
|
157999
|
+
|
|
157271
158000
|
export type EventBridgeRuleTemplate_EventBridgeRuleTemplateEventType =
|
|
157272
158001
|
| "MEDIACONNECT_ALERT"
|
|
157273
158002
|
| "MEDIACONNECT_FLOW_STATUS_CHANGE"
|
|
@@ -158465,6 +159194,16 @@ export type OmicsWorkflow_WorkflowStatus =
|
|
|
158465
159194
|
|
|
158466
159195
|
export type OmicsWorkflow_WorkflowType = "PRIVATE";
|
|
158467
159196
|
|
|
159197
|
+
export type OnlineEvaluationConfig_ExecutionStatus = "DISABLED" | "ENABLED";
|
|
159198
|
+
|
|
159199
|
+
export type OnlineEvaluationConfig_OnlineEvaluationConfigStatus =
|
|
159200
|
+
| "ACTIVE"
|
|
159201
|
+
| "CREATE_FAILED"
|
|
159202
|
+
| "CREATING"
|
|
159203
|
+
| "DELETING"
|
|
159204
|
+
| "UPDATE_FAILED"
|
|
159205
|
+
| "UPDATING";
|
|
159206
|
+
|
|
158468
159207
|
export type OpenSearchServerlessAccessPolicy_AccessPolicyType = "data";
|
|
158469
159208
|
|
|
158470
159209
|
export type OpenSearchServerlessCollection_CollectionType =
|