@intentius/chant-lexicon-aws 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +339 -23
- package/dist/types/index.d.ts +592 -43
- package/package.json +1 -1
- package/src/generated/index.d.ts +592 -43
- package/src/generated/index.ts +47 -4
- package/src/generated/lexicon-aws.json +339 -23
package/src/generated/index.d.ts
CHANGED
|
@@ -366,11 +366,11 @@ export declare class ACMPCAPermission {
|
|
|
366
366
|
export declare class ActionConnector {
|
|
367
367
|
constructor(props: {
|
|
368
368
|
ActionConnectorId: string;
|
|
369
|
+
AuthenticationConfig: ActionConnector_AuthConfig;
|
|
369
370
|
AwsAccountId: string;
|
|
370
371
|
Name: string;
|
|
371
372
|
Type: ActionConnector_ActionConnectorType;
|
|
372
373
|
Arn?: string;
|
|
373
|
-
AuthenticationConfig?: ActionConnector_AuthConfig;
|
|
374
374
|
CreatedTime?: string;
|
|
375
375
|
Description?: string;
|
|
376
376
|
EnabledActions?: string[];
|
|
@@ -7781,9 +7781,13 @@ export declare class DaemonTaskDefinition {
|
|
|
7781
7781
|
ExecutionRoleArn?: string;
|
|
7782
7782
|
/** The name of a family that this daemon task definition is registered to. */
|
|
7783
7783
|
Family?: string;
|
|
7784
|
+
/** The IPC namespace mode for the daemon. The valid values are ``none`` and ``shared``. The default is ``none``.
|
|
7785
|
+
If ``none`` is specified or no value is provided, the daemon runs with its own IPC namespace, isolated from other tasks. If ``shared`` is specified, the daemon joins the host IPC namespace, making it accessible to non-daemon tasks that use ``ipcMode: "host"`` or other daemons that use ``ipcMode: "shared"``. */
|
|
7784
7786
|
IpcMode?: string;
|
|
7785
7787
|
/** The amount of memory (in MiB) used by the daemon task. */
|
|
7786
7788
|
Memory?: string;
|
|
7789
|
+
/** The PID namespace mode for the daemon. The valid values are ``none`` and ``shared``. The default is ``none``.
|
|
7790
|
+
If ``none`` is specified or no value is provided, the daemon runs with its own PID namespace, isolated from other tasks. If ``shared`` is specified, the daemon joins the host PID namespace, making it accessible to non-daemon tasks that use ``pidMode: "host"`` or other daemons that use ``pidMode: "shared"``. */
|
|
7787
7791
|
PidMode?: string;
|
|
7788
7792
|
Tags?: DaemonTaskDefinition_Tag[];
|
|
7789
7793
|
/** The short name or full Amazon Resource Name (ARN) of the IAM role that grants containers in the daemon task permission to call Amazon Web Services APIs on your behalf. */
|
|
@@ -10535,6 +10539,19 @@ export declare class DHCPOptions {
|
|
|
10535
10539
|
readonly DhcpOptionsId: string;
|
|
10536
10540
|
}
|
|
10537
10541
|
|
|
10542
|
+
export declare class Dictionary {
|
|
10543
|
+
constructor(props: {
|
|
10544
|
+
Language: Dictionary_DictionaryLanguage;
|
|
10545
|
+
Name: string;
|
|
10546
|
+
Arn?: string;
|
|
10547
|
+
Entries?: string;
|
|
10548
|
+
Id?: string;
|
|
10549
|
+
Tags?: Record<string, unknown>;
|
|
10550
|
+
}, attributes?: CFResourceAttributes);
|
|
10551
|
+
readonly Arn: string;
|
|
10552
|
+
readonly Id: string;
|
|
10553
|
+
}
|
|
10554
|
+
|
|
10538
10555
|
export declare class Dimension {
|
|
10539
10556
|
constructor(props: {
|
|
10540
10557
|
/** Specifies the value or list of values for the dimension. */
|
|
@@ -12212,33 +12229,50 @@ export declare class ElasticsearchDomain {
|
|
|
12212
12229
|
|
|
12213
12230
|
export declare class ElbLoadBalancer {
|
|
12214
12231
|
constructor(props: {
|
|
12232
|
+
/** The Listeners for the load balancer. You can specify at most one listener per port. */
|
|
12215
12233
|
Listeners: ElbLoadBalancer_Listeners[];
|
|
12234
|
+
/** Information about where and how access logs are stored for the load balancer. */
|
|
12216
12235
|
AccessLoggingPolicy?: ElbLoadBalancer_AccessLoggingPolicy;
|
|
12236
|
+
/** Information about a policy for application-controlled session stickiness. */
|
|
12217
12237
|
AppCookieStickinessPolicy?: ElbLoadBalancer_AppCookieStickinessPolicy[];
|
|
12238
|
+
/** The Availability Zones for a load balancer in a default VPC. For a load balancer in a nondefault VPC, specify Subnets instead. */
|
|
12218
12239
|
AvailabilityZones?: string[];
|
|
12240
|
+
/** The name of the Route 53 hosted zone that is associated with the load balancer. Internal-facing load balancers. */
|
|
12219
12241
|
CanonicalHostedZoneName?: string;
|
|
12242
|
+
/** The ID of the Route 53 hosted zone name that is associated with the load balancer. */
|
|
12220
12243
|
CanonicalHostedZoneNameID?: string;
|
|
12244
|
+
/** If enabled, the load balancer allows existing requests to complete before the load balancer shifts traffic away from a deregistered or unhealthy instance. */
|
|
12221
12245
|
ConnectionDrainingPolicy?: ElbLoadBalancer_ConnectionDrainingPolicy;
|
|
12246
|
+
/** If enabled, the load balancer allows the connections to remain idle (no data is sent over the connection) for the specified duration. */
|
|
12222
12247
|
ConnectionSettings?: ElbLoadBalancer_ConnectionSettings;
|
|
12248
|
+
/** If enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones. */
|
|
12223
12249
|
CrossZone?: boolean;
|
|
12250
|
+
/** The DNS name for the load balancer */
|
|
12224
12251
|
DNSName?: string;
|
|
12252
|
+
/** The health check settings to use when evaluating the health of your EC2 instances. */
|
|
12225
12253
|
HealthCheck?: ElbLoadBalancer_HealthCheck;
|
|
12226
|
-
|
|
12254
|
+
/** The IDs of the instances for the load balancer. */
|
|
12227
12255
|
Instances?: string[];
|
|
12256
|
+
/** Information about a policy for duration-based session stickiness. */
|
|
12228
12257
|
LBCookieStickinessPolicy?: ElbLoadBalancer_LBCookieStickinessPolicy[];
|
|
12258
|
+
/** The name of the load balancer. This name must be unique within your set of load balancers for the region. */
|
|
12229
12259
|
LoadBalancerName?: string;
|
|
12260
|
+
/** The policies defined for your Classic Load Balancer. Specify only back-end server policies. */
|
|
12230
12261
|
Policies?: ElbLoadBalancer_Policies[];
|
|
12262
|
+
/** The type of load balancer. Valid only for load balancers in a VPC. */
|
|
12231
12263
|
Scheme?: string;
|
|
12264
|
+
/** The security groups for the load balancer. Valid only for load balancers in a VPC. */
|
|
12232
12265
|
SecurityGroups?: string[];
|
|
12233
|
-
|
|
12234
|
-
|
|
12266
|
+
SourceSecurityGroup?: ElbLoadBalancer_SourceSecurityGroup;
|
|
12267
|
+
/** The IDs of the subnets for the load balancer. You can specify at most one subnet per Availability Zone. */
|
|
12235
12268
|
Subnets?: string[];
|
|
12269
|
+
/** The tags associated with a load balancer. */
|
|
12236
12270
|
Tags?: ElbLoadBalancer_Tag[];
|
|
12237
12271
|
}, attributes?: CFResourceAttributes);
|
|
12238
12272
|
readonly CanonicalHostedZoneName: string;
|
|
12239
12273
|
readonly CanonicalHostedZoneNameID: string;
|
|
12240
12274
|
readonly DNSName: string;
|
|
12241
|
-
readonly
|
|
12275
|
+
readonly SourceSecurityGroup: ElbLoadBalancer_SourceSecurityGroup;
|
|
12242
12276
|
readonly SourceSecurityGroup_GroupName: string;
|
|
12243
12277
|
readonly SourceSecurityGroup_OwnerAlias: string;
|
|
12244
12278
|
}
|
|
@@ -14211,6 +14245,8 @@ export declare class FlowLog {
|
|
|
14211
14245
|
LogGroupName?: string;
|
|
14212
14246
|
/** The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record. You can specify 60 seconds (1 minute) or 600 seconds (10 minutes). */
|
|
14213
14247
|
MaxAggregationInterval?: number;
|
|
14248
|
+
/** The resource types and associated tags for EC2 resources associated with the EC2 Tags feature for log enrichment. */
|
|
14249
|
+
TagFieldSpecifications?: FlowLog_TagFieldSpecification[];
|
|
14214
14250
|
/** The tags to apply to the flow logs. */
|
|
14215
14251
|
Tags?: FlowLog_Tag[];
|
|
14216
14252
|
/** The type of traffic to log. You can log traffic that the resource accepts or rejects, or all traffic. */
|
|
@@ -20418,6 +20454,44 @@ export declare class LocationSMB {
|
|
|
20418
20454
|
readonly ManagedSecretConfig: LocationSMB_ManagedSecretConfig;
|
|
20419
20455
|
}
|
|
20420
20456
|
|
|
20457
|
+
export declare class LogAlarm {
|
|
20458
|
+
constructor(props: {
|
|
20459
|
+
/** The arithmetic operation to use when comparing the specified threshold and the query results. Valid values are GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, and LessThanOrEqualToThreshold. */
|
|
20460
|
+
ComparisonOperator: string;
|
|
20461
|
+
/** The number of query results that must be breaching to trigger the alarm. */
|
|
20462
|
+
QueryResultsToAlarm: number;
|
|
20463
|
+
/** The number of query results over which data is compared to the specified threshold. */
|
|
20464
|
+
QueryResultsToEvaluate: number;
|
|
20465
|
+
/** The scheduled query configuration for the log alarm. */
|
|
20466
|
+
ScheduledQueryConfiguration: LogAlarm_ScheduledQueryConfiguration;
|
|
20467
|
+
/** The value to compare against the results of the scheduled query evaluation. */
|
|
20468
|
+
Threshold: number;
|
|
20469
|
+
/** The number of log lines to include in alarm notifications. Valid values are 0 to 50. */
|
|
20470
|
+
ActionLogLineCount?: number;
|
|
20471
|
+
/** The ARN of the IAM role that grants CloudWatch permissions to fetch log lines for alarm notifications. Required when ActionLogLineCount is greater than 0. */
|
|
20472
|
+
ActionLogLineRoleArn?: string;
|
|
20473
|
+
/** Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE. */
|
|
20474
|
+
ActionsEnabled?: boolean;
|
|
20475
|
+
/** The list of actions to execute when this alarm transitions into an ALARM state from any other state. */
|
|
20476
|
+
AlarmActions?: string[];
|
|
20477
|
+
/** The description of the log alarm. */
|
|
20478
|
+
AlarmDescription?: string;
|
|
20479
|
+
/** The name of the log alarm. */
|
|
20480
|
+
AlarmName?: string;
|
|
20481
|
+
/** The ARN of the log alarm. */
|
|
20482
|
+
Arn?: string;
|
|
20483
|
+
/** The actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. */
|
|
20484
|
+
InsufficientDataActions?: string[];
|
|
20485
|
+
/** The actions to execute when this alarm transitions to the OK state from any other state. */
|
|
20486
|
+
OKActions?: string[];
|
|
20487
|
+
/** A list of key-value pairs to associate with the log alarm. */
|
|
20488
|
+
Tags?: LogAlarm_Tag[];
|
|
20489
|
+
/** Sets how this alarm is to handle missing data points. Valid values are breaching, notBreaching, ignore, and missing. */
|
|
20490
|
+
TreatMissingData?: string;
|
|
20491
|
+
}, attributes?: CFResourceAttributes);
|
|
20492
|
+
readonly Arn: string;
|
|
20493
|
+
}
|
|
20494
|
+
|
|
20421
20495
|
export declare class LogAnomalyDetectionIntegration {
|
|
20422
20496
|
constructor(props: {
|
|
20423
20497
|
AccountId?: string;
|
|
@@ -22992,6 +23066,25 @@ export declare class NeptuneEventSubscription {
|
|
|
22992
23066
|
}, attributes?: CFResourceAttributes);
|
|
22993
23067
|
}
|
|
22994
23068
|
|
|
23069
|
+
export declare class NeptuneGlobalCluster {
|
|
23070
|
+
constructor(props: {
|
|
23071
|
+
/** Whether deletion protection is enabled. */
|
|
23072
|
+
DeletionProtection?: boolean;
|
|
23073
|
+
/** The name of the database engine. */
|
|
23074
|
+
Engine?: "neptune";
|
|
23075
|
+
/** The version number of the database engine. */
|
|
23076
|
+
EngineVersion?: string;
|
|
23077
|
+
/** The cluster identifier of the global database cluster. */
|
|
23078
|
+
GlobalClusterIdentifier?: string;
|
|
23079
|
+
/** The Amazon Resource Name (ARN) of an existing Neptune DB cluster to use as the primary cluster of the new global database. */
|
|
23080
|
+
SourceDBClusterIdentifier?: string;
|
|
23081
|
+
/** Whether the global database cluster is storage encrypted. */
|
|
23082
|
+
StorageEncrypted?: boolean;
|
|
23083
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
23084
|
+
Tags?: NeptuneGlobalCluster_Tag[];
|
|
23085
|
+
}, attributes?: CFResourceAttributes);
|
|
23086
|
+
}
|
|
23087
|
+
|
|
22995
23088
|
export declare class NeptuneGraphGraph {
|
|
22996
23089
|
constructor(props: {
|
|
22997
23090
|
/** Memory for the Graph. */
|
|
@@ -25382,6 +25475,8 @@ export declare class PlaybackConfiguration {
|
|
|
25382
25475
|
ConfigurationAliases?: any;
|
|
25383
25476
|
/** The configuration for DASH content. */
|
|
25384
25477
|
DashConfiguration?: PlaybackConfiguration_DashConfiguration;
|
|
25478
|
+
/** A map of event names to function identifiers for custom processing during session lifecycle events. */
|
|
25479
|
+
FunctionMapping?: Record<string, unknown>;
|
|
25385
25480
|
/** The configuration for HLS content. */
|
|
25386
25481
|
HlsConfiguration?: PlaybackConfiguration_HlsConfiguration;
|
|
25387
25482
|
/** The setting that controls whether players can use stitched or guided ad insertion. The default, STITCHED_ONLY, forces all player sessions to use stitched (server-side) ad insertion. Choosing PLAYER_SELECT allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched. */
|
|
@@ -30245,6 +30340,7 @@ export declare class SageMakerCluster {
|
|
|
30245
30340
|
NodeRecovery?: "Automatic" | "None";
|
|
30246
30341
|
Orchestrator?: Record<string, unknown>;
|
|
30247
30342
|
RestrictedInstanceGroups?: any;
|
|
30343
|
+
RestrictedInstanceGroupsConfig?: SageMakerCluster_RestrictedInstanceGroupsConfig;
|
|
30248
30344
|
/** Custom tags for managing the SageMaker HyperPod cluster as an AWS resource. You can add tags to your cluster in the same way you add them in other AWS services that support tagging. */
|
|
30249
30345
|
Tags?: SageMakerCluster_Tag[];
|
|
30250
30346
|
TieredStorageConfig?: SageMakerCluster_TieredStorageConfig;
|
|
@@ -32398,6 +32494,8 @@ export declare class SSMAssociation {
|
|
|
32398
32494
|
/** The name of the SSM document. */
|
|
32399
32495
|
Name: string;
|
|
32400
32496
|
ApplyOnlyAtCronInterval?: boolean;
|
|
32497
|
+
/** A role used by association to take actions on your behalf. */
|
|
32498
|
+
AssociationDispatchAssumeRole?: string;
|
|
32401
32499
|
/** Unique identifier of the association. */
|
|
32402
32500
|
AssociationId?: string;
|
|
32403
32501
|
/** The name of the association. */
|
|
@@ -32418,6 +32516,8 @@ export declare class SSMAssociation {
|
|
|
32418
32516
|
ScheduleExpression?: string;
|
|
32419
32517
|
ScheduleOffset?: number;
|
|
32420
32518
|
SyncCompliance?: "AUTO" | "MANUAL";
|
|
32519
|
+
/** A key-value pair to associate with a resource. */
|
|
32520
|
+
Tags?: SSMAssociation_Tag[];
|
|
32421
32521
|
/** The targets that the SSM document sends commands to. */
|
|
32422
32522
|
Targets?: SSMAssociation_Target[];
|
|
32423
32523
|
WaitForSuccessTimeoutSeconds?: number;
|
|
@@ -37903,9 +38003,15 @@ export declare class AccessLog {
|
|
|
37903
38003
|
|
|
37904
38004
|
export declare class AccessLoggingPolicy {
|
|
37905
38005
|
constructor(props: {
|
|
38006
|
+
/** Specifies whether access logs are enabled for the load balancer. */
|
|
37906
38007
|
Enabled: boolean;
|
|
38008
|
+
/** The name of the Amazon S3 bucket where the access logs are stored. */
|
|
37907
38009
|
S3BucketName: string;
|
|
38010
|
+
/** The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.
|
|
38011
|
+
|
|
38012
|
+
Default: 60 minutes */
|
|
37908
38013
|
EmitInterval?: number;
|
|
38014
|
+
/** The logical hierarchy you created for your Amazon S3 bucket, for example `my-bucket-prefix/prod`. If the prefix is not provided, the log is placed at the root level of the bucket. */
|
|
37909
38015
|
S3BucketPrefix?: string;
|
|
37910
38016
|
});
|
|
37911
38017
|
}
|
|
@@ -46199,7 +46305,9 @@ export declare class AppConfigResourceObject {
|
|
|
46199
46305
|
|
|
46200
46306
|
export declare class AppCookieStickinessPolicy {
|
|
46201
46307
|
constructor(props: {
|
|
46308
|
+
/** The name of the application cookie used for stickiness. */
|
|
46202
46309
|
CookieName: string;
|
|
46310
|
+
/** The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer. */
|
|
46203
46311
|
PolicyName: string;
|
|
46204
46312
|
});
|
|
46205
46313
|
}
|
|
@@ -49235,6 +49343,13 @@ export declare class Asg {
|
|
|
49235
49343
|
});
|
|
49236
49344
|
}
|
|
49237
49345
|
|
|
49346
|
+
export declare class AspectRatio {
|
|
49347
|
+
constructor(props: {
|
|
49348
|
+
Height: number;
|
|
49349
|
+
Width: number;
|
|
49350
|
+
});
|
|
49351
|
+
}
|
|
49352
|
+
|
|
49238
49353
|
export declare class AssertionAttributes {
|
|
49239
49354
|
constructor(props: {
|
|
49240
49355
|
/** Name of the attribute within the SAML assert to use as the users email in Grafana. */
|
|
@@ -58499,6 +58614,7 @@ export declare class CentralizationRuleDestination {
|
|
|
58499
58614
|
Region: string;
|
|
58500
58615
|
Account?: string;
|
|
58501
58616
|
DestinationLogsConfiguration?: OrganizationCentralizationRule_DestinationLogsConfiguration;
|
|
58617
|
+
DestinationMetricsConfiguration?: OrganizationCentralizationRule_DestinationMetricsConfiguration;
|
|
58502
58618
|
});
|
|
58503
58619
|
}
|
|
58504
58620
|
|
|
@@ -58507,6 +58623,7 @@ export declare class CentralizationRuleSource {
|
|
|
58507
58623
|
Regions: any;
|
|
58508
58624
|
Scope?: string;
|
|
58509
58625
|
SourceLogsConfiguration?: OrganizationCentralizationRule_SourceLogsConfiguration;
|
|
58626
|
+
SourceMetricsConfiguration?: OrganizationCentralizationRule_SourceMetricsConfiguration;
|
|
58510
58627
|
});
|
|
58511
58628
|
}
|
|
58512
58629
|
|
|
@@ -60756,7 +60873,6 @@ export declare class ClusterParameterGroup_Tag {
|
|
|
60756
60873
|
|
|
60757
60874
|
export declare class ClusterRestrictedInstanceGroup {
|
|
60758
60875
|
constructor(props: {
|
|
60759
|
-
EnvironmentConfig: SageMakerCluster_EnvironmentConfig;
|
|
60760
60876
|
ExecutionRole: string;
|
|
60761
60877
|
/** The number of instances you specified to add to the restricted instance group of a SageMaker HyperPod cluster. */
|
|
60762
60878
|
InstanceCount: number;
|
|
@@ -60764,6 +60880,7 @@ export declare class ClusterRestrictedInstanceGroup {
|
|
|
60764
60880
|
InstanceType: string;
|
|
60765
60881
|
/** The number of instances that are currently in the restricted instance group of a SageMaker HyperPod cluster. */
|
|
60766
60882
|
CurrentCount?: number;
|
|
60883
|
+
EnvironmentConfig?: SageMakerCluster_EnvironmentConfig;
|
|
60767
60884
|
InstanceStorageConfigs?: any;
|
|
60768
60885
|
OnStartDeepHealthChecks?: any;
|
|
60769
60886
|
OverrideVpcConfig?: SageMakerCluster_VpcConfig;
|
|
@@ -64461,7 +64578,9 @@ export declare class ConnectionAliasAssociation {
|
|
|
64461
64578
|
|
|
64462
64579
|
export declare class ConnectionDrainingPolicy {
|
|
64463
64580
|
constructor(props: {
|
|
64581
|
+
/** Specifies whether connection draining is enabled for the load balancer. */
|
|
64464
64582
|
Enabled: boolean;
|
|
64583
|
+
/** The maximum time, in seconds, to keep the existing connections open before deregistering the instances. */
|
|
64465
64584
|
Timeout?: number;
|
|
64466
64585
|
});
|
|
64467
64586
|
}
|
|
@@ -64596,6 +64715,7 @@ export declare class ConnectionPortRange {
|
|
|
64596
64715
|
|
|
64597
64716
|
export declare class ConnectionSettings {
|
|
64598
64717
|
constructor(props: {
|
|
64718
|
+
/** The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer. */
|
|
64599
64719
|
IdleTimeout: number;
|
|
64600
64720
|
});
|
|
64601
64721
|
}
|
|
@@ -75419,6 +75539,12 @@ export declare class DestinationLogsConfiguration {
|
|
|
75419
75539
|
});
|
|
75420
75540
|
}
|
|
75421
75541
|
|
|
75542
|
+
export declare class DestinationMetricsConfiguration {
|
|
75543
|
+
constructor(props: {
|
|
75544
|
+
BackupConfiguration?: OrganizationCentralizationRule_MetricsBackupConfiguration;
|
|
75545
|
+
});
|
|
75546
|
+
}
|
|
75547
|
+
|
|
75422
75548
|
export declare class DestinationPolicy {
|
|
75423
75549
|
constructor(props: {
|
|
75424
75550
|
/** The name of the delivery destination to assign this policy to */
|
|
@@ -80309,13 +80435,6 @@ export declare class EFSAccessPoint_RootDirectory {
|
|
|
80309
80435
|
});
|
|
80310
80436
|
}
|
|
80311
80437
|
|
|
80312
|
-
export declare class EfsAccessPointConfiguration {
|
|
80313
|
-
constructor(props: {
|
|
80314
|
-
AccessPointArn: string;
|
|
80315
|
-
MountPath: string;
|
|
80316
|
-
});
|
|
80317
|
-
}
|
|
80318
|
-
|
|
80319
80438
|
export declare class EFSAuthorizationConfig {
|
|
80320
80439
|
constructor(props: {
|
|
80321
80440
|
AccessPointId?: string;
|
|
@@ -81207,74 +81326,129 @@ export declare class ELBInfo {
|
|
|
81207
81326
|
|
|
81208
81327
|
export declare class ElbLoadBalancer_AccessLoggingPolicy {
|
|
81209
81328
|
constructor(props: {
|
|
81329
|
+
/** Specifies whether access logs are enabled for the load balancer. */
|
|
81210
81330
|
Enabled: boolean;
|
|
81331
|
+
/** The name of the Amazon S3 bucket where the access logs are stored. */
|
|
81211
81332
|
S3BucketName: string;
|
|
81333
|
+
/** The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.
|
|
81334
|
+
|
|
81335
|
+
Default: 60 minutes */
|
|
81212
81336
|
EmitInterval?: number;
|
|
81337
|
+
/** The logical hierarchy you created for your Amazon S3 bucket, for example `my-bucket-prefix/prod`. If the prefix is not provided, the log is placed at the root level of the bucket. */
|
|
81213
81338
|
S3BucketPrefix?: string;
|
|
81214
81339
|
});
|
|
81215
81340
|
}
|
|
81216
81341
|
|
|
81217
81342
|
export declare class ElbLoadBalancer_AppCookieStickinessPolicy {
|
|
81218
81343
|
constructor(props: {
|
|
81344
|
+
/** The name of the application cookie used for stickiness. */
|
|
81219
81345
|
CookieName: string;
|
|
81346
|
+
/** The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer. */
|
|
81220
81347
|
PolicyName: string;
|
|
81221
81348
|
});
|
|
81222
81349
|
}
|
|
81223
81350
|
|
|
81224
81351
|
export declare class ElbLoadBalancer_ConnectionDrainingPolicy {
|
|
81225
81352
|
constructor(props: {
|
|
81353
|
+
/** Specifies whether connection draining is enabled for the load balancer. */
|
|
81226
81354
|
Enabled: boolean;
|
|
81355
|
+
/** The maximum time, in seconds, to keep the existing connections open before deregistering the instances. */
|
|
81227
81356
|
Timeout?: number;
|
|
81228
81357
|
});
|
|
81229
81358
|
}
|
|
81230
81359
|
|
|
81231
81360
|
export declare class ElbLoadBalancer_ConnectionSettings {
|
|
81232
81361
|
constructor(props: {
|
|
81362
|
+
/** The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer. */
|
|
81233
81363
|
IdleTimeout: number;
|
|
81234
81364
|
});
|
|
81235
81365
|
}
|
|
81236
81366
|
|
|
81237
81367
|
export declare class ElbLoadBalancer_HealthCheck {
|
|
81238
81368
|
constructor(props: {
|
|
81369
|
+
/** The number of consecutive health checks successes required before moving the instance to the `Healthy` state. */
|
|
81239
81370
|
HealthyThreshold: string;
|
|
81371
|
+
/** The approximate interval, in seconds, between health checks of an individual instance. */
|
|
81240
81372
|
Interval: string;
|
|
81373
|
+
/** The instance being checked. */
|
|
81241
81374
|
Target: string;
|
|
81375
|
+
/** The amount of time, in seconds, during which no response means a failed health check.
|
|
81376
|
+
|
|
81377
|
+
This value must be less than the `Interval` value. */
|
|
81242
81378
|
Timeout: string;
|
|
81379
|
+
/** The number of consecutive health check failures required before moving the instance to the `Unhealthy` state. */
|
|
81243
81380
|
UnhealthyThreshold: string;
|
|
81244
81381
|
});
|
|
81245
81382
|
}
|
|
81246
81383
|
|
|
81247
81384
|
export declare class ElbLoadBalancer_LBCookieStickinessPolicy {
|
|
81248
81385
|
constructor(props: {
|
|
81386
|
+
/** The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session. */
|
|
81249
81387
|
CookieExpirationPeriod?: string;
|
|
81388
|
+
/** The name of the policy. This name must be unique within the set of policies for this load balancer. */
|
|
81250
81389
|
PolicyName?: string;
|
|
81251
81390
|
});
|
|
81252
81391
|
}
|
|
81253
81392
|
|
|
81254
81393
|
export declare class ElbLoadBalancer_Listeners {
|
|
81255
81394
|
constructor(props: {
|
|
81395
|
+
/** The port on which the instance is listening. */
|
|
81256
81396
|
InstancePort: string;
|
|
81397
|
+
/** The port on which the load balancer is listening. On EC2-VPC, you can specify any port from the range 1-65535. On EC2-Classic, you can specify any port from the following list: 25, 80, 443, 465, 587, 1024-65535. */
|
|
81257
81398
|
LoadBalancerPort: string;
|
|
81399
|
+
/** The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL. */
|
|
81258
81400
|
Protocol: "HTTP" | "HTTPS" | "SSL" | "TCP";
|
|
81401
|
+
/** The protocol to use for routing traffic to instances: HTTP, HTTPS, TCP, or SSL.
|
|
81402
|
+
|
|
81403
|
+
If the front-end protocol is TCP or SSL, the back-end protocol must be TCP or SSL. If the front-end protocol is HTTP or HTTPS, the back-end protocol must be HTTP or HTTPS.
|
|
81404
|
+
|
|
81405
|
+
If there is another listener with the same `InstancePort` whose `InstanceProtocol` is secure, (HTTPS or SSL), the listener's `InstanceProtocol` must also be secure.
|
|
81406
|
+
|
|
81407
|
+
If there is another listener with the same `InstancePort` whose `InstanceProtocol` is HTTP or TCP, the listener's `InstanceProtocol` must be HTTP or TCP. */
|
|
81259
81408
|
InstanceProtocol?: string;
|
|
81409
|
+
/** The names of the policies to associate with the listener. */
|
|
81260
81410
|
PolicyNames?: string[];
|
|
81411
|
+
/** The Amazon Resource Name (ARN) of the server certificate. */
|
|
81261
81412
|
SSLCertificateId?: string;
|
|
81262
81413
|
});
|
|
81263
81414
|
}
|
|
81264
81415
|
|
|
81265
81416
|
export declare class ElbLoadBalancer_Policies {
|
|
81266
81417
|
constructor(props: {
|
|
81267
|
-
|
|
81418
|
+
/** The policy attributes. */
|
|
81419
|
+
Attributes: ElbLoadBalancer_PolicyItem[];
|
|
81420
|
+
/** The name of the policy. */
|
|
81268
81421
|
PolicyName: string;
|
|
81422
|
+
/** The name of the policy type. */
|
|
81269
81423
|
PolicyType: string;
|
|
81424
|
+
/** The instance ports for the policy. Required only for some policy types. */
|
|
81270
81425
|
InstancePorts?: string[];
|
|
81426
|
+
/** The load balancer ports for the policy. Required only for some policy types. */
|
|
81271
81427
|
LoadBalancerPorts?: string[];
|
|
81272
81428
|
});
|
|
81273
81429
|
}
|
|
81274
81430
|
|
|
81431
|
+
export declare class ElbLoadBalancer_PolicyItem {
|
|
81432
|
+
constructor(props: {
|
|
81433
|
+
Name?: string;
|
|
81434
|
+
Value?: string;
|
|
81435
|
+
});
|
|
81436
|
+
}
|
|
81437
|
+
|
|
81438
|
+
export declare class ElbLoadBalancer_SourceSecurityGroup {
|
|
81439
|
+
constructor(props: {
|
|
81440
|
+
/** The name of the security group that you can use as part of your inbound rules for your load balancer's back-end instances. */
|
|
81441
|
+
GroupName?: string;
|
|
81442
|
+
/** The owner of the source security group. */
|
|
81443
|
+
OwnerAlias?: string;
|
|
81444
|
+
});
|
|
81445
|
+
}
|
|
81446
|
+
|
|
81275
81447
|
export declare class ElbLoadBalancer_Tag {
|
|
81276
81448
|
constructor(props: {
|
|
81449
|
+
/** The key name of the tag. You can specify a value that's 1 to 128 Unicode characters in length and can't be prefixed with `aws:`. You can use any of the following characters: the set of Unicode letters, digits, whitespace, `_`, `.`, `/`, `=`, `+`, and `-`. */
|
|
81277
81450
|
Key: string;
|
|
81451
|
+
/** The value for the tag. You can specify a value that's 1 to 256 characters in length. */
|
|
81278
81452
|
Value: string;
|
|
81279
81453
|
});
|
|
81280
81454
|
}
|
|
@@ -86198,6 +86372,13 @@ export declare class FederationParameters {
|
|
|
86198
86372
|
});
|
|
86199
86373
|
}
|
|
86200
86374
|
|
|
86375
|
+
export declare class Feed_AspectRatio {
|
|
86376
|
+
constructor(props: {
|
|
86377
|
+
Height: number;
|
|
86378
|
+
Width: number;
|
|
86379
|
+
});
|
|
86380
|
+
}
|
|
86381
|
+
|
|
86201
86382
|
export declare class Feed_ClippingConfig {
|
|
86202
86383
|
constructor(props: {
|
|
86203
86384
|
CallbackMetadata?: string;
|
|
@@ -86213,6 +86394,15 @@ export declare class Feed_GetOutput {
|
|
|
86213
86394
|
});
|
|
86214
86395
|
}
|
|
86215
86396
|
|
|
86397
|
+
export declare class Feed_SubtitlingConfig {
|
|
86398
|
+
constructor(props: {
|
|
86399
|
+
Language: Feed_TranscriptionLanguage;
|
|
86400
|
+
AspectRatio?: Feed_AspectRatio;
|
|
86401
|
+
Dictionary?: string;
|
|
86402
|
+
ProfanityFilter?: Feed_ProfanityFilterMode;
|
|
86403
|
+
});
|
|
86404
|
+
}
|
|
86405
|
+
|
|
86216
86406
|
export declare class FeedbackAttributes {
|
|
86217
86407
|
constructor(props: {
|
|
86218
86408
|
/** If the value is true, you receive email notifications when bounce or complaint events occur */
|
|
@@ -87025,6 +87215,13 @@ export declare class FlowLog_Tag {
|
|
|
87025
87215
|
});
|
|
87026
87216
|
}
|
|
87027
87217
|
|
|
87218
|
+
export declare class FlowLog_TagFieldSpecification {
|
|
87219
|
+
constructor(props: {
|
|
87220
|
+
ResourceType: string;
|
|
87221
|
+
TagKeys: string[];
|
|
87222
|
+
});
|
|
87223
|
+
}
|
|
87224
|
+
|
|
87028
87225
|
export declare class FlowModule {
|
|
87029
87226
|
constructor(props: {
|
|
87030
87227
|
/** The identifier of the application that you want to give access to. */
|
|
@@ -91907,12 +92104,23 @@ export declare class Harness_CustomJWTAuthorizerConfiguration {
|
|
|
91907
92104
|
AllowedClients?: string[];
|
|
91908
92105
|
AllowedScopes?: string[];
|
|
91909
92106
|
CustomClaims?: Harness_CustomClaimValidationType[];
|
|
92107
|
+
PrivateEndpoint?: Harness_PrivateEndpoint;
|
|
92108
|
+
PrivateEndpointOverrides?: Harness_PrivateEndpointOverride[];
|
|
92109
|
+
});
|
|
92110
|
+
}
|
|
92111
|
+
|
|
92112
|
+
export declare class Harness_EfsAccessPointConfiguration {
|
|
92113
|
+
constructor(props: {
|
|
92114
|
+
AccessPointArn: string;
|
|
92115
|
+
MountPath: string;
|
|
91910
92116
|
});
|
|
91911
92117
|
}
|
|
91912
92118
|
|
|
91913
92119
|
export declare class Harness_FilesystemConfiguration {
|
|
91914
92120
|
constructor(props: {
|
|
91915
|
-
|
|
92121
|
+
EfsAccessPoint?: Harness_EfsAccessPointConfiguration;
|
|
92122
|
+
S3FilesAccessPoint?: Harness_S3FilesAccessPointConfiguration;
|
|
92123
|
+
SessionStorage?: Harness_SessionStorageConfiguration;
|
|
91916
92124
|
});
|
|
91917
92125
|
}
|
|
91918
92126
|
|
|
@@ -91946,8 +92154,10 @@ export declare class Harness_HarnessAgentCoreMemoryConfiguration {
|
|
|
91946
92154
|
|
|
91947
92155
|
export declare class Harness_HarnessAgentCoreMemoryRetrievalConfig {
|
|
91948
92156
|
constructor(props: {
|
|
92157
|
+
/** Minimum relevance score for retrieved memories. Typed as both number and string because CloudFormation marshals scalars nested in dynamic-key (patternProperties) maps as strings, while direct API/CDK callers send a JSON number; both forms must validate. */
|
|
91949
92158
|
RelevanceScore?: number;
|
|
91950
92159
|
StrategyId?: string;
|
|
92160
|
+
/** Maximum number of memory records to retrieve. Typed as both integer and string because CloudFormation marshals scalars nested in dynamic-key (patternProperties) maps as strings, while direct API/CDK callers send a JSON integer; both forms must validate. */
|
|
91951
92161
|
TopK?: number;
|
|
91952
92162
|
});
|
|
91953
92163
|
}
|
|
@@ -91969,6 +92179,9 @@ export declare class Harness_HarnessAgentCoreRuntimeEnvironment {
|
|
|
91969
92179
|
export declare class Harness_HarnessBedrockModelConfig {
|
|
91970
92180
|
constructor(props: {
|
|
91971
92181
|
ModelId: string;
|
|
92182
|
+
/** Provider-specific parameters passed through to the model provider unchanged. */
|
|
92183
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92184
|
+
ApiFormat?: "chat_completions" | "converse_stream" | "responses";
|
|
91972
92185
|
MaxTokens?: number;
|
|
91973
92186
|
Temperature?: number;
|
|
91974
92187
|
TopP?: number;
|
|
@@ -92014,6 +92227,19 @@ export declare class Harness_HarnessInlineFunctionConfig {
|
|
|
92014
92227
|
});
|
|
92015
92228
|
}
|
|
92016
92229
|
|
|
92230
|
+
export declare class Harness_HarnessLiteLlmModelConfig {
|
|
92231
|
+
constructor(props: {
|
|
92232
|
+
ModelId: string;
|
|
92233
|
+
/** Provider-specific parameters passed through to LiteLLM unchanged. */
|
|
92234
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92235
|
+
ApiBase?: string;
|
|
92236
|
+
ApiKeyArn?: string;
|
|
92237
|
+
MaxTokens?: number;
|
|
92238
|
+
Temperature?: number;
|
|
92239
|
+
TopP?: number;
|
|
92240
|
+
});
|
|
92241
|
+
}
|
|
92242
|
+
|
|
92017
92243
|
export declare class Harness_HarnessMemoryConfiguration {
|
|
92018
92244
|
constructor(props: {
|
|
92019
92245
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
@@ -92024,6 +92250,7 @@ export declare class Harness_HarnessModelConfiguration {
|
|
|
92024
92250
|
constructor(props: {
|
|
92025
92251
|
BedrockModelConfig?: Harness_HarnessBedrockModelConfig;
|
|
92026
92252
|
GeminiModelConfig?: Harness_HarnessGeminiModelConfig;
|
|
92253
|
+
LiteLlmModelConfig?: Harness_HarnessLiteLlmModelConfig;
|
|
92027
92254
|
OpenAiModelConfig?: Harness_HarnessOpenAiModelConfig;
|
|
92028
92255
|
});
|
|
92029
92256
|
}
|
|
@@ -92032,6 +92259,9 @@ export declare class Harness_HarnessOpenAiModelConfig {
|
|
|
92032
92259
|
constructor(props: {
|
|
92033
92260
|
ApiKeyArn: string;
|
|
92034
92261
|
ModelId: string;
|
|
92262
|
+
/** Provider-specific parameters passed through to the model provider unchanged. */
|
|
92263
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92264
|
+
ApiFormat?: "chat_completions" | "responses";
|
|
92035
92265
|
MaxTokens?: number;
|
|
92036
92266
|
Temperature?: number;
|
|
92037
92267
|
TopP?: number;
|
|
@@ -92047,8 +92277,36 @@ export declare class Harness_HarnessRemoteMcpConfig {
|
|
|
92047
92277
|
|
|
92048
92278
|
export declare class Harness_HarnessSkill {
|
|
92049
92279
|
constructor(props: {
|
|
92280
|
+
Git?: Harness_HarnessSkillGitSource;
|
|
92050
92281
|
/** The filesystem path to the skill definition. */
|
|
92051
|
-
Path
|
|
92282
|
+
Path?: string;
|
|
92283
|
+
S3?: Harness_HarnessSkillS3Source;
|
|
92284
|
+
});
|
|
92285
|
+
}
|
|
92286
|
+
|
|
92287
|
+
export declare class Harness_HarnessSkillGitAuth {
|
|
92288
|
+
constructor(props: {
|
|
92289
|
+
/** The ARN of the credential in AgentCore Identity containing the password or personal access token. */
|
|
92290
|
+
CredentialArn: string;
|
|
92291
|
+
/** Username for authentication. Defaults to 'oauth2' if not specified. */
|
|
92292
|
+
Username?: string;
|
|
92293
|
+
});
|
|
92294
|
+
}
|
|
92295
|
+
|
|
92296
|
+
export declare class Harness_HarnessSkillGitSource {
|
|
92297
|
+
constructor(props: {
|
|
92298
|
+
/** The HTTPS URL of the git repository. */
|
|
92299
|
+
Url: string;
|
|
92300
|
+
Auth?: Harness_HarnessSkillGitAuth;
|
|
92301
|
+
/** Subdirectory within the repository containing the skill. */
|
|
92302
|
+
Path?: string;
|
|
92303
|
+
});
|
|
92304
|
+
}
|
|
92305
|
+
|
|
92306
|
+
export declare class Harness_HarnessSkillS3Source {
|
|
92307
|
+
constructor(props: {
|
|
92308
|
+
/** The S3 URI pointing to the skill directory (e.g., s3://bucket/skills/my-skill/). */
|
|
92309
|
+
Uri: string;
|
|
92052
92310
|
});
|
|
92053
92311
|
}
|
|
92054
92312
|
|
|
@@ -92112,6 +92370,17 @@ export declare class Harness_LifecycleConfiguration {
|
|
|
92112
92370
|
});
|
|
92113
92371
|
}
|
|
92114
92372
|
|
|
92373
|
+
export declare class Harness_ManagedVpcResource {
|
|
92374
|
+
constructor(props: {
|
|
92375
|
+
EndpointIpAddressType: "IPV4" | "IPV6";
|
|
92376
|
+
SubnetIds: string[];
|
|
92377
|
+
VpcIdentifier: string;
|
|
92378
|
+
RoutingDomain?: string;
|
|
92379
|
+
SecurityGroupIds?: string[];
|
|
92380
|
+
Tags?: Record<string, unknown>;
|
|
92381
|
+
});
|
|
92382
|
+
}
|
|
92383
|
+
|
|
92115
92384
|
export declare class Harness_NetworkConfiguration {
|
|
92116
92385
|
constructor(props: {
|
|
92117
92386
|
NetworkMode: "PUBLIC" | "VPC";
|
|
@@ -92129,6 +92398,33 @@ export declare class Harness_OAuthCredentialProvider {
|
|
|
92129
92398
|
});
|
|
92130
92399
|
}
|
|
92131
92400
|
|
|
92401
|
+
export declare class Harness_PrivateEndpoint {
|
|
92402
|
+
constructor(props: {
|
|
92403
|
+
ManagedVpcResource?: Harness_ManagedVpcResource;
|
|
92404
|
+
SelfManagedLatticeResource?: Harness_SelfManagedLatticeResource;
|
|
92405
|
+
});
|
|
92406
|
+
}
|
|
92407
|
+
|
|
92408
|
+
export declare class Harness_PrivateEndpointOverride {
|
|
92409
|
+
constructor(props: {
|
|
92410
|
+
Domain: string;
|
|
92411
|
+
PrivateEndpoint: Harness_PrivateEndpoint;
|
|
92412
|
+
});
|
|
92413
|
+
}
|
|
92414
|
+
|
|
92415
|
+
export declare class Harness_S3FilesAccessPointConfiguration {
|
|
92416
|
+
constructor(props: {
|
|
92417
|
+
AccessPointArn: string;
|
|
92418
|
+
MountPath: string;
|
|
92419
|
+
});
|
|
92420
|
+
}
|
|
92421
|
+
|
|
92422
|
+
export declare class Harness_SelfManagedLatticeResource {
|
|
92423
|
+
constructor(props: {
|
|
92424
|
+
ResourceConfigurationIdentifier: string;
|
|
92425
|
+
});
|
|
92426
|
+
}
|
|
92427
|
+
|
|
92132
92428
|
export declare class Harness_SessionStorageConfiguration {
|
|
92133
92429
|
constructor(props: {
|
|
92134
92430
|
MountPath: string;
|
|
@@ -92179,8 +92475,10 @@ export declare class HarnessAgentCoreMemoryConfiguration {
|
|
|
92179
92475
|
|
|
92180
92476
|
export declare class HarnessAgentCoreMemoryRetrievalConfig {
|
|
92181
92477
|
constructor(props: {
|
|
92478
|
+
/** Minimum relevance score for retrieved memories. Typed as both number and string because CloudFormation marshals scalars nested in dynamic-key (patternProperties) maps as strings, while direct API/CDK callers send a JSON number; both forms must validate. */
|
|
92182
92479
|
RelevanceScore?: number;
|
|
92183
92480
|
StrategyId?: string;
|
|
92481
|
+
/** Maximum number of memory records to retrieve. Typed as both integer and string because CloudFormation marshals scalars nested in dynamic-key (patternProperties) maps as strings, while direct API/CDK callers send a JSON integer; both forms must validate. */
|
|
92184
92482
|
TopK?: number;
|
|
92185
92483
|
});
|
|
92186
92484
|
}
|
|
@@ -92202,6 +92500,9 @@ export declare class HarnessAgentCoreRuntimeEnvironment {
|
|
|
92202
92500
|
export declare class HarnessBedrockModelConfig {
|
|
92203
92501
|
constructor(props: {
|
|
92204
92502
|
ModelId: string;
|
|
92503
|
+
/** Provider-specific parameters passed through to the model provider unchanged. */
|
|
92504
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92505
|
+
ApiFormat?: "chat_completions" | "converse_stream" | "responses";
|
|
92205
92506
|
MaxTokens?: number;
|
|
92206
92507
|
Temperature?: number;
|
|
92207
92508
|
TopP?: number;
|
|
@@ -92247,6 +92548,19 @@ export declare class HarnessInlineFunctionConfig {
|
|
|
92247
92548
|
});
|
|
92248
92549
|
}
|
|
92249
92550
|
|
|
92551
|
+
export declare class HarnessLiteLlmModelConfig {
|
|
92552
|
+
constructor(props: {
|
|
92553
|
+
ModelId: string;
|
|
92554
|
+
/** Provider-specific parameters passed through to LiteLLM unchanged. */
|
|
92555
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92556
|
+
ApiBase?: string;
|
|
92557
|
+
ApiKeyArn?: string;
|
|
92558
|
+
MaxTokens?: number;
|
|
92559
|
+
Temperature?: number;
|
|
92560
|
+
TopP?: number;
|
|
92561
|
+
});
|
|
92562
|
+
}
|
|
92563
|
+
|
|
92250
92564
|
export declare class HarnessMemoryConfiguration {
|
|
92251
92565
|
constructor(props: {
|
|
92252
92566
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
@@ -92257,6 +92571,7 @@ export declare class HarnessModelConfiguration {
|
|
|
92257
92571
|
constructor(props: {
|
|
92258
92572
|
BedrockModelConfig?: Harness_HarnessBedrockModelConfig;
|
|
92259
92573
|
GeminiModelConfig?: Harness_HarnessGeminiModelConfig;
|
|
92574
|
+
LiteLlmModelConfig?: Harness_HarnessLiteLlmModelConfig;
|
|
92260
92575
|
OpenAiModelConfig?: Harness_HarnessOpenAiModelConfig;
|
|
92261
92576
|
});
|
|
92262
92577
|
}
|
|
@@ -92265,6 +92580,9 @@ export declare class HarnessOpenAiModelConfig {
|
|
|
92265
92580
|
constructor(props: {
|
|
92266
92581
|
ApiKeyArn: string;
|
|
92267
92582
|
ModelId: string;
|
|
92583
|
+
/** Provider-specific parameters passed through to the model provider unchanged. */
|
|
92584
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92585
|
+
ApiFormat?: "chat_completions" | "responses";
|
|
92268
92586
|
MaxTokens?: number;
|
|
92269
92587
|
Temperature?: number;
|
|
92270
92588
|
TopP?: number;
|
|
@@ -92280,8 +92598,36 @@ export declare class HarnessRemoteMcpConfig {
|
|
|
92280
92598
|
|
|
92281
92599
|
export declare class HarnessSkill {
|
|
92282
92600
|
constructor(props: {
|
|
92601
|
+
Git?: Harness_HarnessSkillGitSource;
|
|
92283
92602
|
/** The filesystem path to the skill definition. */
|
|
92284
|
-
Path
|
|
92603
|
+
Path?: string;
|
|
92604
|
+
S3?: Harness_HarnessSkillS3Source;
|
|
92605
|
+
});
|
|
92606
|
+
}
|
|
92607
|
+
|
|
92608
|
+
export declare class HarnessSkillGitAuth {
|
|
92609
|
+
constructor(props: {
|
|
92610
|
+
/** The ARN of the credential in AgentCore Identity containing the password or personal access token. */
|
|
92611
|
+
CredentialArn: string;
|
|
92612
|
+
/** Username for authentication. Defaults to 'oauth2' if not specified. */
|
|
92613
|
+
Username?: string;
|
|
92614
|
+
});
|
|
92615
|
+
}
|
|
92616
|
+
|
|
92617
|
+
export declare class HarnessSkillGitSource {
|
|
92618
|
+
constructor(props: {
|
|
92619
|
+
/** The HTTPS URL of the git repository. */
|
|
92620
|
+
Url: string;
|
|
92621
|
+
Auth?: Harness_HarnessSkillGitAuth;
|
|
92622
|
+
/** Subdirectory within the repository containing the skill. */
|
|
92623
|
+
Path?: string;
|
|
92624
|
+
});
|
|
92625
|
+
}
|
|
92626
|
+
|
|
92627
|
+
export declare class HarnessSkillS3Source {
|
|
92628
|
+
constructor(props: {
|
|
92629
|
+
/** The S3 URI pointing to the skill directory (e.g., s3://bucket/skills/my-skill/). */
|
|
92630
|
+
Uri: string;
|
|
92285
92631
|
});
|
|
92286
92632
|
}
|
|
92287
92633
|
|
|
@@ -101340,7 +101686,6 @@ export declare class LambdaCapacityProvider_InstanceRequirements {
|
|
|
101340
101686
|
|
|
101341
101687
|
export declare class LambdaCapacityProvider_PropagateTagsConfig {
|
|
101342
101688
|
constructor(props: {
|
|
101343
|
-
/** A list of tags to explicitly propagate to managed resources. */
|
|
101344
101689
|
ExplicitTags?: LambdaCapacityProvider_Tag[];
|
|
101345
101690
|
Mode?: LambdaCapacityProvider_PropagateTagsMode;
|
|
101346
101691
|
});
|
|
@@ -101786,7 +102131,7 @@ export declare class LaunchTemplate_CapacityReservationTarget {
|
|
|
101786
102131
|
|
|
101787
102132
|
export declare class LaunchTemplate_ConnectionTrackingSpecification {
|
|
101788
102133
|
constructor(props: {
|
|
101789
|
-
/** Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds. */
|
|
102134
|
+
/** Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 350 seconds for Nitro v6 instance types (excluding P6e-GB200); 432000 seconds for all other instance types (including P6e-GB200). Recommended: Less than 432000 seconds. */
|
|
101790
102135
|
TcpEstablishedTimeout?: number;
|
|
101791
102136
|
/** Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds. */
|
|
101792
102137
|
UdpStreamTimeout?: number;
|
|
@@ -102711,7 +103056,9 @@ export declare class LayoutSections {
|
|
|
102711
103056
|
|
|
102712
103057
|
export declare class LBCookieStickinessPolicy {
|
|
102713
103058
|
constructor(props: {
|
|
103059
|
+
/** The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session. */
|
|
102714
103060
|
CookieExpirationPeriod?: string;
|
|
103061
|
+
/** The name of the policy. This name must be unique within the set of policies for this load balancer. */
|
|
102715
103062
|
PolicyName?: string;
|
|
102716
103063
|
});
|
|
102717
103064
|
}
|
|
@@ -104009,11 +104356,23 @@ export declare class ListenerRule_Transform {
|
|
|
104009
104356
|
|
|
104010
104357
|
export declare class Listeners {
|
|
104011
104358
|
constructor(props: {
|
|
104359
|
+
/** The port on which the instance is listening. */
|
|
104012
104360
|
InstancePort: string;
|
|
104361
|
+
/** The port on which the load balancer is listening. On EC2-VPC, you can specify any port from the range 1-65535. On EC2-Classic, you can specify any port from the following list: 25, 80, 443, 465, 587, 1024-65535. */
|
|
104013
104362
|
LoadBalancerPort: string;
|
|
104363
|
+
/** The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL. */
|
|
104014
104364
|
Protocol: "HTTP" | "HTTPS" | "SSL" | "TCP";
|
|
104365
|
+
/** The protocol to use for routing traffic to instances: HTTP, HTTPS, TCP, or SSL.
|
|
104366
|
+
|
|
104367
|
+
If the front-end protocol is TCP or SSL, the back-end protocol must be TCP or SSL. If the front-end protocol is HTTP or HTTPS, the back-end protocol must be HTTP or HTTPS.
|
|
104368
|
+
|
|
104369
|
+
If there is another listener with the same `InstancePort` whose `InstanceProtocol` is secure, (HTTPS or SSL), the listener's `InstanceProtocol` must also be secure.
|
|
104370
|
+
|
|
104371
|
+
If there is another listener with the same `InstancePort` whose `InstanceProtocol` is HTTP or TCP, the listener's `InstanceProtocol` must be HTTP or TCP. */
|
|
104015
104372
|
InstanceProtocol?: string;
|
|
104373
|
+
/** The names of the policies to associate with the listener. */
|
|
104016
104374
|
PolicyNames?: string[];
|
|
104375
|
+
/** The Amazon Resource Name (ARN) of the server certificate. */
|
|
104017
104376
|
SSLCertificateId?: string;
|
|
104018
104377
|
});
|
|
104019
104378
|
}
|
|
@@ -104773,6 +105132,41 @@ export declare class Log {
|
|
|
104773
105132
|
});
|
|
104774
105133
|
}
|
|
104775
105134
|
|
|
105135
|
+
export declare class LogAlarm_ScheduleConfiguration {
|
|
105136
|
+
constructor(props: {
|
|
105137
|
+
/** The expression that defines when the scheduled query runs, e.g. rate(1 minute). */
|
|
105138
|
+
ScheduleExpression: string;
|
|
105139
|
+
/** The number of seconds into the past to end the query window. */
|
|
105140
|
+
EndTimeOffset?: number;
|
|
105141
|
+
/** The number of seconds into the past to start the query window. */
|
|
105142
|
+
StartTimeOffset?: number;
|
|
105143
|
+
});
|
|
105144
|
+
}
|
|
105145
|
+
|
|
105146
|
+
export declare class LogAlarm_ScheduledQueryConfiguration {
|
|
105147
|
+
constructor(props: {
|
|
105148
|
+
/** The aggregation expression for the scheduled query, e.g. count(*) or avg(latency) by host. */
|
|
105149
|
+
AggregationExpression: string;
|
|
105150
|
+
/** The log groups to query. */
|
|
105151
|
+
LogGroupIdentifiers: string[];
|
|
105152
|
+
/** The query string to execute against the specified log groups. */
|
|
105153
|
+
QueryString: string;
|
|
105154
|
+
/** The schedule configuration. */
|
|
105155
|
+
ScheduleConfiguration: LogAlarm_ScheduleConfiguration;
|
|
105156
|
+
/** The ARN of the IAM role that grants permissions to execute the scheduled query. */
|
|
105157
|
+
ScheduledQueryRoleARN: string;
|
|
105158
|
+
});
|
|
105159
|
+
}
|
|
105160
|
+
|
|
105161
|
+
export declare class LogAlarm_Tag {
|
|
105162
|
+
constructor(props: {
|
|
105163
|
+
/** A unique identifier for the tag. The combination of tag keys and values can help you organize and categorize your resources. */
|
|
105164
|
+
Key: string;
|
|
105165
|
+
/** The value for the specified tag key. */
|
|
105166
|
+
Value: string;
|
|
105167
|
+
});
|
|
105168
|
+
}
|
|
105169
|
+
|
|
104776
105170
|
export declare class LogConfig {
|
|
104777
105171
|
constructor(props: {
|
|
104778
105172
|
/** The service role that AWS AppSync will assume to publish to Amazon CloudWatch Logs in your account. */
|
|
@@ -106260,16 +106654,6 @@ export declare class ManagedStorageEncryptionConfiguration {
|
|
|
106260
106654
|
});
|
|
106261
106655
|
}
|
|
106262
106656
|
|
|
106263
|
-
export declare class ManagedVpcResource {
|
|
106264
|
-
constructor(props: {
|
|
106265
|
-
EndpointIpAddressType: GatewayTarget_EndpointIpAddressType;
|
|
106266
|
-
SubnetIds: string[];
|
|
106267
|
-
VpcIdentifier: string;
|
|
106268
|
-
RoutingDomain?: string;
|
|
106269
|
-
SecurityGroupIds?: string[];
|
|
106270
|
-
});
|
|
106271
|
-
}
|
|
106272
|
-
|
|
106273
106657
|
export declare class ManagedWordsConfig {
|
|
106274
106658
|
constructor(props: {
|
|
106275
106659
|
Type: Guardrail_ManagedWordsType;
|
|
@@ -111293,6 +111677,12 @@ export declare class Metrics {
|
|
|
111293
111677
|
});
|
|
111294
111678
|
}
|
|
111295
111679
|
|
|
111680
|
+
export declare class MetricsBackupConfiguration {
|
|
111681
|
+
constructor(props: {
|
|
111682
|
+
Region: string;
|
|
111683
|
+
});
|
|
111684
|
+
}
|
|
111685
|
+
|
|
111296
111686
|
export declare class MetricsCollection {
|
|
111297
111687
|
constructor(props: {
|
|
111298
111688
|
/** The frequency at which Amazon EC2 Auto Scaling sends aggregated data to CloudWatch. The only valid value is ``1Minute``. */
|
|
@@ -114802,6 +115192,15 @@ export declare class NeptuneEventSubscription_Tag {
|
|
|
114802
115192
|
});
|
|
114803
115193
|
}
|
|
114804
115194
|
|
|
115195
|
+
export declare class NeptuneGlobalCluster_Tag {
|
|
115196
|
+
constructor(props: {
|
|
115197
|
+
/** 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 -. */
|
|
115198
|
+
Key: string;
|
|
115199
|
+
/** 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 -. */
|
|
115200
|
+
Value?: string;
|
|
115201
|
+
});
|
|
115202
|
+
}
|
|
115203
|
+
|
|
114805
115204
|
export declare class NeptuneGlobalDatabaseConfiguration {
|
|
114806
115205
|
constructor(props: {
|
|
114807
115206
|
Behavior: any;
|
|
@@ -118004,6 +118403,7 @@ export declare class OrganizationCentralizationRule_CentralizationRuleDestinatio
|
|
|
118004
118403
|
Region: string;
|
|
118005
118404
|
Account?: string;
|
|
118006
118405
|
DestinationLogsConfiguration?: OrganizationCentralizationRule_DestinationLogsConfiguration;
|
|
118406
|
+
DestinationMetricsConfiguration?: OrganizationCentralizationRule_DestinationMetricsConfiguration;
|
|
118007
118407
|
});
|
|
118008
118408
|
}
|
|
118009
118409
|
|
|
@@ -118012,6 +118412,7 @@ export declare class OrganizationCentralizationRule_CentralizationRuleSource {
|
|
|
118012
118412
|
Regions: any;
|
|
118013
118413
|
Scope?: string;
|
|
118014
118414
|
SourceLogsConfiguration?: OrganizationCentralizationRule_SourceLogsConfiguration;
|
|
118415
|
+
SourceMetricsConfiguration?: OrganizationCentralizationRule_SourceMetricsConfiguration;
|
|
118015
118416
|
});
|
|
118016
118417
|
}
|
|
118017
118418
|
|
|
@@ -118023,6 +118424,12 @@ export declare class OrganizationCentralizationRule_DestinationLogsConfiguration
|
|
|
118023
118424
|
});
|
|
118024
118425
|
}
|
|
118025
118426
|
|
|
118427
|
+
export declare class OrganizationCentralizationRule_DestinationMetricsConfiguration {
|
|
118428
|
+
constructor(props: {
|
|
118429
|
+
BackupConfiguration?: OrganizationCentralizationRule_MetricsBackupConfiguration;
|
|
118430
|
+
});
|
|
118431
|
+
}
|
|
118432
|
+
|
|
118026
118433
|
export declare class OrganizationCentralizationRule_LogGroupNameConfiguration {
|
|
118027
118434
|
constructor(props: {
|
|
118028
118435
|
LogGroupNamePattern: string;
|
|
@@ -118044,6 +118451,12 @@ export declare class OrganizationCentralizationRule_LogsEncryptionConfiguration
|
|
|
118044
118451
|
});
|
|
118045
118452
|
}
|
|
118046
118453
|
|
|
118454
|
+
export declare class OrganizationCentralizationRule_MetricsBackupConfiguration {
|
|
118455
|
+
constructor(props: {
|
|
118456
|
+
Region: string;
|
|
118457
|
+
});
|
|
118458
|
+
}
|
|
118459
|
+
|
|
118047
118460
|
export declare class OrganizationCentralizationRule_SourceLogsConfiguration {
|
|
118048
118461
|
constructor(props: {
|
|
118049
118462
|
EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
|
|
@@ -118052,6 +118465,12 @@ export declare class OrganizationCentralizationRule_SourceLogsConfiguration {
|
|
|
118052
118465
|
});
|
|
118053
118466
|
}
|
|
118054
118467
|
|
|
118468
|
+
export declare class OrganizationCentralizationRule_SourceMetricsConfiguration {
|
|
118469
|
+
constructor(props: {
|
|
118470
|
+
MetricsSelectionCriteria?: string;
|
|
118471
|
+
});
|
|
118472
|
+
}
|
|
118473
|
+
|
|
118055
118474
|
export declare class OrganizationCentralizationRule_Tag {
|
|
118056
118475
|
constructor(props: {
|
|
118057
118476
|
/** 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 -. */
|
|
@@ -122684,6 +123103,13 @@ export declare class PolicyInformation {
|
|
|
122684
123103
|
});
|
|
122685
123104
|
}
|
|
122686
123105
|
|
|
123106
|
+
export declare class PolicyItem {
|
|
123107
|
+
constructor(props: {
|
|
123108
|
+
Name?: string;
|
|
123109
|
+
Value?: string;
|
|
123110
|
+
});
|
|
123111
|
+
}
|
|
123112
|
+
|
|
122687
123113
|
export declare class PolicyMap {
|
|
122688
123114
|
constructor(props: {
|
|
122689
123115
|
AZ: ResiliencyPolicy_FailurePolicy;
|
|
@@ -123475,6 +123901,20 @@ export declare class PrivateDnsPropertiesMutable {
|
|
|
123475
123901
|
});
|
|
123476
123902
|
}
|
|
123477
123903
|
|
|
123904
|
+
export declare class PrivateEndpoint {
|
|
123905
|
+
constructor(props: {
|
|
123906
|
+
ManagedVpcResource?: Harness_ManagedVpcResource;
|
|
123907
|
+
SelfManagedLatticeResource?: Harness_SelfManagedLatticeResource;
|
|
123908
|
+
});
|
|
123909
|
+
}
|
|
123910
|
+
|
|
123911
|
+
export declare class PrivateEndpointOverride {
|
|
123912
|
+
constructor(props: {
|
|
123913
|
+
Domain: string;
|
|
123914
|
+
PrivateEndpoint: Harness_PrivateEndpoint;
|
|
123915
|
+
});
|
|
123916
|
+
}
|
|
123917
|
+
|
|
123478
123918
|
export declare class PrivateIpAdd {
|
|
123479
123919
|
constructor(props: {
|
|
123480
123920
|
/** Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary. */
|
|
@@ -124304,7 +124744,6 @@ export declare class PromptVersion_ToolSpecification {
|
|
|
124304
124744
|
|
|
124305
124745
|
export declare class PropagateTagsConfig {
|
|
124306
124746
|
constructor(props: {
|
|
124307
|
-
/** A list of tags to explicitly propagate to managed resources. */
|
|
124308
124747
|
ExplicitTags?: LambdaCapacityProvider_Tag[];
|
|
124309
124748
|
Mode?: LambdaCapacityProvider_PropagateTagsMode;
|
|
124310
124749
|
});
|
|
@@ -139822,6 +140261,12 @@ export declare class RestoreTestingSelection_ProtectedResourceConditions {
|
|
|
139822
140261
|
});
|
|
139823
140262
|
}
|
|
139824
140263
|
|
|
140264
|
+
export declare class RestrictedInstanceGroupsConfig {
|
|
140265
|
+
constructor(props: {
|
|
140266
|
+
SharedEnvironmentConfig: SageMakerCluster_SharedEnvironmentConfig;
|
|
140267
|
+
});
|
|
140268
|
+
}
|
|
140269
|
+
|
|
139825
140270
|
export declare class RestrictedPeriod {
|
|
139826
140271
|
constructor(props: {
|
|
139827
140272
|
EndDate: string;
|
|
@@ -141927,13 +142372,6 @@ export declare class S3FilesAccessPoint_RootDirectory {
|
|
|
141927
142372
|
});
|
|
141928
142373
|
}
|
|
141929
142374
|
|
|
141930
|
-
export declare class S3FilesAccessPointConfiguration {
|
|
141931
|
-
constructor(props: {
|
|
141932
|
-
AccessPointArn: string;
|
|
141933
|
-
MountPath: string;
|
|
141934
|
-
});
|
|
141935
|
-
}
|
|
141936
|
-
|
|
141937
142375
|
export declare class S3FilesFileSystem_ExpirationDataRule {
|
|
141938
142376
|
constructor(props: {
|
|
141939
142377
|
DaysAfterLastAccess: number;
|
|
@@ -142855,7 +143293,6 @@ export declare class SageMakerCluster_ClusterOrchestratorSlurmConfig {
|
|
|
142855
143293
|
|
|
142856
143294
|
export declare class SageMakerCluster_ClusterRestrictedInstanceGroup {
|
|
142857
143295
|
constructor(props: {
|
|
142858
|
-
EnvironmentConfig: SageMakerCluster_EnvironmentConfig;
|
|
142859
143296
|
ExecutionRole: string;
|
|
142860
143297
|
/** The number of instances you specified to add to the restricted instance group of a SageMaker HyperPod cluster. */
|
|
142861
143298
|
InstanceCount: number;
|
|
@@ -142863,6 +143300,7 @@ export declare class SageMakerCluster_ClusterRestrictedInstanceGroup {
|
|
|
142863
143300
|
InstanceType: string;
|
|
142864
143301
|
/** The number of instances that are currently in the restricted instance group of a SageMaker HyperPod cluster. */
|
|
142865
143302
|
CurrentCount?: number;
|
|
143303
|
+
EnvironmentConfig?: SageMakerCluster_EnvironmentConfig;
|
|
142866
143304
|
InstanceStorageConfigs?: any;
|
|
142867
143305
|
OnStartDeepHealthChecks?: any;
|
|
142868
143306
|
OverrideVpcConfig?: SageMakerCluster_VpcConfig;
|
|
@@ -142913,6 +143351,12 @@ export declare class SageMakerCluster_InstanceRequirements {
|
|
|
142913
143351
|
});
|
|
142914
143352
|
}
|
|
142915
143353
|
|
|
143354
|
+
export declare class SageMakerCluster_RestrictedInstanceGroupsConfig {
|
|
143355
|
+
constructor(props: {
|
|
143356
|
+
SharedEnvironmentConfig: SageMakerCluster_SharedEnvironmentConfig;
|
|
143357
|
+
});
|
|
143358
|
+
}
|
|
143359
|
+
|
|
142916
143360
|
export declare class SageMakerCluster_RollingUpdatePolicy {
|
|
142917
143361
|
constructor(props: {
|
|
142918
143362
|
MaximumBatchSize: SageMakerCluster_CapacitySizeConfig;
|
|
@@ -142928,6 +143372,14 @@ export declare class SageMakerCluster_ScheduledUpdateConfig {
|
|
|
142928
143372
|
});
|
|
142929
143373
|
}
|
|
142930
143374
|
|
|
143375
|
+
export declare class SageMakerCluster_SharedEnvironmentConfig {
|
|
143376
|
+
constructor(props: {
|
|
143377
|
+
/** The deletion policy for the shared FSx Lustre file system. Keep retains the FSx when RIGs are deleted. DeleteIfNotUsed deletes the FSx when no RIGs reference it. */
|
|
143378
|
+
FSxLustreDeletionPolicy: "DeleteIfNotUsed" | "Keep";
|
|
143379
|
+
FSxLustreConfig?: SageMakerCluster_FSxLustreConfig;
|
|
143380
|
+
});
|
|
143381
|
+
}
|
|
143382
|
+
|
|
142931
143383
|
export declare class SageMakerCluster_Tag {
|
|
142932
143384
|
constructor(props: {
|
|
142933
143385
|
/** 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 -. */
|
|
@@ -144520,6 +144972,21 @@ export declare class ScheduledAudit_Tag {
|
|
|
144520
144972
|
});
|
|
144521
144973
|
}
|
|
144522
144974
|
|
|
144975
|
+
export declare class ScheduledQueryConfiguration {
|
|
144976
|
+
constructor(props: {
|
|
144977
|
+
/** The aggregation expression for the scheduled query, e.g. count(*) or avg(latency) by host. */
|
|
144978
|
+
AggregationExpression: string;
|
|
144979
|
+
/** The log groups to query. */
|
|
144980
|
+
LogGroupIdentifiers: string[];
|
|
144981
|
+
/** The query string to execute against the specified log groups. */
|
|
144982
|
+
QueryString: string;
|
|
144983
|
+
/** The schedule configuration. */
|
|
144984
|
+
ScheduleConfiguration: LogAlarm_ScheduleConfiguration;
|
|
144985
|
+
/** The ARN of the IAM role that grants permissions to execute the scheduled query. */
|
|
144986
|
+
ScheduledQueryRoleARN: string;
|
|
144987
|
+
});
|
|
144988
|
+
}
|
|
144989
|
+
|
|
144523
144990
|
export declare class ScheduledUpdateConfig {
|
|
144524
144991
|
constructor(props: {
|
|
144525
144992
|
/** A cron expression that specifies the schedule that SageMaker follows when updating the AMI. */
|
|
@@ -146089,6 +146556,12 @@ export declare class SelfManagedKafkaEventSourceConfig {
|
|
|
146089
146556
|
});
|
|
146090
146557
|
}
|
|
146091
146558
|
|
|
146559
|
+
export declare class SelfManagedLatticeResource {
|
|
146560
|
+
constructor(props: {
|
|
146561
|
+
ResourceConfigurationIdentifier: string;
|
|
146562
|
+
});
|
|
146563
|
+
}
|
|
146564
|
+
|
|
146092
146565
|
export declare class SelfManagedMode {
|
|
146093
146566
|
constructor(props: {
|
|
146094
146567
|
/** The ARN of the Resource Configuration. */
|
|
@@ -147659,6 +148132,14 @@ export declare class SharedColumnSemanticMetadata {
|
|
|
147659
148132
|
});
|
|
147660
148133
|
}
|
|
147661
148134
|
|
|
148135
|
+
export declare class SharedEnvironmentConfig {
|
|
148136
|
+
constructor(props: {
|
|
148137
|
+
/** The deletion policy for the shared FSx Lustre file system. Keep retains the FSx when RIGs are deleted. DeleteIfNotUsed deletes the FSx when no RIGs reference it. */
|
|
148138
|
+
FSxLustreDeletionPolicy: "DeleteIfNotUsed" | "Keep";
|
|
148139
|
+
FSxLustreConfig?: SageMakerCluster_FSxLustreConfig;
|
|
148140
|
+
});
|
|
148141
|
+
}
|
|
148142
|
+
|
|
147662
148143
|
export declare class SharePointConfiguration {
|
|
147663
148144
|
constructor(props: {
|
|
147664
148145
|
SecretArn: string;
|
|
@@ -149140,6 +149621,12 @@ export declare class SourceLogsConfiguration {
|
|
|
149140
149621
|
});
|
|
149141
149622
|
}
|
|
149142
149623
|
|
|
149624
|
+
export declare class SourceMetricsConfiguration {
|
|
149625
|
+
constructor(props: {
|
|
149626
|
+
MetricsSelectionCriteria?: string;
|
|
149627
|
+
});
|
|
149628
|
+
}
|
|
149629
|
+
|
|
149143
149630
|
export declare class SourceMonitoringConfig {
|
|
149144
149631
|
constructor(props: {
|
|
149145
149632
|
/** Contains the settings for audio stream metrics monitoring. */
|
|
@@ -149169,6 +149656,15 @@ export declare class SourceResource {
|
|
|
149169
149656
|
});
|
|
149170
149657
|
}
|
|
149171
149658
|
|
|
149659
|
+
export declare class SourceSecurityGroup {
|
|
149660
|
+
constructor(props: {
|
|
149661
|
+
/** The name of the security group that you can use as part of your inbound rules for your load balancer's back-end instances. */
|
|
149662
|
+
GroupName?: string;
|
|
149663
|
+
/** The owner of the source security group. */
|
|
149664
|
+
OwnerAlias?: string;
|
|
149665
|
+
});
|
|
149666
|
+
}
|
|
149667
|
+
|
|
149172
149668
|
export declare class SourceSegment {
|
|
149173
149669
|
constructor(props: {
|
|
149174
149670
|
SegmentDefinitionName?: string;
|
|
@@ -150245,6 +150741,15 @@ export declare class SSMAssociation_S3OutputLocation {
|
|
|
150245
150741
|
});
|
|
150246
150742
|
}
|
|
150247
150743
|
|
|
150744
|
+
export declare class SSMAssociation_Tag {
|
|
150745
|
+
constructor(props: {
|
|
150746
|
+
/** The name of the tag. */
|
|
150747
|
+
Key: string;
|
|
150748
|
+
/** The value of the tag. */
|
|
150749
|
+
Value: string;
|
|
150750
|
+
});
|
|
150751
|
+
}
|
|
150752
|
+
|
|
150248
150753
|
export declare class SSMAssociation_Target {
|
|
150249
150754
|
constructor(props: {
|
|
150250
150755
|
Key: string;
|
|
@@ -151838,6 +152343,15 @@ export declare class SubstitutionValue {
|
|
|
151838
152343
|
});
|
|
151839
152344
|
}
|
|
151840
152345
|
|
|
152346
|
+
export declare class SubtitlingConfig {
|
|
152347
|
+
constructor(props: {
|
|
152348
|
+
Language: Feed_TranscriptionLanguage;
|
|
152349
|
+
AspectRatio?: Feed_AspectRatio;
|
|
152350
|
+
Dictionary?: string;
|
|
152351
|
+
ProfanityFilter?: Feed_ProfanityFilterMode;
|
|
152352
|
+
});
|
|
152353
|
+
}
|
|
152354
|
+
|
|
151841
152355
|
export declare class SuccessConditions {
|
|
151842
152356
|
constructor(props: {
|
|
151843
152357
|
Conditions?: CodePipelinePipeline_Condition[];
|
|
@@ -152588,6 +153102,13 @@ export declare class TagCondition {
|
|
|
152588
153102
|
});
|
|
152589
153103
|
}
|
|
152590
153104
|
|
|
153105
|
+
export declare class TagFieldSpecification {
|
|
153106
|
+
constructor(props: {
|
|
153107
|
+
ResourceType: string;
|
|
153108
|
+
TagKeys: string[];
|
|
153109
|
+
});
|
|
153110
|
+
}
|
|
153111
|
+
|
|
152591
153112
|
export declare class TagMap {
|
|
152592
153113
|
constructor(props: {
|
|
152593
153114
|
/** TagKey */
|
|
@@ -153141,7 +153662,7 @@ export declare class TaskDefinition_ContainerDefinition {
|
|
|
153141
153662
|
ReadonlyRootFilesystem?: boolean;
|
|
153142
153663
|
/** The private repository authentication credentials to use. */
|
|
153143
153664
|
RepositoryCredentials?: TaskDefinition_RepositoryCredentials;
|
|
153144
|
-
/** The type and amount of a resource to assign to a container. The
|
|
153665
|
+
/** The type and amount of a resource to assign to a container. The supported resources are GPUs and Neuron devices. */
|
|
153145
153666
|
ResourceRequirements?: TaskDefinition_ResourceRequirement[];
|
|
153146
153667
|
/** The restart policy for a container. When you set up a restart policy, Amazon ECS can restart the container without needing to replace the task. For more information, see [Restart individual containers in Amazon ECS tasks with container restart policies](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-restart-policy.html) in the *Amazon Elastic Container Service Developer Guide*. */
|
|
153147
153668
|
RestartPolicy?: TaskDefinition_RestartPolicy;
|
|
@@ -153384,8 +153905,7 @@ export declare class TaskDefinition_LinuxParameters {
|
|
|
153384
153905
|
If you're using tasks that use the Fargate launch type, the ``swappiness`` parameter isn't supported.
|
|
153385
153906
|
If you're using tasks on Amazon Linux 2023 the ``swappiness`` parameter isn't supported. */
|
|
153386
153907
|
Swappiness?: number;
|
|
153387
|
-
/** The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the ``--tmpfs`` option to docker run.
|
|
153388
|
-
If you're using tasks that use the Fargate launch type, the ``tmpfs`` parameter isn't supported. */
|
|
153908
|
+
/** The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the ``--tmpfs`` option to docker run. */
|
|
153389
153909
|
Tmpfs?: TaskDefinition_Tmpfs[];
|
|
153390
153910
|
});
|
|
153391
153911
|
}
|
|
@@ -153508,7 +154028,8 @@ export declare class TaskDefinition_ResourceRequirement {
|
|
|
153508
154028
|
/** The type of resource to assign to a container. */
|
|
153509
154029
|
Type: string;
|
|
153510
154030
|
/** The value for the specified resource type.
|
|
153511
|
-
When the type is ``GPU``, the value is the number of physical ``GPUs`` the Amazon ECS container agent reserves for the container. The number of GPUs that's reserved for all containers in a task can't exceed the number of available GPUs on the container instance that the task is launched on.
|
|
154031
|
+
When the type is ``GPU``, the value is the number of physical ``GPUs`` the Amazon ECS container agent reserves for the container. The number of GPUs that's reserved for all containers in a task can't exceed the number of available GPUs on the container instance that the task is launched on. You can also specify ``ALL`` to allocate all available GPUs on the instance to the container.
|
|
154032
|
+
When the type is ``NeuronDevice``, the value must be ``ALL``. This allocates all available Neuron devices on the instance to the container. Only one container in a task can specify ``NeuronDevice`` resources. This resource type is only supported on Managed Instances.
|
|
153512
154033
|
When the type is ``InferenceAccelerator``, the ``value`` matches the ``deviceName`` for an [InferenceAccelerator](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_InferenceAccelerator.html) specified in a task definition. */
|
|
153513
154034
|
Value: string;
|
|
153514
154035
|
});
|
|
@@ -153537,9 +154058,14 @@ export declare class TaskDefinition_RuntimePlatform {
|
|
|
153537
154058
|
|
|
153538
154059
|
export declare class TaskDefinition_S3FilesVolumeConfiguration {
|
|
153539
154060
|
constructor(props: {
|
|
154061
|
+
/** The full ARN of the S3 Files file system to mount. */
|
|
153540
154062
|
FileSystemArn: string;
|
|
154063
|
+
/** The full ARN of the S3 Files access point to use. If an access point is specified, the root directory value specified in the ``S3FilesVolumeConfiguration`` must either be omitted or set to ``/`` which will enforce the path set on the S3 Files access point. For more information, see [Creating S3 Files access points](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-files-access-points-creating.html). */
|
|
153541
154064
|
AccessPointArn?: string;
|
|
154065
|
+
/** The directory within the Amazon S3 Files file system to mount as the root directory. If this parameter is omitted, the root of the Amazon S3 Files file system will be used. Specifying ``/`` will have the same effect as omitting this parameter.
|
|
154066
|
+
If a S3 Files access point is specified in the ``accessPointArn``, the root directory parameter must either be omitted or set to ``/`` which will enforce the path set on the S3 Files access point. */
|
|
153542
154067
|
RootDirectory?: string;
|
|
154068
|
+
/** The port to use for sending encrypted data between the ECS host and the S3 Files file system. If you do not specify a transit encryption port, it will use the port selection strategy that the Amazon S3 Files mount helper uses. For more information, see [S3 Files mount helper](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-files-mounting.html). */
|
|
153543
154069
|
TransitEncryptionPort?: number;
|
|
153544
154070
|
});
|
|
153545
154071
|
}
|
|
@@ -153627,8 +154153,10 @@ export declare class TaskDefinition_Volume {
|
|
|
153627
154153
|
/** The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.
|
|
153628
154154
|
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.
|
|
153629
154155
|
For all other types of volumes, this name is referenced in the ``sourceVolume`` parameter of the ``mountPoints`` object in the container definition.
|
|
153630
|
-
When a volume is using the ``efsVolumeConfiguration``, the name is required.
|
|
154156
|
+
When a volume is using the ``efsVolumeConfiguration``, the name is required.
|
|
154157
|
+
When a volume is using the ``s3filesVolumeConfiguration``, the name is required. */
|
|
153631
154158
|
Name?: string;
|
|
154159
|
+
/** This parameter is specified when you use an Amazon S3 Files file system for task storage. */
|
|
153632
154160
|
S3FilesVolumeConfiguration?: TaskDefinition_S3FilesVolumeConfiguration;
|
|
153633
154161
|
});
|
|
153634
154162
|
}
|
|
@@ -167057,6 +167585,8 @@ export type DevOpsGuruNotificationChannel_NotificationMessageType =
|
|
|
167057
167585
|
| "NEW_RECOMMENDATION"
|
|
167058
167586
|
| "SEVERITY_UPGRADED";
|
|
167059
167587
|
|
|
167588
|
+
export type Dictionary_DictionaryLanguage = "deu" | "eng" | "fra" | "ita" | "por" | "spa";
|
|
167589
|
+
|
|
167060
167590
|
export type DnsView_DnsSecValidationType = "DISABLED" | "ENABLED";
|
|
167061
167591
|
|
|
167062
167592
|
export type DnsView_EdnsClientSubnetType = "DISABLED" | "ENABLED";
|
|
@@ -167160,6 +167690,19 @@ export type FeatureGroup_Unit = "Days" | "Hours" | "Minutes" | "Seconds" | "Week
|
|
|
167160
167690
|
|
|
167161
167691
|
export type Feed_OutputStatus = "DISABLED" | "ENABLED";
|
|
167162
167692
|
|
|
167693
|
+
export type Feed_ProfanityFilterMode = "CENSOR" | "DISABLED" | "DROP";
|
|
167694
|
+
|
|
167695
|
+
export type Feed_TranscriptionLanguage =
|
|
167696
|
+
| "deu"
|
|
167697
|
+
| "eng"
|
|
167698
|
+
| "eng-au"
|
|
167699
|
+
| "eng-gb"
|
|
167700
|
+
| "eng-us"
|
|
167701
|
+
| "fra"
|
|
167702
|
+
| "ita"
|
|
167703
|
+
| "por"
|
|
167704
|
+
| "spa";
|
|
167705
|
+
|
|
167163
167706
|
export type FHIRDatastore_DatastoreStatus = "ACTIVE" | "CREATING" | "DELETED" | "DELETING";
|
|
167164
167707
|
|
|
167165
167708
|
export type FHIRDatastore_DatastoreTypeVersion = "R4";
|
|
@@ -170417,6 +170960,12 @@ export type SageMakerDomain_AppInstanceType =
|
|
|
170417
170960
|
| "ml.g6e.4xlarge"
|
|
170418
170961
|
| "ml.g6e.8xlarge"
|
|
170419
170962
|
| "ml.g6e.xlarge"
|
|
170963
|
+
| "ml.g7e.12xlarge"
|
|
170964
|
+
| "ml.g7e.24xlarge"
|
|
170965
|
+
| "ml.g7e.2xlarge"
|
|
170966
|
+
| "ml.g7e.48xlarge"
|
|
170967
|
+
| "ml.g7e.4xlarge"
|
|
170968
|
+
| "ml.g7e.8xlarge"
|
|
170420
170969
|
| "ml.geospatial.interactive"
|
|
170421
170970
|
| "ml.m5.12xlarge"
|
|
170422
170971
|
| "ml.m5.16xlarge"
|