@intentius/chant-lexicon-aws 0.4.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 +327 -22
- package/dist/types/index.d.ts +576 -43
- package/package.json +1 -1
- package/src/generated/index.d.ts +576 -43
- package/src/generated/index.ts +45 -4
- package/src/generated/lexicon-aws.json +327 -22
package/dist/types/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
|
}
|
|
@@ -20420,6 +20454,44 @@ export declare class LocationSMB {
|
|
|
20420
20454
|
readonly ManagedSecretConfig: LocationSMB_ManagedSecretConfig;
|
|
20421
20455
|
}
|
|
20422
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
|
+
|
|
20423
20495
|
export declare class LogAnomalyDetectionIntegration {
|
|
20424
20496
|
constructor(props: {
|
|
20425
20497
|
AccountId?: string;
|
|
@@ -22994,6 +23066,25 @@ export declare class NeptuneEventSubscription {
|
|
|
22994
23066
|
}, attributes?: CFResourceAttributes);
|
|
22995
23067
|
}
|
|
22996
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
|
+
|
|
22997
23088
|
export declare class NeptuneGraphGraph {
|
|
22998
23089
|
constructor(props: {
|
|
22999
23090
|
/** Memory for the Graph. */
|
|
@@ -25384,6 +25475,8 @@ export declare class PlaybackConfiguration {
|
|
|
25384
25475
|
ConfigurationAliases?: any;
|
|
25385
25476
|
/** The configuration for DASH content. */
|
|
25386
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>;
|
|
25387
25480
|
/** The configuration for HLS content. */
|
|
25388
25481
|
HlsConfiguration?: PlaybackConfiguration_HlsConfiguration;
|
|
25389
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. */
|
|
@@ -30247,6 +30340,7 @@ export declare class SageMakerCluster {
|
|
|
30247
30340
|
NodeRecovery?: "Automatic" | "None";
|
|
30248
30341
|
Orchestrator?: Record<string, unknown>;
|
|
30249
30342
|
RestrictedInstanceGroups?: any;
|
|
30343
|
+
RestrictedInstanceGroupsConfig?: SageMakerCluster_RestrictedInstanceGroupsConfig;
|
|
30250
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. */
|
|
30251
30345
|
Tags?: SageMakerCluster_Tag[];
|
|
30252
30346
|
TieredStorageConfig?: SageMakerCluster_TieredStorageConfig;
|
|
@@ -32400,6 +32494,8 @@ export declare class SSMAssociation {
|
|
|
32400
32494
|
/** The name of the SSM document. */
|
|
32401
32495
|
Name: string;
|
|
32402
32496
|
ApplyOnlyAtCronInterval?: boolean;
|
|
32497
|
+
/** A role used by association to take actions on your behalf. */
|
|
32498
|
+
AssociationDispatchAssumeRole?: string;
|
|
32403
32499
|
/** Unique identifier of the association. */
|
|
32404
32500
|
AssociationId?: string;
|
|
32405
32501
|
/** The name of the association. */
|
|
@@ -32420,6 +32516,8 @@ export declare class SSMAssociation {
|
|
|
32420
32516
|
ScheduleExpression?: string;
|
|
32421
32517
|
ScheduleOffset?: number;
|
|
32422
32518
|
SyncCompliance?: "AUTO" | "MANUAL";
|
|
32519
|
+
/** A key-value pair to associate with a resource. */
|
|
32520
|
+
Tags?: SSMAssociation_Tag[];
|
|
32423
32521
|
/** The targets that the SSM document sends commands to. */
|
|
32424
32522
|
Targets?: SSMAssociation_Target[];
|
|
32425
32523
|
WaitForSuccessTimeoutSeconds?: number;
|
|
@@ -37905,9 +38003,15 @@ export declare class AccessLog {
|
|
|
37905
38003
|
|
|
37906
38004
|
export declare class AccessLoggingPolicy {
|
|
37907
38005
|
constructor(props: {
|
|
38006
|
+
/** Specifies whether access logs are enabled for the load balancer. */
|
|
37908
38007
|
Enabled: boolean;
|
|
38008
|
+
/** The name of the Amazon S3 bucket where the access logs are stored. */
|
|
37909
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 */
|
|
37910
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. */
|
|
37911
38015
|
S3BucketPrefix?: string;
|
|
37912
38016
|
});
|
|
37913
38017
|
}
|
|
@@ -46201,7 +46305,9 @@ export declare class AppConfigResourceObject {
|
|
|
46201
46305
|
|
|
46202
46306
|
export declare class AppCookieStickinessPolicy {
|
|
46203
46307
|
constructor(props: {
|
|
46308
|
+
/** The name of the application cookie used for stickiness. */
|
|
46204
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. */
|
|
46205
46311
|
PolicyName: string;
|
|
46206
46312
|
});
|
|
46207
46313
|
}
|
|
@@ -49237,6 +49343,13 @@ export declare class Asg {
|
|
|
49237
49343
|
});
|
|
49238
49344
|
}
|
|
49239
49345
|
|
|
49346
|
+
export declare class AspectRatio {
|
|
49347
|
+
constructor(props: {
|
|
49348
|
+
Height: number;
|
|
49349
|
+
Width: number;
|
|
49350
|
+
});
|
|
49351
|
+
}
|
|
49352
|
+
|
|
49240
49353
|
export declare class AssertionAttributes {
|
|
49241
49354
|
constructor(props: {
|
|
49242
49355
|
/** Name of the attribute within the SAML assert to use as the users email in Grafana. */
|
|
@@ -58501,6 +58614,7 @@ export declare class CentralizationRuleDestination {
|
|
|
58501
58614
|
Region: string;
|
|
58502
58615
|
Account?: string;
|
|
58503
58616
|
DestinationLogsConfiguration?: OrganizationCentralizationRule_DestinationLogsConfiguration;
|
|
58617
|
+
DestinationMetricsConfiguration?: OrganizationCentralizationRule_DestinationMetricsConfiguration;
|
|
58504
58618
|
});
|
|
58505
58619
|
}
|
|
58506
58620
|
|
|
@@ -58509,6 +58623,7 @@ export declare class CentralizationRuleSource {
|
|
|
58509
58623
|
Regions: any;
|
|
58510
58624
|
Scope?: string;
|
|
58511
58625
|
SourceLogsConfiguration?: OrganizationCentralizationRule_SourceLogsConfiguration;
|
|
58626
|
+
SourceMetricsConfiguration?: OrganizationCentralizationRule_SourceMetricsConfiguration;
|
|
58512
58627
|
});
|
|
58513
58628
|
}
|
|
58514
58629
|
|
|
@@ -60758,7 +60873,6 @@ export declare class ClusterParameterGroup_Tag {
|
|
|
60758
60873
|
|
|
60759
60874
|
export declare class ClusterRestrictedInstanceGroup {
|
|
60760
60875
|
constructor(props: {
|
|
60761
|
-
EnvironmentConfig: SageMakerCluster_EnvironmentConfig;
|
|
60762
60876
|
ExecutionRole: string;
|
|
60763
60877
|
/** The number of instances you specified to add to the restricted instance group of a SageMaker HyperPod cluster. */
|
|
60764
60878
|
InstanceCount: number;
|
|
@@ -60766,6 +60880,7 @@ export declare class ClusterRestrictedInstanceGroup {
|
|
|
60766
60880
|
InstanceType: string;
|
|
60767
60881
|
/** The number of instances that are currently in the restricted instance group of a SageMaker HyperPod cluster. */
|
|
60768
60882
|
CurrentCount?: number;
|
|
60883
|
+
EnvironmentConfig?: SageMakerCluster_EnvironmentConfig;
|
|
60769
60884
|
InstanceStorageConfigs?: any;
|
|
60770
60885
|
OnStartDeepHealthChecks?: any;
|
|
60771
60886
|
OverrideVpcConfig?: SageMakerCluster_VpcConfig;
|
|
@@ -64463,7 +64578,9 @@ export declare class ConnectionAliasAssociation {
|
|
|
64463
64578
|
|
|
64464
64579
|
export declare class ConnectionDrainingPolicy {
|
|
64465
64580
|
constructor(props: {
|
|
64581
|
+
/** Specifies whether connection draining is enabled for the load balancer. */
|
|
64466
64582
|
Enabled: boolean;
|
|
64583
|
+
/** The maximum time, in seconds, to keep the existing connections open before deregistering the instances. */
|
|
64467
64584
|
Timeout?: number;
|
|
64468
64585
|
});
|
|
64469
64586
|
}
|
|
@@ -64598,6 +64715,7 @@ export declare class ConnectionPortRange {
|
|
|
64598
64715
|
|
|
64599
64716
|
export declare class ConnectionSettings {
|
|
64600
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. */
|
|
64601
64719
|
IdleTimeout: number;
|
|
64602
64720
|
});
|
|
64603
64721
|
}
|
|
@@ -75421,6 +75539,12 @@ export declare class DestinationLogsConfiguration {
|
|
|
75421
75539
|
});
|
|
75422
75540
|
}
|
|
75423
75541
|
|
|
75542
|
+
export declare class DestinationMetricsConfiguration {
|
|
75543
|
+
constructor(props: {
|
|
75544
|
+
BackupConfiguration?: OrganizationCentralizationRule_MetricsBackupConfiguration;
|
|
75545
|
+
});
|
|
75546
|
+
}
|
|
75547
|
+
|
|
75424
75548
|
export declare class DestinationPolicy {
|
|
75425
75549
|
constructor(props: {
|
|
75426
75550
|
/** The name of the delivery destination to assign this policy to */
|
|
@@ -80311,13 +80435,6 @@ export declare class EFSAccessPoint_RootDirectory {
|
|
|
80311
80435
|
});
|
|
80312
80436
|
}
|
|
80313
80437
|
|
|
80314
|
-
export declare class EfsAccessPointConfiguration {
|
|
80315
|
-
constructor(props: {
|
|
80316
|
-
AccessPointArn: string;
|
|
80317
|
-
MountPath: string;
|
|
80318
|
-
});
|
|
80319
|
-
}
|
|
80320
|
-
|
|
80321
80438
|
export declare class EFSAuthorizationConfig {
|
|
80322
80439
|
constructor(props: {
|
|
80323
80440
|
AccessPointId?: string;
|
|
@@ -81209,74 +81326,129 @@ export declare class ELBInfo {
|
|
|
81209
81326
|
|
|
81210
81327
|
export declare class ElbLoadBalancer_AccessLoggingPolicy {
|
|
81211
81328
|
constructor(props: {
|
|
81329
|
+
/** Specifies whether access logs are enabled for the load balancer. */
|
|
81212
81330
|
Enabled: boolean;
|
|
81331
|
+
/** The name of the Amazon S3 bucket where the access logs are stored. */
|
|
81213
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 */
|
|
81214
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. */
|
|
81215
81338
|
S3BucketPrefix?: string;
|
|
81216
81339
|
});
|
|
81217
81340
|
}
|
|
81218
81341
|
|
|
81219
81342
|
export declare class ElbLoadBalancer_AppCookieStickinessPolicy {
|
|
81220
81343
|
constructor(props: {
|
|
81344
|
+
/** The name of the application cookie used for stickiness. */
|
|
81221
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. */
|
|
81222
81347
|
PolicyName: string;
|
|
81223
81348
|
});
|
|
81224
81349
|
}
|
|
81225
81350
|
|
|
81226
81351
|
export declare class ElbLoadBalancer_ConnectionDrainingPolicy {
|
|
81227
81352
|
constructor(props: {
|
|
81353
|
+
/** Specifies whether connection draining is enabled for the load balancer. */
|
|
81228
81354
|
Enabled: boolean;
|
|
81355
|
+
/** The maximum time, in seconds, to keep the existing connections open before deregistering the instances. */
|
|
81229
81356
|
Timeout?: number;
|
|
81230
81357
|
});
|
|
81231
81358
|
}
|
|
81232
81359
|
|
|
81233
81360
|
export declare class ElbLoadBalancer_ConnectionSettings {
|
|
81234
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. */
|
|
81235
81363
|
IdleTimeout: number;
|
|
81236
81364
|
});
|
|
81237
81365
|
}
|
|
81238
81366
|
|
|
81239
81367
|
export declare class ElbLoadBalancer_HealthCheck {
|
|
81240
81368
|
constructor(props: {
|
|
81369
|
+
/** The number of consecutive health checks successes required before moving the instance to the `Healthy` state. */
|
|
81241
81370
|
HealthyThreshold: string;
|
|
81371
|
+
/** The approximate interval, in seconds, between health checks of an individual instance. */
|
|
81242
81372
|
Interval: string;
|
|
81373
|
+
/** The instance being checked. */
|
|
81243
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. */
|
|
81244
81378
|
Timeout: string;
|
|
81379
|
+
/** The number of consecutive health check failures required before moving the instance to the `Unhealthy` state. */
|
|
81245
81380
|
UnhealthyThreshold: string;
|
|
81246
81381
|
});
|
|
81247
81382
|
}
|
|
81248
81383
|
|
|
81249
81384
|
export declare class ElbLoadBalancer_LBCookieStickinessPolicy {
|
|
81250
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. */
|
|
81251
81387
|
CookieExpirationPeriod?: string;
|
|
81388
|
+
/** The name of the policy. This name must be unique within the set of policies for this load balancer. */
|
|
81252
81389
|
PolicyName?: string;
|
|
81253
81390
|
});
|
|
81254
81391
|
}
|
|
81255
81392
|
|
|
81256
81393
|
export declare class ElbLoadBalancer_Listeners {
|
|
81257
81394
|
constructor(props: {
|
|
81395
|
+
/** The port on which the instance is listening. */
|
|
81258
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. */
|
|
81259
81398
|
LoadBalancerPort: string;
|
|
81399
|
+
/** The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL. */
|
|
81260
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. */
|
|
81261
81408
|
InstanceProtocol?: string;
|
|
81409
|
+
/** The names of the policies to associate with the listener. */
|
|
81262
81410
|
PolicyNames?: string[];
|
|
81411
|
+
/** The Amazon Resource Name (ARN) of the server certificate. */
|
|
81263
81412
|
SSLCertificateId?: string;
|
|
81264
81413
|
});
|
|
81265
81414
|
}
|
|
81266
81415
|
|
|
81267
81416
|
export declare class ElbLoadBalancer_Policies {
|
|
81268
81417
|
constructor(props: {
|
|
81269
|
-
|
|
81418
|
+
/** The policy attributes. */
|
|
81419
|
+
Attributes: ElbLoadBalancer_PolicyItem[];
|
|
81420
|
+
/** The name of the policy. */
|
|
81270
81421
|
PolicyName: string;
|
|
81422
|
+
/** The name of the policy type. */
|
|
81271
81423
|
PolicyType: string;
|
|
81424
|
+
/** The instance ports for the policy. Required only for some policy types. */
|
|
81272
81425
|
InstancePorts?: string[];
|
|
81426
|
+
/** The load balancer ports for the policy. Required only for some policy types. */
|
|
81273
81427
|
LoadBalancerPorts?: string[];
|
|
81274
81428
|
});
|
|
81275
81429
|
}
|
|
81276
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
|
+
|
|
81277
81447
|
export declare class ElbLoadBalancer_Tag {
|
|
81278
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 `-`. */
|
|
81279
81450
|
Key: string;
|
|
81451
|
+
/** The value for the tag. You can specify a value that's 1 to 256 characters in length. */
|
|
81280
81452
|
Value: string;
|
|
81281
81453
|
});
|
|
81282
81454
|
}
|
|
@@ -86200,6 +86372,13 @@ export declare class FederationParameters {
|
|
|
86200
86372
|
});
|
|
86201
86373
|
}
|
|
86202
86374
|
|
|
86375
|
+
export declare class Feed_AspectRatio {
|
|
86376
|
+
constructor(props: {
|
|
86377
|
+
Height: number;
|
|
86378
|
+
Width: number;
|
|
86379
|
+
});
|
|
86380
|
+
}
|
|
86381
|
+
|
|
86203
86382
|
export declare class Feed_ClippingConfig {
|
|
86204
86383
|
constructor(props: {
|
|
86205
86384
|
CallbackMetadata?: string;
|
|
@@ -86215,6 +86394,15 @@ export declare class Feed_GetOutput {
|
|
|
86215
86394
|
});
|
|
86216
86395
|
}
|
|
86217
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
|
+
|
|
86218
86406
|
export declare class FeedbackAttributes {
|
|
86219
86407
|
constructor(props: {
|
|
86220
86408
|
/** If the value is true, you receive email notifications when bounce or complaint events occur */
|
|
@@ -91916,12 +92104,23 @@ export declare class Harness_CustomJWTAuthorizerConfiguration {
|
|
|
91916
92104
|
AllowedClients?: string[];
|
|
91917
92105
|
AllowedScopes?: string[];
|
|
91918
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;
|
|
91919
92116
|
});
|
|
91920
92117
|
}
|
|
91921
92118
|
|
|
91922
92119
|
export declare class Harness_FilesystemConfiguration {
|
|
91923
92120
|
constructor(props: {
|
|
91924
|
-
|
|
92121
|
+
EfsAccessPoint?: Harness_EfsAccessPointConfiguration;
|
|
92122
|
+
S3FilesAccessPoint?: Harness_S3FilesAccessPointConfiguration;
|
|
92123
|
+
SessionStorage?: Harness_SessionStorageConfiguration;
|
|
91925
92124
|
});
|
|
91926
92125
|
}
|
|
91927
92126
|
|
|
@@ -91955,8 +92154,10 @@ export declare class Harness_HarnessAgentCoreMemoryConfiguration {
|
|
|
91955
92154
|
|
|
91956
92155
|
export declare class Harness_HarnessAgentCoreMemoryRetrievalConfig {
|
|
91957
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. */
|
|
91958
92158
|
RelevanceScore?: number;
|
|
91959
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. */
|
|
91960
92161
|
TopK?: number;
|
|
91961
92162
|
});
|
|
91962
92163
|
}
|
|
@@ -91978,6 +92179,9 @@ export declare class Harness_HarnessAgentCoreRuntimeEnvironment {
|
|
|
91978
92179
|
export declare class Harness_HarnessBedrockModelConfig {
|
|
91979
92180
|
constructor(props: {
|
|
91980
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";
|
|
91981
92185
|
MaxTokens?: number;
|
|
91982
92186
|
Temperature?: number;
|
|
91983
92187
|
TopP?: number;
|
|
@@ -92023,6 +92227,19 @@ export declare class Harness_HarnessInlineFunctionConfig {
|
|
|
92023
92227
|
});
|
|
92024
92228
|
}
|
|
92025
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
|
+
|
|
92026
92243
|
export declare class Harness_HarnessMemoryConfiguration {
|
|
92027
92244
|
constructor(props: {
|
|
92028
92245
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
@@ -92033,6 +92250,7 @@ export declare class Harness_HarnessModelConfiguration {
|
|
|
92033
92250
|
constructor(props: {
|
|
92034
92251
|
BedrockModelConfig?: Harness_HarnessBedrockModelConfig;
|
|
92035
92252
|
GeminiModelConfig?: Harness_HarnessGeminiModelConfig;
|
|
92253
|
+
LiteLlmModelConfig?: Harness_HarnessLiteLlmModelConfig;
|
|
92036
92254
|
OpenAiModelConfig?: Harness_HarnessOpenAiModelConfig;
|
|
92037
92255
|
});
|
|
92038
92256
|
}
|
|
@@ -92041,6 +92259,9 @@ export declare class Harness_HarnessOpenAiModelConfig {
|
|
|
92041
92259
|
constructor(props: {
|
|
92042
92260
|
ApiKeyArn: string;
|
|
92043
92261
|
ModelId: string;
|
|
92262
|
+
/** Provider-specific parameters passed through to the model provider unchanged. */
|
|
92263
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92264
|
+
ApiFormat?: "chat_completions" | "responses";
|
|
92044
92265
|
MaxTokens?: number;
|
|
92045
92266
|
Temperature?: number;
|
|
92046
92267
|
TopP?: number;
|
|
@@ -92056,8 +92277,36 @@ export declare class Harness_HarnessRemoteMcpConfig {
|
|
|
92056
92277
|
|
|
92057
92278
|
export declare class Harness_HarnessSkill {
|
|
92058
92279
|
constructor(props: {
|
|
92280
|
+
Git?: Harness_HarnessSkillGitSource;
|
|
92059
92281
|
/** The filesystem path to the skill definition. */
|
|
92060
|
-
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;
|
|
92061
92310
|
});
|
|
92062
92311
|
}
|
|
92063
92312
|
|
|
@@ -92121,6 +92370,17 @@ export declare class Harness_LifecycleConfiguration {
|
|
|
92121
92370
|
});
|
|
92122
92371
|
}
|
|
92123
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
|
+
|
|
92124
92384
|
export declare class Harness_NetworkConfiguration {
|
|
92125
92385
|
constructor(props: {
|
|
92126
92386
|
NetworkMode: "PUBLIC" | "VPC";
|
|
@@ -92138,6 +92398,33 @@ export declare class Harness_OAuthCredentialProvider {
|
|
|
92138
92398
|
});
|
|
92139
92399
|
}
|
|
92140
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
|
+
|
|
92141
92428
|
export declare class Harness_SessionStorageConfiguration {
|
|
92142
92429
|
constructor(props: {
|
|
92143
92430
|
MountPath: string;
|
|
@@ -92188,8 +92475,10 @@ export declare class HarnessAgentCoreMemoryConfiguration {
|
|
|
92188
92475
|
|
|
92189
92476
|
export declare class HarnessAgentCoreMemoryRetrievalConfig {
|
|
92190
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. */
|
|
92191
92479
|
RelevanceScore?: number;
|
|
92192
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. */
|
|
92193
92482
|
TopK?: number;
|
|
92194
92483
|
});
|
|
92195
92484
|
}
|
|
@@ -92211,6 +92500,9 @@ export declare class HarnessAgentCoreRuntimeEnvironment {
|
|
|
92211
92500
|
export declare class HarnessBedrockModelConfig {
|
|
92212
92501
|
constructor(props: {
|
|
92213
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";
|
|
92214
92506
|
MaxTokens?: number;
|
|
92215
92507
|
Temperature?: number;
|
|
92216
92508
|
TopP?: number;
|
|
@@ -92256,6 +92548,19 @@ export declare class HarnessInlineFunctionConfig {
|
|
|
92256
92548
|
});
|
|
92257
92549
|
}
|
|
92258
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
|
+
|
|
92259
92564
|
export declare class HarnessMemoryConfiguration {
|
|
92260
92565
|
constructor(props: {
|
|
92261
92566
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
@@ -92266,6 +92571,7 @@ export declare class HarnessModelConfiguration {
|
|
|
92266
92571
|
constructor(props: {
|
|
92267
92572
|
BedrockModelConfig?: Harness_HarnessBedrockModelConfig;
|
|
92268
92573
|
GeminiModelConfig?: Harness_HarnessGeminiModelConfig;
|
|
92574
|
+
LiteLlmModelConfig?: Harness_HarnessLiteLlmModelConfig;
|
|
92269
92575
|
OpenAiModelConfig?: Harness_HarnessOpenAiModelConfig;
|
|
92270
92576
|
});
|
|
92271
92577
|
}
|
|
@@ -92274,6 +92580,9 @@ export declare class HarnessOpenAiModelConfig {
|
|
|
92274
92580
|
constructor(props: {
|
|
92275
92581
|
ApiKeyArn: string;
|
|
92276
92582
|
ModelId: string;
|
|
92583
|
+
/** Provider-specific parameters passed through to the model provider unchanged. */
|
|
92584
|
+
AdditionalParams?: Record<string, unknown>;
|
|
92585
|
+
ApiFormat?: "chat_completions" | "responses";
|
|
92277
92586
|
MaxTokens?: number;
|
|
92278
92587
|
Temperature?: number;
|
|
92279
92588
|
TopP?: number;
|
|
@@ -92289,8 +92598,36 @@ export declare class HarnessRemoteMcpConfig {
|
|
|
92289
92598
|
|
|
92290
92599
|
export declare class HarnessSkill {
|
|
92291
92600
|
constructor(props: {
|
|
92601
|
+
Git?: Harness_HarnessSkillGitSource;
|
|
92292
92602
|
/** The filesystem path to the skill definition. */
|
|
92293
|
-
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;
|
|
92294
92631
|
});
|
|
92295
92632
|
}
|
|
92296
92633
|
|
|
@@ -101349,7 +101686,6 @@ export declare class LambdaCapacityProvider_InstanceRequirements {
|
|
|
101349
101686
|
|
|
101350
101687
|
export declare class LambdaCapacityProvider_PropagateTagsConfig {
|
|
101351
101688
|
constructor(props: {
|
|
101352
|
-
/** A list of tags to explicitly propagate to managed resources. */
|
|
101353
101689
|
ExplicitTags?: LambdaCapacityProvider_Tag[];
|
|
101354
101690
|
Mode?: LambdaCapacityProvider_PropagateTagsMode;
|
|
101355
101691
|
});
|
|
@@ -101795,7 +102131,7 @@ export declare class LaunchTemplate_CapacityReservationTarget {
|
|
|
101795
102131
|
|
|
101796
102132
|
export declare class LaunchTemplate_ConnectionTrackingSpecification {
|
|
101797
102133
|
constructor(props: {
|
|
101798
|
-
/** 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. */
|
|
101799
102135
|
TcpEstablishedTimeout?: number;
|
|
101800
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. */
|
|
101801
102137
|
UdpStreamTimeout?: number;
|
|
@@ -102720,7 +103056,9 @@ export declare class LayoutSections {
|
|
|
102720
103056
|
|
|
102721
103057
|
export declare class LBCookieStickinessPolicy {
|
|
102722
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. */
|
|
102723
103060
|
CookieExpirationPeriod?: string;
|
|
103061
|
+
/** The name of the policy. This name must be unique within the set of policies for this load balancer. */
|
|
102724
103062
|
PolicyName?: string;
|
|
102725
103063
|
});
|
|
102726
103064
|
}
|
|
@@ -104018,11 +104356,23 @@ export declare class ListenerRule_Transform {
|
|
|
104018
104356
|
|
|
104019
104357
|
export declare class Listeners {
|
|
104020
104358
|
constructor(props: {
|
|
104359
|
+
/** The port on which the instance is listening. */
|
|
104021
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. */
|
|
104022
104362
|
LoadBalancerPort: string;
|
|
104363
|
+
/** The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL. */
|
|
104023
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. */
|
|
104024
104372
|
InstanceProtocol?: string;
|
|
104373
|
+
/** The names of the policies to associate with the listener. */
|
|
104025
104374
|
PolicyNames?: string[];
|
|
104375
|
+
/** The Amazon Resource Name (ARN) of the server certificate. */
|
|
104026
104376
|
SSLCertificateId?: string;
|
|
104027
104377
|
});
|
|
104028
104378
|
}
|
|
@@ -104782,6 +105132,41 @@ export declare class Log {
|
|
|
104782
105132
|
});
|
|
104783
105133
|
}
|
|
104784
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
|
+
|
|
104785
105170
|
export declare class LogConfig {
|
|
104786
105171
|
constructor(props: {
|
|
104787
105172
|
/** The service role that AWS AppSync will assume to publish to Amazon CloudWatch Logs in your account. */
|
|
@@ -106269,16 +106654,6 @@ export declare class ManagedStorageEncryptionConfiguration {
|
|
|
106269
106654
|
});
|
|
106270
106655
|
}
|
|
106271
106656
|
|
|
106272
|
-
export declare class ManagedVpcResource {
|
|
106273
|
-
constructor(props: {
|
|
106274
|
-
EndpointIpAddressType: GatewayTarget_EndpointIpAddressType;
|
|
106275
|
-
SubnetIds: string[];
|
|
106276
|
-
VpcIdentifier: string;
|
|
106277
|
-
RoutingDomain?: string;
|
|
106278
|
-
SecurityGroupIds?: string[];
|
|
106279
|
-
});
|
|
106280
|
-
}
|
|
106281
|
-
|
|
106282
106657
|
export declare class ManagedWordsConfig {
|
|
106283
106658
|
constructor(props: {
|
|
106284
106659
|
Type: Guardrail_ManagedWordsType;
|
|
@@ -111302,6 +111677,12 @@ export declare class Metrics {
|
|
|
111302
111677
|
});
|
|
111303
111678
|
}
|
|
111304
111679
|
|
|
111680
|
+
export declare class MetricsBackupConfiguration {
|
|
111681
|
+
constructor(props: {
|
|
111682
|
+
Region: string;
|
|
111683
|
+
});
|
|
111684
|
+
}
|
|
111685
|
+
|
|
111305
111686
|
export declare class MetricsCollection {
|
|
111306
111687
|
constructor(props: {
|
|
111307
111688
|
/** The frequency at which Amazon EC2 Auto Scaling sends aggregated data to CloudWatch. The only valid value is ``1Minute``. */
|
|
@@ -114811,6 +115192,15 @@ export declare class NeptuneEventSubscription_Tag {
|
|
|
114811
115192
|
});
|
|
114812
115193
|
}
|
|
114813
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
|
+
|
|
114814
115204
|
export declare class NeptuneGlobalDatabaseConfiguration {
|
|
114815
115205
|
constructor(props: {
|
|
114816
115206
|
Behavior: any;
|
|
@@ -118013,6 +118403,7 @@ export declare class OrganizationCentralizationRule_CentralizationRuleDestinatio
|
|
|
118013
118403
|
Region: string;
|
|
118014
118404
|
Account?: string;
|
|
118015
118405
|
DestinationLogsConfiguration?: OrganizationCentralizationRule_DestinationLogsConfiguration;
|
|
118406
|
+
DestinationMetricsConfiguration?: OrganizationCentralizationRule_DestinationMetricsConfiguration;
|
|
118016
118407
|
});
|
|
118017
118408
|
}
|
|
118018
118409
|
|
|
@@ -118021,6 +118412,7 @@ export declare class OrganizationCentralizationRule_CentralizationRuleSource {
|
|
|
118021
118412
|
Regions: any;
|
|
118022
118413
|
Scope?: string;
|
|
118023
118414
|
SourceLogsConfiguration?: OrganizationCentralizationRule_SourceLogsConfiguration;
|
|
118415
|
+
SourceMetricsConfiguration?: OrganizationCentralizationRule_SourceMetricsConfiguration;
|
|
118024
118416
|
});
|
|
118025
118417
|
}
|
|
118026
118418
|
|
|
@@ -118032,6 +118424,12 @@ export declare class OrganizationCentralizationRule_DestinationLogsConfiguration
|
|
|
118032
118424
|
});
|
|
118033
118425
|
}
|
|
118034
118426
|
|
|
118427
|
+
export declare class OrganizationCentralizationRule_DestinationMetricsConfiguration {
|
|
118428
|
+
constructor(props: {
|
|
118429
|
+
BackupConfiguration?: OrganizationCentralizationRule_MetricsBackupConfiguration;
|
|
118430
|
+
});
|
|
118431
|
+
}
|
|
118432
|
+
|
|
118035
118433
|
export declare class OrganizationCentralizationRule_LogGroupNameConfiguration {
|
|
118036
118434
|
constructor(props: {
|
|
118037
118435
|
LogGroupNamePattern: string;
|
|
@@ -118053,6 +118451,12 @@ export declare class OrganizationCentralizationRule_LogsEncryptionConfiguration
|
|
|
118053
118451
|
});
|
|
118054
118452
|
}
|
|
118055
118453
|
|
|
118454
|
+
export declare class OrganizationCentralizationRule_MetricsBackupConfiguration {
|
|
118455
|
+
constructor(props: {
|
|
118456
|
+
Region: string;
|
|
118457
|
+
});
|
|
118458
|
+
}
|
|
118459
|
+
|
|
118056
118460
|
export declare class OrganizationCentralizationRule_SourceLogsConfiguration {
|
|
118057
118461
|
constructor(props: {
|
|
118058
118462
|
EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
|
|
@@ -118061,6 +118465,12 @@ export declare class OrganizationCentralizationRule_SourceLogsConfiguration {
|
|
|
118061
118465
|
});
|
|
118062
118466
|
}
|
|
118063
118467
|
|
|
118468
|
+
export declare class OrganizationCentralizationRule_SourceMetricsConfiguration {
|
|
118469
|
+
constructor(props: {
|
|
118470
|
+
MetricsSelectionCriteria?: string;
|
|
118471
|
+
});
|
|
118472
|
+
}
|
|
118473
|
+
|
|
118064
118474
|
export declare class OrganizationCentralizationRule_Tag {
|
|
118065
118475
|
constructor(props: {
|
|
118066
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 -. */
|
|
@@ -122693,6 +123103,13 @@ export declare class PolicyInformation {
|
|
|
122693
123103
|
});
|
|
122694
123104
|
}
|
|
122695
123105
|
|
|
123106
|
+
export declare class PolicyItem {
|
|
123107
|
+
constructor(props: {
|
|
123108
|
+
Name?: string;
|
|
123109
|
+
Value?: string;
|
|
123110
|
+
});
|
|
123111
|
+
}
|
|
123112
|
+
|
|
122696
123113
|
export declare class PolicyMap {
|
|
122697
123114
|
constructor(props: {
|
|
122698
123115
|
AZ: ResiliencyPolicy_FailurePolicy;
|
|
@@ -123484,6 +123901,20 @@ export declare class PrivateDnsPropertiesMutable {
|
|
|
123484
123901
|
});
|
|
123485
123902
|
}
|
|
123486
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
|
+
|
|
123487
123918
|
export declare class PrivateIpAdd {
|
|
123488
123919
|
constructor(props: {
|
|
123489
123920
|
/** Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary. */
|
|
@@ -124313,7 +124744,6 @@ export declare class PromptVersion_ToolSpecification {
|
|
|
124313
124744
|
|
|
124314
124745
|
export declare class PropagateTagsConfig {
|
|
124315
124746
|
constructor(props: {
|
|
124316
|
-
/** A list of tags to explicitly propagate to managed resources. */
|
|
124317
124747
|
ExplicitTags?: LambdaCapacityProvider_Tag[];
|
|
124318
124748
|
Mode?: LambdaCapacityProvider_PropagateTagsMode;
|
|
124319
124749
|
});
|
|
@@ -139831,6 +140261,12 @@ export declare class RestoreTestingSelection_ProtectedResourceConditions {
|
|
|
139831
140261
|
});
|
|
139832
140262
|
}
|
|
139833
140263
|
|
|
140264
|
+
export declare class RestrictedInstanceGroupsConfig {
|
|
140265
|
+
constructor(props: {
|
|
140266
|
+
SharedEnvironmentConfig: SageMakerCluster_SharedEnvironmentConfig;
|
|
140267
|
+
});
|
|
140268
|
+
}
|
|
140269
|
+
|
|
139834
140270
|
export declare class RestrictedPeriod {
|
|
139835
140271
|
constructor(props: {
|
|
139836
140272
|
EndDate: string;
|
|
@@ -141936,13 +142372,6 @@ export declare class S3FilesAccessPoint_RootDirectory {
|
|
|
141936
142372
|
});
|
|
141937
142373
|
}
|
|
141938
142374
|
|
|
141939
|
-
export declare class S3FilesAccessPointConfiguration {
|
|
141940
|
-
constructor(props: {
|
|
141941
|
-
AccessPointArn: string;
|
|
141942
|
-
MountPath: string;
|
|
141943
|
-
});
|
|
141944
|
-
}
|
|
141945
|
-
|
|
141946
142375
|
export declare class S3FilesFileSystem_ExpirationDataRule {
|
|
141947
142376
|
constructor(props: {
|
|
141948
142377
|
DaysAfterLastAccess: number;
|
|
@@ -142864,7 +143293,6 @@ export declare class SageMakerCluster_ClusterOrchestratorSlurmConfig {
|
|
|
142864
143293
|
|
|
142865
143294
|
export declare class SageMakerCluster_ClusterRestrictedInstanceGroup {
|
|
142866
143295
|
constructor(props: {
|
|
142867
|
-
EnvironmentConfig: SageMakerCluster_EnvironmentConfig;
|
|
142868
143296
|
ExecutionRole: string;
|
|
142869
143297
|
/** The number of instances you specified to add to the restricted instance group of a SageMaker HyperPod cluster. */
|
|
142870
143298
|
InstanceCount: number;
|
|
@@ -142872,6 +143300,7 @@ export declare class SageMakerCluster_ClusterRestrictedInstanceGroup {
|
|
|
142872
143300
|
InstanceType: string;
|
|
142873
143301
|
/** The number of instances that are currently in the restricted instance group of a SageMaker HyperPod cluster. */
|
|
142874
143302
|
CurrentCount?: number;
|
|
143303
|
+
EnvironmentConfig?: SageMakerCluster_EnvironmentConfig;
|
|
142875
143304
|
InstanceStorageConfigs?: any;
|
|
142876
143305
|
OnStartDeepHealthChecks?: any;
|
|
142877
143306
|
OverrideVpcConfig?: SageMakerCluster_VpcConfig;
|
|
@@ -142922,6 +143351,12 @@ export declare class SageMakerCluster_InstanceRequirements {
|
|
|
142922
143351
|
});
|
|
142923
143352
|
}
|
|
142924
143353
|
|
|
143354
|
+
export declare class SageMakerCluster_RestrictedInstanceGroupsConfig {
|
|
143355
|
+
constructor(props: {
|
|
143356
|
+
SharedEnvironmentConfig: SageMakerCluster_SharedEnvironmentConfig;
|
|
143357
|
+
});
|
|
143358
|
+
}
|
|
143359
|
+
|
|
142925
143360
|
export declare class SageMakerCluster_RollingUpdatePolicy {
|
|
142926
143361
|
constructor(props: {
|
|
142927
143362
|
MaximumBatchSize: SageMakerCluster_CapacitySizeConfig;
|
|
@@ -142937,6 +143372,14 @@ export declare class SageMakerCluster_ScheduledUpdateConfig {
|
|
|
142937
143372
|
});
|
|
142938
143373
|
}
|
|
142939
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
|
+
|
|
142940
143383
|
export declare class SageMakerCluster_Tag {
|
|
142941
143384
|
constructor(props: {
|
|
142942
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 -. */
|
|
@@ -144529,6 +144972,21 @@ export declare class ScheduledAudit_Tag {
|
|
|
144529
144972
|
});
|
|
144530
144973
|
}
|
|
144531
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
|
+
|
|
144532
144990
|
export declare class ScheduledUpdateConfig {
|
|
144533
144991
|
constructor(props: {
|
|
144534
144992
|
/** A cron expression that specifies the schedule that SageMaker follows when updating the AMI. */
|
|
@@ -146098,6 +146556,12 @@ export declare class SelfManagedKafkaEventSourceConfig {
|
|
|
146098
146556
|
});
|
|
146099
146557
|
}
|
|
146100
146558
|
|
|
146559
|
+
export declare class SelfManagedLatticeResource {
|
|
146560
|
+
constructor(props: {
|
|
146561
|
+
ResourceConfigurationIdentifier: string;
|
|
146562
|
+
});
|
|
146563
|
+
}
|
|
146564
|
+
|
|
146101
146565
|
export declare class SelfManagedMode {
|
|
146102
146566
|
constructor(props: {
|
|
146103
146567
|
/** The ARN of the Resource Configuration. */
|
|
@@ -147668,6 +148132,14 @@ export declare class SharedColumnSemanticMetadata {
|
|
|
147668
148132
|
});
|
|
147669
148133
|
}
|
|
147670
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
|
+
|
|
147671
148143
|
export declare class SharePointConfiguration {
|
|
147672
148144
|
constructor(props: {
|
|
147673
148145
|
SecretArn: string;
|
|
@@ -149149,6 +149621,12 @@ export declare class SourceLogsConfiguration {
|
|
|
149149
149621
|
});
|
|
149150
149622
|
}
|
|
149151
149623
|
|
|
149624
|
+
export declare class SourceMetricsConfiguration {
|
|
149625
|
+
constructor(props: {
|
|
149626
|
+
MetricsSelectionCriteria?: string;
|
|
149627
|
+
});
|
|
149628
|
+
}
|
|
149629
|
+
|
|
149152
149630
|
export declare class SourceMonitoringConfig {
|
|
149153
149631
|
constructor(props: {
|
|
149154
149632
|
/** Contains the settings for audio stream metrics monitoring. */
|
|
@@ -149178,6 +149656,15 @@ export declare class SourceResource {
|
|
|
149178
149656
|
});
|
|
149179
149657
|
}
|
|
149180
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
|
+
|
|
149181
149668
|
export declare class SourceSegment {
|
|
149182
149669
|
constructor(props: {
|
|
149183
149670
|
SegmentDefinitionName?: string;
|
|
@@ -150254,6 +150741,15 @@ export declare class SSMAssociation_S3OutputLocation {
|
|
|
150254
150741
|
});
|
|
150255
150742
|
}
|
|
150256
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
|
+
|
|
150257
150753
|
export declare class SSMAssociation_Target {
|
|
150258
150754
|
constructor(props: {
|
|
150259
150755
|
Key: string;
|
|
@@ -151847,6 +152343,15 @@ export declare class SubstitutionValue {
|
|
|
151847
152343
|
});
|
|
151848
152344
|
}
|
|
151849
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
|
+
|
|
151850
152355
|
export declare class SuccessConditions {
|
|
151851
152356
|
constructor(props: {
|
|
151852
152357
|
Conditions?: CodePipelinePipeline_Condition[];
|
|
@@ -153157,7 +153662,7 @@ export declare class TaskDefinition_ContainerDefinition {
|
|
|
153157
153662
|
ReadonlyRootFilesystem?: boolean;
|
|
153158
153663
|
/** The private repository authentication credentials to use. */
|
|
153159
153664
|
RepositoryCredentials?: TaskDefinition_RepositoryCredentials;
|
|
153160
|
-
/** 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. */
|
|
153161
153666
|
ResourceRequirements?: TaskDefinition_ResourceRequirement[];
|
|
153162
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*. */
|
|
153163
153668
|
RestartPolicy?: TaskDefinition_RestartPolicy;
|
|
@@ -153400,8 +153905,7 @@ export declare class TaskDefinition_LinuxParameters {
|
|
|
153400
153905
|
If you're using tasks that use the Fargate launch type, the ``swappiness`` parameter isn't supported.
|
|
153401
153906
|
If you're using tasks on Amazon Linux 2023 the ``swappiness`` parameter isn't supported. */
|
|
153402
153907
|
Swappiness?: number;
|
|
153403
|
-
/** The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the ``--tmpfs`` option to docker run.
|
|
153404
|
-
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. */
|
|
153405
153909
|
Tmpfs?: TaskDefinition_Tmpfs[];
|
|
153406
153910
|
});
|
|
153407
153911
|
}
|
|
@@ -153524,7 +154028,8 @@ export declare class TaskDefinition_ResourceRequirement {
|
|
|
153524
154028
|
/** The type of resource to assign to a container. */
|
|
153525
154029
|
Type: string;
|
|
153526
154030
|
/** The value for the specified resource type.
|
|
153527
|
-
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.
|
|
153528
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. */
|
|
153529
154034
|
Value: string;
|
|
153530
154035
|
});
|
|
@@ -153553,9 +154058,14 @@ export declare class TaskDefinition_RuntimePlatform {
|
|
|
153553
154058
|
|
|
153554
154059
|
export declare class TaskDefinition_S3FilesVolumeConfiguration {
|
|
153555
154060
|
constructor(props: {
|
|
154061
|
+
/** The full ARN of the S3 Files file system to mount. */
|
|
153556
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). */
|
|
153557
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. */
|
|
153558
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). */
|
|
153559
154069
|
TransitEncryptionPort?: number;
|
|
153560
154070
|
});
|
|
153561
154071
|
}
|
|
@@ -153643,8 +154153,10 @@ export declare class TaskDefinition_Volume {
|
|
|
153643
154153
|
/** The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed.
|
|
153644
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.
|
|
153645
154155
|
For all other types of volumes, this name is referenced in the ``sourceVolume`` parameter of the ``mountPoints`` object in the container definition.
|
|
153646
|
-
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. */
|
|
153647
154158
|
Name?: string;
|
|
154159
|
+
/** This parameter is specified when you use an Amazon S3 Files file system for task storage. */
|
|
153648
154160
|
S3FilesVolumeConfiguration?: TaskDefinition_S3FilesVolumeConfiguration;
|
|
153649
154161
|
});
|
|
153650
154162
|
}
|
|
@@ -167073,6 +167585,8 @@ export type DevOpsGuruNotificationChannel_NotificationMessageType =
|
|
|
167073
167585
|
| "NEW_RECOMMENDATION"
|
|
167074
167586
|
| "SEVERITY_UPGRADED";
|
|
167075
167587
|
|
|
167588
|
+
export type Dictionary_DictionaryLanguage = "deu" | "eng" | "fra" | "ita" | "por" | "spa";
|
|
167589
|
+
|
|
167076
167590
|
export type DnsView_DnsSecValidationType = "DISABLED" | "ENABLED";
|
|
167077
167591
|
|
|
167078
167592
|
export type DnsView_EdnsClientSubnetType = "DISABLED" | "ENABLED";
|
|
@@ -167176,6 +167690,19 @@ export type FeatureGroup_Unit = "Days" | "Hours" | "Minutes" | "Seconds" | "Week
|
|
|
167176
167690
|
|
|
167177
167691
|
export type Feed_OutputStatus = "DISABLED" | "ENABLED";
|
|
167178
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
|
+
|
|
167179
167706
|
export type FHIRDatastore_DatastoreStatus = "ACTIVE" | "CREATING" | "DELETED" | "DELETING";
|
|
167180
167707
|
|
|
167181
167708
|
export type FHIRDatastore_DatastoreTypeVersion = "R4";
|
|
@@ -170433,6 +170960,12 @@ export type SageMakerDomain_AppInstanceType =
|
|
|
170433
170960
|
| "ml.g6e.4xlarge"
|
|
170434
170961
|
| "ml.g6e.8xlarge"
|
|
170435
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"
|
|
170436
170969
|
| "ml.geospatial.interactive"
|
|
170437
170970
|
| "ml.m5.12xlarge"
|
|
170438
170971
|
| "ml.m5.16xlarge"
|