@intentius/chant-lexicon-aws 0.0.18 → 0.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +7 -6
- package/dist/manifest.json +1 -1
- package/dist/meta.json +1016 -239
- package/dist/rules/ext001.ts +4 -0
- package/{src/skills/chant-eks.md → dist/skills/chant-aws-eks.md} +5 -2
- package/dist/skills/chant-aws.md +4 -4
- package/dist/types/index.d.ts +919 -313
- package/package.json +20 -2
- package/src/composites/alb-shared.ts +14 -7
- package/src/composites/composites.test.ts +86 -2
- package/src/composites/fargate-alb.ts +24 -14
- package/src/composites/fargate-service.ts +16 -9
- package/src/composites/lambda-api.ts +7 -3
- package/src/composites/lambda-dynamodb.ts +8 -3
- package/src/composites/lambda-eventbridge.ts +10 -5
- package/src/composites/lambda-function.ts +10 -5
- package/src/composites/lambda-s3.ts +8 -3
- package/src/composites/lambda-sns.ts +13 -7
- package/src/composites/lambda-sqs.ts +12 -6
- package/src/composites/rds-instance.ts +15 -8
- package/src/composites/scheduled-lambda.ts +10 -5
- package/src/composites/vpc-default.ts +81 -30
- package/src/generated/index.d.ts +919 -313
- package/src/generated/index.ts +78 -15
- package/src/generated/lexicon-aws.json +1016 -239
- package/src/lint/post-synth/ext001.ts +4 -0
- package/src/plugin.ts +175 -574
- package/src/skills/chant-aws-eks.md +178 -0
- package/src/skills/chant-aws.md +430 -0
package/src/generated/index.d.ts
CHANGED
|
@@ -176,6 +176,52 @@ export declare class AccessPointPolicy {
|
|
|
176
176
|
}, attributes?: CFResourceAttributes);
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
+
export declare class AccessSource {
|
|
180
|
+
constructor(props: {
|
|
181
|
+
Cidr: string;
|
|
182
|
+
DnsViewId: string;
|
|
183
|
+
Protocol: AccessSource_DnsProtocol;
|
|
184
|
+
AccessSourceId?: string;
|
|
185
|
+
Arn?: string;
|
|
186
|
+
ClientToken?: string;
|
|
187
|
+
CreatedAt?: string;
|
|
188
|
+
IpAddressType?: AccessSource_IpAddressType;
|
|
189
|
+
Name?: string;
|
|
190
|
+
Status?: AccessSource_CRResourceStatus;
|
|
191
|
+
Tags?: AccessSource_Tag[];
|
|
192
|
+
UpdatedAt?: string;
|
|
193
|
+
}, attributes?: CFResourceAttributes);
|
|
194
|
+
readonly AccessSourceId: string;
|
|
195
|
+
readonly Arn: string;
|
|
196
|
+
readonly CreatedAt: string;
|
|
197
|
+
readonly Status: AccessSource_CRResourceStatus;
|
|
198
|
+
readonly UpdatedAt: string;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export declare class AccessToken {
|
|
202
|
+
constructor(props: {
|
|
203
|
+
DnsViewId: string;
|
|
204
|
+
AccessTokenId?: string;
|
|
205
|
+
Arn?: string;
|
|
206
|
+
ClientToken?: string;
|
|
207
|
+
CreatedAt?: string;
|
|
208
|
+
ExpiresAt?: string;
|
|
209
|
+
GlobalResolverId?: string;
|
|
210
|
+
Name?: string;
|
|
211
|
+
Status?: AccessToken_TokenStatus;
|
|
212
|
+
Tags?: AccessToken_Tag[];
|
|
213
|
+
UpdatedAt?: string;
|
|
214
|
+
Value?: string;
|
|
215
|
+
}, attributes?: CFResourceAttributes);
|
|
216
|
+
readonly AccessTokenId: string;
|
|
217
|
+
readonly Arn: string;
|
|
218
|
+
readonly CreatedAt: string;
|
|
219
|
+
readonly GlobalResolverId: string;
|
|
220
|
+
readonly Status: AccessToken_TokenStatus;
|
|
221
|
+
readonly UpdatedAt: string;
|
|
222
|
+
readonly Value: string;
|
|
223
|
+
}
|
|
224
|
+
|
|
179
225
|
export declare class AccountAlias {
|
|
180
226
|
constructor(props: {
|
|
181
227
|
/** An account alias associated with a customer's account. */
|
|
@@ -643,11 +689,6 @@ export declare class AIPromptVersion {
|
|
|
643
689
|
|
|
644
690
|
export declare class Alarm {
|
|
645
691
|
constructor(props: {
|
|
646
|
-
/** The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand. */
|
|
647
|
-
ComparisonOperator: string;
|
|
648
|
-
/** The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an "M out of N" alarm, this value is the N, and ``DatapointsToAlarm`` is the M.
|
|
649
|
-
For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*. */
|
|
650
|
-
EvaluationPeriods: number;
|
|
651
692
|
/** Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE. */
|
|
652
693
|
ActionsEnabled?: boolean;
|
|
653
694
|
/** The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN). For more information about creating alarms and the actions that you can specify, see [PutMetricAlarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html) in the *API Reference*. */
|
|
@@ -658,6 +699,8 @@ export declare class Alarm {
|
|
|
658
699
|
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. */
|
|
659
700
|
AlarmName?: string;
|
|
660
701
|
Arn?: string;
|
|
702
|
+
/** The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand. */
|
|
703
|
+
ComparisonOperator?: string;
|
|
661
704
|
/** The number of datapoints that must be breaching to trigger the alarm. This is used only if you are setting an "M out of N" alarm. In that case, this value is the M, and the value that you set for ``EvaluationPeriods`` is the N value. For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
|
|
662
705
|
If you omit this parameter, CW uses the same value here that you set for ``EvaluationPeriods``, and the alarm goes to alarm state if that many consecutive periods are breaching. */
|
|
663
706
|
DatapointsToAlarm?: number;
|
|
@@ -665,6 +708,9 @@ export declare class Alarm {
|
|
|
665
708
|
Dimensions?: Alarm_Dimension[];
|
|
666
709
|
/** Used only for alarms based on percentiles. If ``ignore``, the alarm state does not change during periods with too few data points to be statistically significant. If ``evaluate`` or this parameter is not used, the alarm is always evaluated and possibly changes state no matter how many data points are available. */
|
|
667
710
|
EvaluateLowSampleCountPercentile?: string;
|
|
711
|
+
/** The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an "M out of N" alarm, this value is the N, and ``DatapointsToAlarm`` is the M.
|
|
712
|
+
For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*. */
|
|
713
|
+
EvaluationPeriods?: number;
|
|
668
714
|
/** The percentile statistic for the metric associated with the alarm. Specify a value between p0.0 and p100.
|
|
669
715
|
For an alarm based on a metric, you must specify either ``Statistic`` or ``ExtendedStatistic`` but not both.
|
|
670
716
|
For an alarm based on a math expression, you can't specify ``ExtendedStatistic``. Instead, you use ``Metrics``. */
|
|
@@ -5821,6 +5867,37 @@ Constraint: If both solution stack name and source configuration are specified,
|
|
|
5821
5867
|
readonly TemplateName: string;
|
|
5822
5868
|
}
|
|
5823
5869
|
|
|
5870
|
+
export declare class ConfiguredModelAlgorithm {
|
|
5871
|
+
constructor(props: {
|
|
5872
|
+
Name: string;
|
|
5873
|
+
RoleArn: string;
|
|
5874
|
+
ConfiguredModelAlgorithmArn?: string;
|
|
5875
|
+
Description?: string;
|
|
5876
|
+
InferenceContainerConfig?: ConfiguredModelAlgorithm_InferenceContainerConfig;
|
|
5877
|
+
KmsKeyArn?: string;
|
|
5878
|
+
/** An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm. */
|
|
5879
|
+
Tags?: ConfiguredModelAlgorithm_Tag[];
|
|
5880
|
+
TrainingContainerConfig?: ConfiguredModelAlgorithm_ContainerConfig;
|
|
5881
|
+
}, attributes?: CFResourceAttributes);
|
|
5882
|
+
readonly ConfiguredModelAlgorithmArn: string;
|
|
5883
|
+
}
|
|
5884
|
+
|
|
5885
|
+
export declare class ConfiguredModelAlgorithmAssociation {
|
|
5886
|
+
constructor(props: {
|
|
5887
|
+
ConfiguredModelAlgorithmArn: string;
|
|
5888
|
+
MembershipIdentifier: string;
|
|
5889
|
+
Name: string;
|
|
5890
|
+
CollaborationIdentifier?: string;
|
|
5891
|
+
ConfiguredModelAlgorithmAssociationArn?: string;
|
|
5892
|
+
Description?: string;
|
|
5893
|
+
PrivacyConfiguration?: ConfiguredModelAlgorithmAssociation_PrivacyConfiguration;
|
|
5894
|
+
/** An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm association. */
|
|
5895
|
+
Tags?: ConfiguredModelAlgorithmAssociation_Tag[];
|
|
5896
|
+
}, attributes?: CFResourceAttributes);
|
|
5897
|
+
readonly CollaborationIdentifier: string;
|
|
5898
|
+
readonly ConfiguredModelAlgorithmAssociationArn: string;
|
|
5899
|
+
}
|
|
5900
|
+
|
|
5824
5901
|
export declare class ConfiguredTable {
|
|
5825
5902
|
constructor(props: {
|
|
5826
5903
|
AllowedColumns: string[];
|
|
@@ -6232,6 +6309,8 @@ export declare class ConnectQueue {
|
|
|
6232
6309
|
InstanceArn: string;
|
|
6233
6310
|
/** The name of the queue. */
|
|
6234
6311
|
Name: string;
|
|
6312
|
+
/** The email addresses that agents can use when replying to or initiating email contacts */
|
|
6313
|
+
AdditionalEmailAddresses?: ConnectQueue_EmailAddress[];
|
|
6235
6314
|
/** The description of the queue. */
|
|
6236
6315
|
Description?: string;
|
|
6237
6316
|
/** The maximum number of contacts that can be in the queue before it is considered full. */
|
|
@@ -6287,6 +6366,8 @@ export declare class ConnectSecurityProfile {
|
|
|
6287
6366
|
AllowedAccessControlHierarchyGroupId?: string;
|
|
6288
6367
|
/** The list of tags that a security profile uses to restrict access to resources in Amazon Connect. */
|
|
6289
6368
|
AllowedAccessControlTags?: ConnectSecurityProfile_Tag[];
|
|
6369
|
+
/** The list of flow-module resources to be linked to a security profile in Amazon Connect. */
|
|
6370
|
+
AllowedFlowModules?: ConnectSecurityProfile_FlowModule[];
|
|
6290
6371
|
/** A list of third-party applications that the security profile will give access to. */
|
|
6291
6372
|
Applications?: ConnectSecurityProfile_Application[];
|
|
6292
6373
|
/** The description of the security profile. */
|
|
@@ -6624,6 +6705,8 @@ export declare class ContainerFleet {
|
|
|
6624
6705
|
PerInstanceContainerGroupDefinitionArn?: string;
|
|
6625
6706
|
/** The name of the container group definition that will be created per instance. This field is optional if you specify GameServerContainerGroupDefinitionName. */
|
|
6626
6707
|
PerInstanceContainerGroupDefinitionName?: string;
|
|
6708
|
+
/** The player gateway mode for the container fleet. */
|
|
6709
|
+
PlayerGatewayMode?: "DISABLED" | "ENABLED" | "REQUIRED";
|
|
6627
6710
|
/** A list of rules that control how a fleet is scaled. */
|
|
6628
6711
|
ScalingPolicies?: ContainerFleet_ScalingPolicy[];
|
|
6629
6712
|
/** The current status of the container fleet. */
|
|
@@ -6636,6 +6719,7 @@ export declare class ContainerFleet {
|
|
|
6636
6719
|
readonly FleetArn: string;
|
|
6637
6720
|
readonly FleetId: string;
|
|
6638
6721
|
readonly GameServerContainerGroupDefinitionArn: string;
|
|
6722
|
+
readonly Locations_Item_PlayerGatewayStatus: string;
|
|
6639
6723
|
readonly MaximumGameServerContainerGroupsPerInstance: number;
|
|
6640
6724
|
readonly PerInstanceContainerGroupDefinitionArn: string;
|
|
6641
6725
|
readonly Status: "ACTIVATING" | "ACTIVE" | "CREATED" | "CREATING" | "DELETING" | "PENDING" | "UPDATING";
|
|
@@ -7585,17 +7669,17 @@ export declare class DataLake {
|
|
|
7585
7669
|
|
|
7586
7670
|
export declare class DataLakeSettings {
|
|
7587
7671
|
constructor(props: {
|
|
7588
|
-
Admins?:
|
|
7672
|
+
Admins?: DataLakeSettings_DataLakePrincipal[];
|
|
7589
7673
|
AllowExternalDataFiltering?: boolean;
|
|
7590
7674
|
AllowFullTableExternalDataAccess?: boolean;
|
|
7591
7675
|
AuthorizedSessionTagValueList?: string[];
|
|
7592
|
-
CreateDatabaseDefaultPermissions?:
|
|
7593
|
-
CreateTableDefaultPermissions?:
|
|
7594
|
-
ExternalDataFilteringAllowList?:
|
|
7676
|
+
CreateDatabaseDefaultPermissions?: DataLakeSettings_PrincipalPermissions[];
|
|
7677
|
+
CreateTableDefaultPermissions?: DataLakeSettings_PrincipalPermissions[];
|
|
7678
|
+
ExternalDataFilteringAllowList?: DataLakeSettings_DataLakePrincipal[];
|
|
7595
7679
|
Id?: string;
|
|
7596
7680
|
MutationType?: string;
|
|
7597
7681
|
Parameters?: Record<string, unknown>;
|
|
7598
|
-
ReadOnlyAdmins?:
|
|
7682
|
+
ReadOnlyAdmins?: DataLakeSettings_DataLakePrincipal[];
|
|
7599
7683
|
TrustedResourceOwners?: string[];
|
|
7600
7684
|
}, attributes?: CFResourceAttributes);
|
|
7601
7685
|
readonly Id: string;
|
|
@@ -10262,7 +10346,7 @@ export declare class DLMLifecyclePolicy {
|
|
|
10262
10346
|
Arn?: string;
|
|
10263
10347
|
CopyTags?: boolean;
|
|
10264
10348
|
CreateInterval?: number;
|
|
10265
|
-
CrossRegionCopyTargets?:
|
|
10349
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
10266
10350
|
DefaultPolicy?: string;
|
|
10267
10351
|
Description?: string;
|
|
10268
10352
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
@@ -10380,6 +10464,29 @@ export declare class DNSSEC {
|
|
|
10380
10464
|
}, attributes?: CFResourceAttributes);
|
|
10381
10465
|
}
|
|
10382
10466
|
|
|
10467
|
+
export declare class DnsView {
|
|
10468
|
+
constructor(props: {
|
|
10469
|
+
GlobalResolverId: string;
|
|
10470
|
+
Name: string;
|
|
10471
|
+
Arn?: string;
|
|
10472
|
+
ClientToken?: string;
|
|
10473
|
+
CreatedAt?: string;
|
|
10474
|
+
Description?: string;
|
|
10475
|
+
DnssecValidation?: DnsView_DnsSecValidationType;
|
|
10476
|
+
DnsViewId?: string;
|
|
10477
|
+
EdnsClientSubnet?: DnsView_EdnsClientSubnetType;
|
|
10478
|
+
FirewallRulesFailOpen?: DnsView_FirewallRulesFailOpenType;
|
|
10479
|
+
Status?: DnsView_ProfileResourceStatus;
|
|
10480
|
+
Tags?: DnsView_Tag[];
|
|
10481
|
+
UpdatedAt?: string;
|
|
10482
|
+
}, attributes?: CFResourceAttributes);
|
|
10483
|
+
readonly Arn: string;
|
|
10484
|
+
readonly CreatedAt: string;
|
|
10485
|
+
readonly DnsViewId: string;
|
|
10486
|
+
readonly Status: DnsView_ProfileResourceStatus;
|
|
10487
|
+
readonly UpdatedAt: string;
|
|
10488
|
+
}
|
|
10489
|
+
|
|
10383
10490
|
export declare class DocDBDBCluster {
|
|
10384
10491
|
constructor(props: {
|
|
10385
10492
|
AvailabilityZones?: string[];
|
|
@@ -12290,6 +12397,7 @@ export declare class EvaluationForm {
|
|
|
12290
12397
|
EvaluationFormArn?: string;
|
|
12291
12398
|
/** Configuration for language settings of this evaluation form. */
|
|
12292
12399
|
LanguageConfiguration?: EvaluationForm_EvaluationFormLanguageConfiguration;
|
|
12400
|
+
/** Configuration for evaluation review settings of this evaluation form. */
|
|
12293
12401
|
ReviewConfiguration?: EvaluationForm_EvaluationReviewConfiguration;
|
|
12294
12402
|
/** A scoring strategy of the evaluation form. */
|
|
12295
12403
|
ScoringStrategy?: EvaluationForm_ScoringStrategy;
|
|
@@ -13249,45 +13357,6 @@ export declare class Firewall {
|
|
|
13249
13357
|
readonly TransitGatewayAttachmentId: string;
|
|
13250
13358
|
}
|
|
13251
13359
|
|
|
13252
|
-
export declare class FirewallDomainList {
|
|
13253
|
-
constructor(props: {
|
|
13254
|
-
/** Arn */
|
|
13255
|
-
Arn?: string;
|
|
13256
|
-
/** Rfc3339TimeString */
|
|
13257
|
-
CreationTime?: string;
|
|
13258
|
-
/** The id of the creator request. */
|
|
13259
|
-
CreatorRequestId?: string;
|
|
13260
|
-
/** Count */
|
|
13261
|
-
DomainCount?: number;
|
|
13262
|
-
/** S3 URL to import domains from. */
|
|
13263
|
-
DomainFileUrl?: string;
|
|
13264
|
-
Domains?: any;
|
|
13265
|
-
/** ResourceId */
|
|
13266
|
-
Id?: string;
|
|
13267
|
-
/** ServicePrincipal */
|
|
13268
|
-
ManagedOwnerName?: string;
|
|
13269
|
-
/** Rfc3339TimeString */
|
|
13270
|
-
ModificationTime?: string;
|
|
13271
|
-
/** FirewallDomainListName */
|
|
13272
|
-
Name?: string;
|
|
13273
|
-
/** ResolverFirewallDomainList, possible values are COMPLETE, DELETING, UPDATING, COMPLETE_IMPORT_FAILED, IMPORTING, and INACTIVE_OWNER_ACCOUNT_CLOSED. */
|
|
13274
|
-
Status?: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
13275
|
-
/** FirewallDomainListAssociationStatus */
|
|
13276
|
-
StatusMessage?: string;
|
|
13277
|
-
/** Tags */
|
|
13278
|
-
Tags?: FirewallDomainList_Tag[];
|
|
13279
|
-
}, attributes?: CFResourceAttributes);
|
|
13280
|
-
readonly Arn: string;
|
|
13281
|
-
readonly CreationTime: string;
|
|
13282
|
-
readonly CreatorRequestId: string;
|
|
13283
|
-
readonly DomainCount: number;
|
|
13284
|
-
readonly Id: string;
|
|
13285
|
-
readonly ManagedOwnerName: string;
|
|
13286
|
-
readonly ModificationTime: string;
|
|
13287
|
-
readonly Status: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
13288
|
-
readonly StatusMessage: string;
|
|
13289
|
-
}
|
|
13290
|
-
|
|
13291
13360
|
export declare class FirewallPolicy {
|
|
13292
13361
|
constructor(props: {
|
|
13293
13362
|
FirewallPolicy: FirewallPolicy_FirewallPolicy;
|
|
@@ -13301,6 +13370,35 @@ export declare class FirewallPolicy {
|
|
|
13301
13370
|
readonly FirewallPolicyId: string;
|
|
13302
13371
|
}
|
|
13303
13372
|
|
|
13373
|
+
export declare class FirewallRule {
|
|
13374
|
+
constructor(props: {
|
|
13375
|
+
Action: FirewallRule_FirewallRuleAction;
|
|
13376
|
+
DnsViewId: string;
|
|
13377
|
+
Name: string;
|
|
13378
|
+
BlockOverrideDnsType?: FirewallRule_BlockOverrideDnsQueryType;
|
|
13379
|
+
BlockOverrideDomain?: string;
|
|
13380
|
+
BlockOverrideTtl?: number;
|
|
13381
|
+
BlockResponse?: FirewallRule_FirewallBlockResponse;
|
|
13382
|
+
ClientToken?: string;
|
|
13383
|
+
ConfidenceThreshold?: FirewallRule_ConfidenceThreshold;
|
|
13384
|
+
CreatedAt?: string;
|
|
13385
|
+
Description?: string;
|
|
13386
|
+
DnsAdvancedProtection?: FirewallRule_DnsAdvancedProtection;
|
|
13387
|
+
FirewallDomainListId?: string;
|
|
13388
|
+
FirewallRuleId?: string;
|
|
13389
|
+
Priority?: number;
|
|
13390
|
+
QType?: string;
|
|
13391
|
+
QueryType?: string;
|
|
13392
|
+
Status?: FirewallRule_CRResourceStatus;
|
|
13393
|
+
UpdatedAt?: string;
|
|
13394
|
+
}, attributes?: CFResourceAttributes);
|
|
13395
|
+
readonly CreatedAt: string;
|
|
13396
|
+
readonly FirewallRuleId: string;
|
|
13397
|
+
readonly QueryType: string;
|
|
13398
|
+
readonly Status: FirewallRule_CRResourceStatus;
|
|
13399
|
+
readonly UpdatedAt: string;
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13304
13402
|
export declare class FirewallRuleGroup {
|
|
13305
13403
|
constructor(props: {
|
|
13306
13404
|
/** Arn */
|
|
@@ -14219,6 +14317,10 @@ export declare class GameLiftFleet {
|
|
|
14219
14317
|
PeerVpcAwsAccountId?: string;
|
|
14220
14318
|
/** A unique identifier for a VPC with resources to be accessed by your Amazon GameLift fleet. The VPC must be in the same Region as your fleet. To look up a VPC ID, use the VPC Dashboard in the AWS Management Console. */
|
|
14221
14319
|
PeerVpcId?: string;
|
|
14320
|
+
/** Configuration for player gateway. */
|
|
14321
|
+
PlayerGatewayConfiguration?: GameLiftFleet_PlayerGatewayConfiguration;
|
|
14322
|
+
/** The player gateway mode for the fleet. */
|
|
14323
|
+
PlayerGatewayMode?: "DISABLED" | "ENABLED" | "REQUIRED";
|
|
14222
14324
|
/** A policy that limits the number of game sessions an individual player can create over a span of time for this fleet. */
|
|
14223
14325
|
ResourceCreationLimitPolicy?: GameLiftFleet_ResourceCreationLimitPolicy;
|
|
14224
14326
|
/** Instructions for launching server processes on each instance in the fleet. Server processes run either a custom game build executable or a Realtime script. The runtime configuration defines the server executables or launch script file, launch parameters, and the number of processes to run concurrently on each instance. When creating a fleet, the runtime configuration must have at least one server process configuration; otherwise the request fails with an invalid request exception.
|
|
@@ -14240,6 +14342,7 @@ Note: It is not currently possible to use the !Ref command to reference a script
|
|
|
14240
14342
|
}, attributes?: CFResourceAttributes);
|
|
14241
14343
|
readonly FleetArn: string;
|
|
14242
14344
|
readonly FleetId: string;
|
|
14345
|
+
readonly Locations_Item_PlayerGatewayStatus: string;
|
|
14243
14346
|
}
|
|
14244
14347
|
|
|
14245
14348
|
export declare class GameServerGroup {
|
|
@@ -14493,6 +14596,34 @@ export declare class GlobalReplicationGroup {
|
|
|
14493
14596
|
readonly Status: string;
|
|
14494
14597
|
}
|
|
14495
14598
|
|
|
14599
|
+
export declare class GlobalResolver {
|
|
14600
|
+
constructor(props: {
|
|
14601
|
+
Name: string;
|
|
14602
|
+
Regions: string[];
|
|
14603
|
+
Arn?: string;
|
|
14604
|
+
ClientToken?: string;
|
|
14605
|
+
CreatedAt?: string;
|
|
14606
|
+
Description?: string;
|
|
14607
|
+
DnsName?: string;
|
|
14608
|
+
GlobalResolverId?: string;
|
|
14609
|
+
IpAddressType?: GlobalResolver_GlobalResolverIpAddressType;
|
|
14610
|
+
IPv4Addresses?: string[];
|
|
14611
|
+
IPv6Addresses?: string[];
|
|
14612
|
+
ObservabilityRegion?: string;
|
|
14613
|
+
Status?: GlobalResolver_CRResourceStatus;
|
|
14614
|
+
Tags?: GlobalResolver_Tag[];
|
|
14615
|
+
UpdatedAt?: string;
|
|
14616
|
+
}, attributes?: CFResourceAttributes);
|
|
14617
|
+
readonly Arn: string;
|
|
14618
|
+
readonly CreatedAt: string;
|
|
14619
|
+
readonly DnsName: string;
|
|
14620
|
+
readonly GlobalResolverId: string;
|
|
14621
|
+
readonly IPv4Addresses: string[];
|
|
14622
|
+
readonly IPv6Addresses: string[];
|
|
14623
|
+
readonly Status: GlobalResolver_CRResourceStatus;
|
|
14624
|
+
readonly UpdatedAt: string;
|
|
14625
|
+
}
|
|
14626
|
+
|
|
14496
14627
|
export declare class GlobalTable {
|
|
14497
14628
|
constructor(props: {
|
|
14498
14629
|
Replicas: GlobalTable_ReplicaSpecification[];
|
|
@@ -15205,6 +15336,24 @@ export declare class HostedZone {
|
|
|
15205
15336
|
readonly NameServers: string[];
|
|
15206
15337
|
}
|
|
15207
15338
|
|
|
15339
|
+
export declare class HostedZoneAssociation {
|
|
15340
|
+
constructor(props: {
|
|
15341
|
+
HostedZoneId: string;
|
|
15342
|
+
Name: string;
|
|
15343
|
+
ResourceArn: string;
|
|
15344
|
+
CreatedAt?: string;
|
|
15345
|
+
HostedZoneAssociationId?: string;
|
|
15346
|
+
HostedZoneName?: string;
|
|
15347
|
+
Status?: HostedZoneAssociation_HostedZoneAssociationStatus;
|
|
15348
|
+
UpdatedAt?: string;
|
|
15349
|
+
}, attributes?: CFResourceAttributes);
|
|
15350
|
+
readonly CreatedAt: string;
|
|
15351
|
+
readonly HostedZoneAssociationId: string;
|
|
15352
|
+
readonly HostedZoneName: string;
|
|
15353
|
+
readonly Status: HostedZoneAssociation_HostedZoneAssociationStatus;
|
|
15354
|
+
readonly UpdatedAt: string;
|
|
15355
|
+
}
|
|
15356
|
+
|
|
15208
15357
|
export declare class HoursOfOperation {
|
|
15209
15358
|
constructor(props: {
|
|
15210
15359
|
/** Configuration information for the hours of operation: day, start time, and end time. */
|
|
@@ -16246,7 +16395,7 @@ export declare class InsightRule {
|
|
|
16246
16395
|
ApplyOnTransformedLogs?: boolean;
|
|
16247
16396
|
Arn?: string;
|
|
16248
16397
|
Id?: string;
|
|
16249
|
-
Tags?:
|
|
16398
|
+
Tags?: InsightRule_Tag[];
|
|
16250
16399
|
}, attributes?: CFResourceAttributes);
|
|
16251
16400
|
readonly Arn: string;
|
|
16252
16401
|
readonly Id: string;
|
|
@@ -20584,6 +20733,7 @@ export declare class Memory {
|
|
|
20584
20733
|
MemoryId?: string;
|
|
20585
20734
|
MemoryStrategies?: any;
|
|
20586
20735
|
Status?: Memory_MemoryStatus;
|
|
20736
|
+
StreamDeliveryResources?: Memory_StreamDeliveryResources;
|
|
20587
20737
|
Tags?: Record<string, unknown>;
|
|
20588
20738
|
UpdatedAt?: string;
|
|
20589
20739
|
}, attributes?: CFResourceAttributes);
|
|
@@ -22912,6 +23062,7 @@ export declare class OpenSearchServiceDomain {
|
|
|
22912
23062
|
Arn?: string;
|
|
22913
23063
|
ClusterConfig?: OpenSearchServiceDomain_ClusterConfig;
|
|
22914
23064
|
CognitoOptions?: OpenSearchServiceDomain_CognitoOptions;
|
|
23065
|
+
DeploymentStrategyOptions?: OpenSearchServiceDomain_DeploymentStrategyOptions;
|
|
22915
23066
|
DomainArn?: string;
|
|
22916
23067
|
DomainEndpoint?: string;
|
|
22917
23068
|
DomainEndpointOptions?: OpenSearchServiceDomain_DomainEndpointOptions;
|
|
@@ -24376,7 +24527,7 @@ export declare class PolicyStore {
|
|
|
24376
24527
|
EncryptionSettings?: Record<string, unknown>;
|
|
24377
24528
|
EncryptionState?: any;
|
|
24378
24529
|
PolicyStoreId?: string;
|
|
24379
|
-
Schema?:
|
|
24530
|
+
Schema?: PolicyStore_SchemaDefinition;
|
|
24380
24531
|
/** The tags to add to the policy store */
|
|
24381
24532
|
Tags?: PolicyStore_Tag[];
|
|
24382
24533
|
}, attributes?: CFResourceAttributes);
|
|
@@ -25335,7 +25486,7 @@ export declare class Queue {
|
|
|
25335
25486
|
DeduplicationScope?: string;
|
|
25336
25487
|
/** The time in seconds for which the delivery of all messages in the queue is delayed. You can specify an integer value of ``0`` to ``900`` (15 minutes). The default value is ``0``. */
|
|
25337
25488
|
DelaySeconds?: number;
|
|
25338
|
-
/** If set to true, creates a FIFO queue. If you don't specify this property, SQS creates a standard queue. For more information, see [
|
|
25489
|
+
/** If set to true, creates a FIFO queue. If you don't specify this property, SQS creates a standard queue. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html) in the *Developer Guide*. */
|
|
25339
25490
|
FifoQueue?: boolean;
|
|
25340
25491
|
/** For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId``.
|
|
25341
25492
|
To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId`` *and* set the ``DeduplicationScope`` attribute to ``messageGroup``. If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see [High throughput for FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html) and [Quotas related to messages](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html) in the *Developer Guide*. */
|
|
@@ -25343,17 +25494,17 @@ export declare class Queue {
|
|
|
25343
25494
|
/** The length of time in seconds for which SQS can reuse a data key to encrypt or decrypt messages before calling KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes).
|
|
25344
25495
|
A shorter time period provides better security, but results in more calls to KMS, which might incur charges after Free Tier. For more information, see [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work) in the *Developer Guide*. */
|
|
25345
25496
|
KmsDataKeyReusePeriodSeconds?: number;
|
|
25346
|
-
/** The ID of an AWS Key Management Service (KMS) for SQS, or a custom KMS. To use the AWS managed KMS for SQS, specify a (default) alias ARN, alias name (
|
|
25497
|
+
/** The ID of an AWS Key Management Service (KMS) for SQS, or a custom KMS. To use the AWS managed KMS for SQS, specify a (default) alias ARN, alias name (e.g. ``alias/aws/sqs``), key ARN, or key ID. For more information, see the following:
|
|
25347
25498
|
+ [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html) in the *Developer Guide*
|
|
25348
25499
|
+ [CreateQueue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html) in the *API Reference*
|
|
25349
25500
|
+ [Request Parameters](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters) in the *Key Management Service API Reference*
|
|
25350
|
-
+ The Key Management Service (KMS) section of the [
|
|
25501
|
+
+ The Key Management Service (KMS) section of the [Best Practices](https://docs.aws.amazon.com/https://d0.awsstatic.com/whitepapers/aws-kms-best-practices.pdf) whitepaper */
|
|
25351
25502
|
KmsMasterKeyId?: string;
|
|
25352
25503
|
/** The limit of how many bytes that a message can contain before SQS rejects it. You can specify an integer value from ``1,024`` bytes (1 KiB) to ``262,144`` bytes (256 KiB). The default value is ``262,144`` (256 KiB). */
|
|
25353
25504
|
MaximumMessageSize?: number;
|
|
25354
25505
|
/** The number of seconds that SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days). */
|
|
25355
25506
|
MessageRetentionPeriod?: number;
|
|
25356
|
-
/** A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see [
|
|
25507
|
+
/** A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html) in the *Developer Guide*.
|
|
25357
25508
|
If you don't specify a name, CFN generates a unique physical ID and uses that ID for the queue name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) in the *User Guide*.
|
|
25358
25509
|
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. */
|
|
25359
25510
|
QueueName?: string;
|
|
@@ -25361,16 +25512,16 @@ export declare class Queue {
|
|
|
25361
25512
|
/** Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property. For more information, see [Consuming messages using long polling](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-short-and-long-polling.html#sqs-long-polling) in the *Developer Guide*. */
|
|
25362
25513
|
ReceiveMessageWaitTimeSeconds?: number;
|
|
25363
25514
|
/** The string that includes the parameters for the permissions for the dead-letter queue redrive permission and which source queues can specify dead-letter queues as a JSON object. The parameters are as follows:
|
|
25364
|
-
+
|
|
25365
|
-
+
|
|
25366
|
-
+
|
|
25367
|
-
+
|
|
25515
|
+
+ ``redrivePermission``: The permission type that defines which source queues can specify the current queue as the dead-letter queue. Valid values are:
|
|
25516
|
+
+ ``allowAll``: (Default) Any source queues in this AWS account in the same Region can specify this queue as the dead-letter queue.
|
|
25517
|
+
+ ``denyAll``: No source queues can specify this queue as the dead-letter queue.
|
|
25518
|
+
+ ``byQueue``: Only queues specified by the ``sourceQueueArns`` parameter can specify this queue as the dead-letter queue.
|
|
25368
25519
|
|
|
25369
|
-
+
|
|
25520
|
+
+ ``sourceQueueArns``: The Amazon Resource Names (ARN)s of the source queues that can specify this queue as the dead-letter queue and redrive messages. You can specify this parameter only when the ``redrivePermission`` parameter is set to ``byQueue``. You can specify up to 10 source queue ARNs. To allow more than 10 source queues to specify dead-letter queues, set the ``redrivePermission`` parameter to ``allowAll``. */
|
|
25370
25521
|
RedriveAllowPolicy?: Record<string, unknown>;
|
|
25371
25522
|
/** The string that includes the parameters for the dead-letter queue functionality of the source queue as a JSON object. The parameters are as follows:
|
|
25372
|
-
+
|
|
25373
|
-
+
|
|
25523
|
+
+ ``deadLetterTargetArn``: The Amazon Resource Name (ARN) of the dead-letter queue to which SQS moves messages after the value of ``maxReceiveCount`` is exceeded.
|
|
25524
|
+
+ ``maxReceiveCount``: The number of times a message is delivered to the source queue before being moved to the dead-letter queue. When the ``ReceiveCount`` for a message exceeds the ``maxReceiveCount`` for a queue, SQS moves the message to the dead-letter-queue.
|
|
25374
25525
|
|
|
25375
25526
|
The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue.
|
|
25376
25527
|
*JSON*
|
|
@@ -26465,23 +26616,6 @@ export declare class RekognitionProject {
|
|
|
26465
26616
|
readonly Arn: string;
|
|
26466
26617
|
}
|
|
26467
26618
|
|
|
26468
|
-
export declare class RemediationConfiguration {
|
|
26469
|
-
constructor(props: {
|
|
26470
|
-
ConfigRuleName: string;
|
|
26471
|
-
TargetId: string;
|
|
26472
|
-
TargetType: string;
|
|
26473
|
-
Automatic?: boolean;
|
|
26474
|
-
ExecutionControls?: RemediationConfiguration_ExecutionControls;
|
|
26475
|
-
Id?: string;
|
|
26476
|
-
MaximumAutomaticAttempts?: number;
|
|
26477
|
-
Parameters?: Record<string, unknown>;
|
|
26478
|
-
ResourceType?: string;
|
|
26479
|
-
RetryAttemptSeconds?: number;
|
|
26480
|
-
TargetVersion?: string;
|
|
26481
|
-
}, attributes?: CFResourceAttributes);
|
|
26482
|
-
readonly Id: string;
|
|
26483
|
-
}
|
|
26484
|
-
|
|
26485
26619
|
export declare class ReplicaKey {
|
|
26486
26620
|
constructor(props: {
|
|
26487
26621
|
/** The key policy that authorizes use of the AWS KMS key. The key policy must observe the following rules. */
|
|
@@ -26541,67 +26675,106 @@ export declare class ReplicationConfiguration {
|
|
|
26541
26675
|
|
|
26542
26676
|
export declare class ReplicationGroup {
|
|
26543
26677
|
constructor(props: {
|
|
26678
|
+
/** A user-created description for the replication group. */
|
|
26544
26679
|
ReplicationGroupDescription: string;
|
|
26680
|
+
/** A flag that enables encryption at rest when set to true.AtRestEncryptionEnabled after the replication group is created. To enable encryption at rest on a replication group you must set AtRestEncryptionEnabled to true when you create the replication group. */
|
|
26545
26681
|
AtRestEncryptionEnabled?: boolean;
|
|
26682
|
+
/** Reserved parameter. The password used to access a password protected server.AuthToken can be specified only on replication groups where TransitEncryptionEnabled is true. For more information. */
|
|
26546
26683
|
AuthToken?: string;
|
|
26684
|
+
/** Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary fails. AutomaticFailoverEnabled must be enabled for Redis (cluster mode enabled) replication groups. */
|
|
26547
26685
|
AutomaticFailoverEnabled?: boolean;
|
|
26686
|
+
/** This parameter is currently disabled. */
|
|
26548
26687
|
AutoMinorVersionUpgrade?: boolean;
|
|
26688
|
+
/** The compute and memory capacity of the nodes in the node group (shard). */
|
|
26549
26689
|
CacheNodeType?: string;
|
|
26690
|
+
/** The name of the parameter group to associate with this replication group. If this argument is omitted, the default cache parameter group for the specified engine is used. */
|
|
26550
26691
|
CacheParameterGroupName?: string;
|
|
26692
|
+
/** A list of cache security group names to associate with this replication group. */
|
|
26551
26693
|
CacheSecurityGroupNames?: string[];
|
|
26694
|
+
/** The name of the cache subnet group to be used for the replication group. */
|
|
26552
26695
|
CacheSubnetGroupName?: string;
|
|
26696
|
+
/** Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster mode configuration and set the cluster mode to Enabled. For more information, see Modify cluster mode. */
|
|
26553
26697
|
ClusterMode?: string;
|
|
26554
|
-
|
|
26555
|
-
|
|
26698
|
+
/** The configuration details of the replication group. */
|
|
26699
|
+
ConfigurationEndPoint?: ReplicationGroup_Endpoint;
|
|
26700
|
+
/** Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This parameter must be set to true when using r6gd nodes. */
|
|
26556
26701
|
DataTieringEnabled?: boolean;
|
|
26702
|
+
/** The name of the cache engine to be used for the clusters in this replication group. */
|
|
26557
26703
|
Engine?: string;
|
|
26704
|
+
/** The version number of the cache engine to be used for the clusters in this replication group. To view the supported cache engine versions, use the DescribeCacheEngineVersions operation. */
|
|
26558
26705
|
EngineVersion?: string;
|
|
26706
|
+
/** The name of the Global datastore */
|
|
26559
26707
|
GlobalReplicationGroupId?: string;
|
|
26708
|
+
/** The network type you choose when creating a replication group, either ipv4 | ipv6. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system. */
|
|
26560
26709
|
IpDiscovery?: string;
|
|
26710
|
+
/** The ID of the KMS key used to encrypt the disk on the cluster. */
|
|
26561
26711
|
KmsKeyId?: string;
|
|
26712
|
+
/** Specifies the destination, format and type of the logs. */
|
|
26562
26713
|
LogDeliveryConfigurations?: ReplicationGroup_LogDeliveryConfigurationRequest[];
|
|
26714
|
+
/** A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime: Multi-AZ. */
|
|
26563
26715
|
MultiAZEnabled?: boolean;
|
|
26716
|
+
/** Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system */
|
|
26564
26717
|
NetworkType?: string;
|
|
26718
|
+
/** NodeGroupConfiguration is a property of the AWS::ElastiCache::ReplicationGroup resource that configures an Amazon ElastiCache (ElastiCache) Redis cluster node group. */
|
|
26565
26719
|
NodeGroupConfiguration?: ReplicationGroup_NodeGroupConfiguration[];
|
|
26720
|
+
/** The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are sent. */
|
|
26566
26721
|
NotificationTopicArn?: string;
|
|
26722
|
+
/** The number of clusters this replication group initially has.This parameter is not used if there is more than one node group (shard). You should use ReplicasPerNodeGroup instead. */
|
|
26567
26723
|
NumCacheClusters?: number;
|
|
26724
|
+
/** An optional parameter that specifies the number of node groups (shards) for this Redis (cluster mode enabled) replication group. For Redis (cluster mode disabled) either omit this parameter or set it to 1. */
|
|
26568
26725
|
NumNodeGroups?: number;
|
|
26726
|
+
/** The port number on which each member of the replication group accepts connections. */
|
|
26569
26727
|
Port?: number;
|
|
26728
|
+
/** A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in the first AZ in the list. This parameter is not used if there is more than one node group (shard). You should use NodeGroupConfiguration instead. */
|
|
26570
26729
|
PreferredCacheClusterAZs?: string[];
|
|
26730
|
+
/** Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. */
|
|
26571
26731
|
PreferredMaintenanceWindow?: string;
|
|
26732
|
+
/** The identifier of the cluster that serves as the primary for this replication group. This cluster must already exist and have a status of available. */
|
|
26572
26733
|
PrimaryClusterId?: string;
|
|
26573
|
-
|
|
26574
|
-
|
|
26575
|
-
|
|
26576
|
-
|
|
26577
|
-
|
|
26578
|
-
|
|
26579
|
-
ReaderEndPointAddress?: string;
|
|
26580
|
-
ReaderEndPointPort?: string;
|
|
26734
|
+
/** The primary endpoint configuration */
|
|
26735
|
+
PrimaryEndPoint?: ReplicationGroup_Endpoint;
|
|
26736
|
+
ReadEndPoint?: Record<string, unknown>;
|
|
26737
|
+
/** The endpoint of the reader node in the replication group. */
|
|
26738
|
+
ReaderEndPoint?: ReplicationGroup_Endpoint;
|
|
26739
|
+
/** An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0 to 5. */
|
|
26581
26740
|
ReplicasPerNodeGroup?: number;
|
|
26741
|
+
/** The replication group identifier. This parameter is stored as a lowercase string. */
|
|
26582
26742
|
ReplicationGroupId?: string;
|
|
26743
|
+
/** One or more Amazon VPC security groups associated with this replication group. */
|
|
26583
26744
|
SecurityGroupIds?: string[];
|
|
26745
|
+
/** A list of Amazon Resource Names (ARN) that uniquely identify the Redis RDB snapshot files stored in Amazon S3. */
|
|
26584
26746
|
SnapshotArns?: string[];
|
|
26747
|
+
/** The name of a snapshot from which to restore data into the new replication group. The snapshot status changes to restoring while the new replication group is being created. */
|
|
26585
26748
|
SnapshotName?: string;
|
|
26749
|
+
/** The number of days for which ElastiCache retains automatic snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted. */
|
|
26586
26750
|
SnapshotRetentionLimit?: number;
|
|
26751
|
+
/** The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot be set for Redis (cluster mode enabled) replication groups. */
|
|
26587
26752
|
SnapshottingClusterId?: string;
|
|
26753
|
+
/** The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your node group (shard). */
|
|
26588
26754
|
SnapshotWindow?: string;
|
|
26755
|
+
/** A list of cost allocation tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=myKey, Value=myKeyValue. You can include multiple tags as shown following: Key=myKey, Value=myKeyValue Key=mySecondKey, Value=mySecondKeyValue. */
|
|
26589
26756
|
Tags?: ReplicationGroup_Tag[];
|
|
26757
|
+
/** A flag that enables in-transit encryption when set to true. */
|
|
26590
26758
|
TransitEncryptionEnabled?: boolean;
|
|
26759
|
+
/** A setting that allows you to migrate your clients to use in-transit encryption, with no downtime. When setting TransitEncryptionEnabled to true, you can set your TransitEncryptionMode to preferred in the same request, to allow both encrypted and unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted connections you can modify the value to required to allow encrypted connections only. Setting TransitEncryptionMode to required is a two-step process that requires you to first set the TransitEncryptionMode to preferred, after that you can set TransitEncryptionMode to required. This process will not trigger the replacement of the replication group. */
|
|
26591
26760
|
TransitEncryptionMode?: string;
|
|
26761
|
+
/** The ID of user group to associate with the replication group. */
|
|
26592
26762
|
UserGroupIds?: string[];
|
|
26593
26763
|
}, attributes?: CFResourceAttributes);
|
|
26764
|
+
readonly ConfigurationEndPoint: ReplicationGroup_Endpoint;
|
|
26594
26765
|
readonly ConfigurationEndPoint_Address: string;
|
|
26595
26766
|
readonly ConfigurationEndPoint_Port: string;
|
|
26767
|
+
readonly PrimaryEndPoint: ReplicationGroup_Endpoint;
|
|
26596
26768
|
readonly PrimaryEndPoint_Address: string;
|
|
26597
26769
|
readonly PrimaryEndPoint_Port: string;
|
|
26770
|
+
readonly ReadEndPoint: Record<string, unknown>;
|
|
26598
26771
|
readonly ReadEndPoint_Addresses: string;
|
|
26599
|
-
readonly
|
|
26772
|
+
readonly ReadEndPoint_AddressesList: string;
|
|
26600
26773
|
readonly ReadEndPoint_Ports: string;
|
|
26601
|
-
readonly
|
|
26774
|
+
readonly ReadEndPoint_PortsList: string;
|
|
26775
|
+
readonly ReaderEndPoint: ReplicationGroup_Endpoint;
|
|
26602
26776
|
readonly ReaderEndPoint_Address: string;
|
|
26603
26777
|
readonly ReaderEndPoint_Port: string;
|
|
26604
|
-
readonly ReplicationGroupId: string;
|
|
26605
26778
|
}
|
|
26606
26779
|
|
|
26607
26780
|
export declare class ReplicationInstance {
|
|
@@ -27710,6 +27883,33 @@ export declare class RotationSchedule {
|
|
|
27710
27883
|
readonly Id: string;
|
|
27711
27884
|
}
|
|
27712
27885
|
|
|
27886
|
+
export declare class Route53GlobalResolverFirewallDomainList {
|
|
27887
|
+
constructor(props: {
|
|
27888
|
+
GlobalResolverId: string;
|
|
27889
|
+
Name: string;
|
|
27890
|
+
Arn?: string;
|
|
27891
|
+
ClientToken?: string;
|
|
27892
|
+
CreatedAt?: string;
|
|
27893
|
+
Description?: string;
|
|
27894
|
+
DomainCount?: number;
|
|
27895
|
+
/** S3 URL to import domains from. */
|
|
27896
|
+
DomainFileUrl?: string;
|
|
27897
|
+
Domains?: any;
|
|
27898
|
+
FirewallDomainListId?: string;
|
|
27899
|
+
Status?: Route53GlobalResolverFirewallDomainList_CRResourceStatus;
|
|
27900
|
+
StatusMessage?: string;
|
|
27901
|
+
Tags?: Route53GlobalResolverFirewallDomainList_Tag[];
|
|
27902
|
+
UpdatedAt?: string;
|
|
27903
|
+
}, attributes?: CFResourceAttributes);
|
|
27904
|
+
readonly Arn: string;
|
|
27905
|
+
readonly CreatedAt: string;
|
|
27906
|
+
readonly DomainCount: number;
|
|
27907
|
+
readonly FirewallDomainListId: string;
|
|
27908
|
+
readonly Status: Route53GlobalResolverFirewallDomainList_CRResourceStatus;
|
|
27909
|
+
readonly StatusMessage: string;
|
|
27910
|
+
readonly UpdatedAt: string;
|
|
27911
|
+
}
|
|
27912
|
+
|
|
27713
27913
|
export declare class Route53ProfilesProfile {
|
|
27714
27914
|
constructor(props: {
|
|
27715
27915
|
/** The name of the profile. */
|
|
@@ -27769,6 +27969,45 @@ AWS: :AutoScaling: :AutoScalingGroup, AWS: :CloudWatch: :Alarm, AWS: :EC2: :Cust
|
|
|
27769
27969
|
readonly ResourceSetArn: string;
|
|
27770
27970
|
}
|
|
27771
27971
|
|
|
27972
|
+
export declare class Route53ResolverFirewallDomainList {
|
|
27973
|
+
constructor(props: {
|
|
27974
|
+
/** Arn */
|
|
27975
|
+
Arn?: string;
|
|
27976
|
+
/** Rfc3339TimeString */
|
|
27977
|
+
CreationTime?: string;
|
|
27978
|
+
/** The id of the creator request. */
|
|
27979
|
+
CreatorRequestId?: string;
|
|
27980
|
+
/** Count */
|
|
27981
|
+
DomainCount?: number;
|
|
27982
|
+
/** S3 URL to import domains from. */
|
|
27983
|
+
DomainFileUrl?: string;
|
|
27984
|
+
Domains?: any;
|
|
27985
|
+
/** ResourceId */
|
|
27986
|
+
Id?: string;
|
|
27987
|
+
/** ServicePrincipal */
|
|
27988
|
+
ManagedOwnerName?: string;
|
|
27989
|
+
/** Rfc3339TimeString */
|
|
27990
|
+
ModificationTime?: string;
|
|
27991
|
+
/** FirewallDomainListName */
|
|
27992
|
+
Name?: string;
|
|
27993
|
+
/** ResolverFirewallDomainList, possible values are COMPLETE, DELETING, UPDATING, COMPLETE_IMPORT_FAILED, IMPORTING, and INACTIVE_OWNER_ACCOUNT_CLOSED. */
|
|
27994
|
+
Status?: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
27995
|
+
/** FirewallDomainListAssociationStatus */
|
|
27996
|
+
StatusMessage?: string;
|
|
27997
|
+
/** Tags */
|
|
27998
|
+
Tags?: Route53ResolverFirewallDomainList_Tag[];
|
|
27999
|
+
}, attributes?: CFResourceAttributes);
|
|
28000
|
+
readonly Arn: string;
|
|
28001
|
+
readonly CreationTime: string;
|
|
28002
|
+
readonly CreatorRequestId: string;
|
|
28003
|
+
readonly DomainCount: number;
|
|
28004
|
+
readonly Id: string;
|
|
28005
|
+
readonly ManagedOwnerName: string;
|
|
28006
|
+
readonly ModificationTime: string;
|
|
28007
|
+
readonly Status: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
28008
|
+
readonly StatusMessage: string;
|
|
28009
|
+
}
|
|
28010
|
+
|
|
27772
28011
|
export declare class RouteCalculator {
|
|
27773
28012
|
constructor(props: {
|
|
27774
28013
|
CalculatorName: string;
|
|
@@ -30776,15 +31015,25 @@ export declare class StackSet {
|
|
|
30776
31015
|
|
|
30777
31016
|
export declare class StackSetConstraint {
|
|
30778
31017
|
constructor(props: {
|
|
31018
|
+
/** One or more AWS accounts that will have access to the provisioned product. */
|
|
30779
31019
|
AccountList: string[];
|
|
31020
|
+
/** AdminRole ARN. */
|
|
30780
31021
|
AdminRole: string;
|
|
31022
|
+
/** The description of the constraint. */
|
|
30781
31023
|
Description: string;
|
|
31024
|
+
/** ExecutionRole name. */
|
|
30782
31025
|
ExecutionRole: string;
|
|
31026
|
+
/** The portfolio identifier. */
|
|
30783
31027
|
PortfolioId: string;
|
|
31028
|
+
/** The product identifier. */
|
|
30784
31029
|
ProductId: string;
|
|
31030
|
+
/** One or more AWS Regions where the provisioned product will be available. */
|
|
30785
31031
|
RegionList: string[];
|
|
31032
|
+
/** Permission to create, update, and delete stack instances. Choose from ALLOWED and NOT_ALLOWED. */
|
|
30786
31033
|
StackInstanceControl: string;
|
|
31034
|
+
/** The language code. */
|
|
30787
31035
|
AcceptLanguage?: string;
|
|
31036
|
+
/** Unique identifier for the constraint */
|
|
30788
31037
|
Id?: string;
|
|
30789
31038
|
}, attributes?: CFResourceAttributes);
|
|
30790
31039
|
readonly Id: string;
|
|
@@ -31968,6 +32217,14 @@ export declare class TaskTemplate {
|
|
|
31968
32217
|
readonly Arn: string;
|
|
31969
32218
|
}
|
|
31970
32219
|
|
|
32220
|
+
export declare class TelemetryEnrichment {
|
|
32221
|
+
constructor(props: {
|
|
32222
|
+
Scope?: TelemetryEnrichment_Scope;
|
|
32223
|
+
Status?: TelemetryEnrichment_Status;
|
|
32224
|
+
}, attributes?: CFResourceAttributes);
|
|
32225
|
+
readonly Status: TelemetryEnrichment_Status;
|
|
32226
|
+
}
|
|
32227
|
+
|
|
31971
32228
|
export declare class TelemetryPipelines {
|
|
31972
32229
|
constructor(props: {
|
|
31973
32230
|
Configuration: TelemetryPipelines_TelemetryPipelineConfiguration;
|
|
@@ -35363,8 +35620,7 @@ export declare class Workgroup {
|
|
|
35363
35620
|
Workgroup?: Workgroup_Workgroup;
|
|
35364
35621
|
}, attributes?: CFResourceAttributes);
|
|
35365
35622
|
readonly Workgroup_BaseCapacity: string;
|
|
35366
|
-
readonly
|
|
35367
|
-
readonly Workgroup_ConfigParameters_Item_ParameterValue: string;
|
|
35623
|
+
readonly Workgroup_ConfigParameters: string;
|
|
35368
35624
|
readonly Workgroup_CreationDate: string;
|
|
35369
35625
|
readonly Workgroup_Endpoint_Address: string;
|
|
35370
35626
|
readonly Workgroup_Endpoint_Port: string;
|
|
@@ -36043,6 +36299,20 @@ export declare class AccessScopePathRequest {
|
|
|
36043
36299
|
});
|
|
36044
36300
|
}
|
|
36045
36301
|
|
|
36302
|
+
export declare class AccessSource_Tag {
|
|
36303
|
+
constructor(props: {
|
|
36304
|
+
Key: string;
|
|
36305
|
+
Value: string;
|
|
36306
|
+
});
|
|
36307
|
+
}
|
|
36308
|
+
|
|
36309
|
+
export declare class AccessToken_Tag {
|
|
36310
|
+
constructor(props: {
|
|
36311
|
+
Key: string;
|
|
36312
|
+
Value: string;
|
|
36313
|
+
});
|
|
36314
|
+
}
|
|
36315
|
+
|
|
36046
36316
|
export declare class AccountAggregationSource {
|
|
36047
36317
|
constructor(props: {
|
|
36048
36318
|
AccountIds: string[];
|
|
@@ -47612,6 +47882,7 @@ export declare class AthenaTableReference {
|
|
|
47612
47882
|
DatabaseName: string;
|
|
47613
47883
|
TableName: string;
|
|
47614
47884
|
WorkGroup: string;
|
|
47885
|
+
CatalogName?: string;
|
|
47615
47886
|
OutputLocation?: string;
|
|
47616
47887
|
Region?: ConfiguredTable_CommercialRegion;
|
|
47617
47888
|
});
|
|
@@ -60479,6 +60750,127 @@ export declare class ConfigurationTemplate_SourceConfiguration {
|
|
|
60479
60750
|
});
|
|
60480
60751
|
}
|
|
60481
60752
|
|
|
60753
|
+
export declare class ConfiguredModelAlgorithm_ContainerConfig {
|
|
60754
|
+
constructor(props: {
|
|
60755
|
+
ImageUri: string;
|
|
60756
|
+
Arguments?: string[];
|
|
60757
|
+
Entrypoint?: string[];
|
|
60758
|
+
MetricDefinitions?: ConfiguredModelAlgorithm_MetricDefinition[];
|
|
60759
|
+
});
|
|
60760
|
+
}
|
|
60761
|
+
|
|
60762
|
+
export declare class ConfiguredModelAlgorithm_InferenceContainerConfig {
|
|
60763
|
+
constructor(props: {
|
|
60764
|
+
ImageUri: string;
|
|
60765
|
+
});
|
|
60766
|
+
}
|
|
60767
|
+
|
|
60768
|
+
export declare class ConfiguredModelAlgorithm_MetricDefinition {
|
|
60769
|
+
constructor(props: {
|
|
60770
|
+
Name: string;
|
|
60771
|
+
Regex: string;
|
|
60772
|
+
});
|
|
60773
|
+
}
|
|
60774
|
+
|
|
60775
|
+
export declare class ConfiguredModelAlgorithm_Tag {
|
|
60776
|
+
constructor(props: {
|
|
60777
|
+
Key: string;
|
|
60778
|
+
Value: string;
|
|
60779
|
+
});
|
|
60780
|
+
}
|
|
60781
|
+
|
|
60782
|
+
export declare class ConfiguredModelAlgorithmAssociation_CustomEntityConfig {
|
|
60783
|
+
constructor(props: {
|
|
60784
|
+
CustomDataIdentifiers: string[];
|
|
60785
|
+
});
|
|
60786
|
+
}
|
|
60787
|
+
|
|
60788
|
+
export declare class ConfiguredModelAlgorithmAssociation_LogRedactionConfiguration {
|
|
60789
|
+
constructor(props: {
|
|
60790
|
+
EntitiesToRedact: ConfiguredModelAlgorithmAssociation_EntityType[];
|
|
60791
|
+
CustomEntityConfig?: ConfiguredModelAlgorithmAssociation_CustomEntityConfig;
|
|
60792
|
+
});
|
|
60793
|
+
}
|
|
60794
|
+
|
|
60795
|
+
export declare class ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy {
|
|
60796
|
+
constructor(props: {
|
|
60797
|
+
AllowedAccountIds: string[];
|
|
60798
|
+
FilterPattern?: string;
|
|
60799
|
+
LogRedactionConfiguration?: ConfiguredModelAlgorithmAssociation_LogRedactionConfiguration;
|
|
60800
|
+
LogType?: ConfiguredModelAlgorithmAssociation_LogType;
|
|
60801
|
+
});
|
|
60802
|
+
}
|
|
60803
|
+
|
|
60804
|
+
export declare class ConfiguredModelAlgorithmAssociation_MetricsConfigurationPolicy {
|
|
60805
|
+
constructor(props: {
|
|
60806
|
+
NoiseLevel: ConfiguredModelAlgorithmAssociation_NoiseLevelType;
|
|
60807
|
+
});
|
|
60808
|
+
}
|
|
60809
|
+
|
|
60810
|
+
export declare class ConfiguredModelAlgorithmAssociation_PrivacyConfiguration {
|
|
60811
|
+
constructor(props: {
|
|
60812
|
+
Policies: ConfiguredModelAlgorithmAssociation_PrivacyConfigurationPolicies;
|
|
60813
|
+
});
|
|
60814
|
+
}
|
|
60815
|
+
|
|
60816
|
+
export declare class ConfiguredModelAlgorithmAssociation_PrivacyConfigurationPolicies {
|
|
60817
|
+
constructor(props: {
|
|
60818
|
+
TrainedModelExports?: ConfiguredModelAlgorithmAssociation_TrainedModelExportsConfigurationPolicy;
|
|
60819
|
+
TrainedModelInferenceJobs?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceJobsConfigurationPolicy;
|
|
60820
|
+
TrainedModels?: ConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicy;
|
|
60821
|
+
});
|
|
60822
|
+
}
|
|
60823
|
+
|
|
60824
|
+
export declare class ConfiguredModelAlgorithmAssociation_Tag {
|
|
60825
|
+
constructor(props: {
|
|
60826
|
+
Key: string;
|
|
60827
|
+
Value: string;
|
|
60828
|
+
});
|
|
60829
|
+
}
|
|
60830
|
+
|
|
60831
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSize {
|
|
60832
|
+
constructor(props: {
|
|
60833
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSizeUnitType;
|
|
60834
|
+
Value: number;
|
|
60835
|
+
});
|
|
60836
|
+
}
|
|
60837
|
+
|
|
60838
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelExportsConfigurationPolicy {
|
|
60839
|
+
constructor(props: {
|
|
60840
|
+
FilesToExport: ConfiguredModelAlgorithmAssociation_TrainedModelExportFileType[];
|
|
60841
|
+
MaxSize: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSize;
|
|
60842
|
+
});
|
|
60843
|
+
}
|
|
60844
|
+
|
|
60845
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSize {
|
|
60846
|
+
constructor(props: {
|
|
60847
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSizeUnitType;
|
|
60848
|
+
Value: number;
|
|
60849
|
+
});
|
|
60850
|
+
}
|
|
60851
|
+
|
|
60852
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelInferenceJobsConfigurationPolicy {
|
|
60853
|
+
constructor(props: {
|
|
60854
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
60855
|
+
MaxOutputSize?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSize;
|
|
60856
|
+
});
|
|
60857
|
+
}
|
|
60858
|
+
|
|
60859
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSize {
|
|
60860
|
+
constructor(props: {
|
|
60861
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSizeUnitType;
|
|
60862
|
+
Value: number;
|
|
60863
|
+
});
|
|
60864
|
+
}
|
|
60865
|
+
|
|
60866
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicy {
|
|
60867
|
+
constructor(props: {
|
|
60868
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
60869
|
+
ContainerMetrics?: ConfiguredModelAlgorithmAssociation_MetricsConfigurationPolicy;
|
|
60870
|
+
MaxArtifactSize?: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSize;
|
|
60871
|
+
});
|
|
60872
|
+
}
|
|
60873
|
+
|
|
60482
60874
|
export declare class ConfiguredTable_AggregateColumn {
|
|
60483
60875
|
constructor(props: {
|
|
60484
60876
|
ColumnNames: string[];
|
|
@@ -60538,6 +60930,7 @@ export declare class ConfiguredTable_AthenaTableReference {
|
|
|
60538
60930
|
DatabaseName: string;
|
|
60539
60931
|
TableName: string;
|
|
60540
60932
|
WorkGroup: string;
|
|
60933
|
+
CatalogName?: string;
|
|
60541
60934
|
OutputLocation?: string;
|
|
60542
60935
|
Region?: ConfiguredTable_CommercialRegion;
|
|
60543
60936
|
});
|
|
@@ -62031,6 +62424,13 @@ export declare class ConnectPrompt_Tag {
|
|
|
62031
62424
|
});
|
|
62032
62425
|
}
|
|
62033
62426
|
|
|
62427
|
+
export declare class ConnectQueue_EmailAddress {
|
|
62428
|
+
constructor(props: {
|
|
62429
|
+
/** The Amazon Resource Name (ARN) of the email address */
|
|
62430
|
+
EmailAddressArn: string;
|
|
62431
|
+
});
|
|
62432
|
+
}
|
|
62433
|
+
|
|
62034
62434
|
export declare class ConnectQueue_OutboundCallerConfig {
|
|
62035
62435
|
constructor(props: {
|
|
62036
62436
|
OutboundCallerIdName?: string;
|
|
@@ -62184,6 +62584,8 @@ export declare class ConnectSecurityProfile_Application {
|
|
|
62184
62584
|
ApplicationPermissions: string[];
|
|
62185
62585
|
/** Namespace of the application that you want to give access to. */
|
|
62186
62586
|
Namespace: string;
|
|
62587
|
+
/** The type of the application. */
|
|
62588
|
+
Type?: "MCP" | "THIRD_PARTY_APPLICATION";
|
|
62187
62589
|
});
|
|
62188
62590
|
}
|
|
62189
62591
|
|
|
@@ -62193,6 +62595,15 @@ export declare class ConnectSecurityProfile_DataTableAccessControlConfiguration
|
|
|
62193
62595
|
});
|
|
62194
62596
|
}
|
|
62195
62597
|
|
|
62598
|
+
export declare class ConnectSecurityProfile_FlowModule {
|
|
62599
|
+
constructor(props: {
|
|
62600
|
+
/** The identifier of the application that you want to give access to. */
|
|
62601
|
+
FlowModuleId: string;
|
|
62602
|
+
/** The type of the first-party application */
|
|
62603
|
+
Type: string;
|
|
62604
|
+
});
|
|
62605
|
+
}
|
|
62606
|
+
|
|
62196
62607
|
export declare class ConnectSecurityProfile_PrimaryAttributeAccessControlConfigurationItem {
|
|
62197
62608
|
constructor(props: {
|
|
62198
62609
|
/** An array of PrimaryAttributeValue objects. */
|
|
@@ -62550,17 +62961,6 @@ export declare class ContainerAction {
|
|
|
62550
62961
|
});
|
|
62551
62962
|
}
|
|
62552
62963
|
|
|
62553
|
-
export declare class ContainerConfig {
|
|
62554
|
-
constructor(props: {
|
|
62555
|
-
/** A list of arguments to apply to the container. */
|
|
62556
|
-
ContainerArguments?: string[];
|
|
62557
|
-
/** The custom entry point to use on container. */
|
|
62558
|
-
ContainerEntrypoint?: string[];
|
|
62559
|
-
/** A list of variables to apply to the custom container. */
|
|
62560
|
-
ContainerEnvironmentVariables?: AppImageConfig_CustomImageContainerEnvironmentVariable[];
|
|
62561
|
-
});
|
|
62562
|
-
}
|
|
62563
|
-
|
|
62564
62964
|
export declare class ContainerConfiguration {
|
|
62565
62965
|
constructor(props: {
|
|
62566
62966
|
ContainerUri: string;
|
|
@@ -62653,6 +63053,8 @@ export declare class ContainerFleet_LocationConfiguration {
|
|
|
62653
63053
|
constructor(props: {
|
|
62654
63054
|
Location: string;
|
|
62655
63055
|
LocationCapacity?: ContainerFleet_LocationCapacity;
|
|
63056
|
+
/** The player gateway status for the location. */
|
|
63057
|
+
PlayerGatewayStatus?: "DISABLED" | "ENABLED";
|
|
62656
63058
|
StoppedActions?: any;
|
|
62657
63059
|
});
|
|
62658
63060
|
}
|
|
@@ -62998,6 +63400,15 @@ export declare class ContainerServiceDeployment {
|
|
|
62998
63400
|
});
|
|
62999
63401
|
}
|
|
63000
63402
|
|
|
63403
|
+
export declare class ContentConfiguration {
|
|
63404
|
+
constructor(props: {
|
|
63405
|
+
/** The type of content to deliver */
|
|
63406
|
+
Type: "MEMORY_RECORDS";
|
|
63407
|
+
/** The level of content detail to deliver */
|
|
63408
|
+
Level?: "FULL_CONTENT" | "METADATA_ONLY";
|
|
63409
|
+
});
|
|
63410
|
+
}
|
|
63411
|
+
|
|
63001
63412
|
export declare class ContentFilterConfig {
|
|
63002
63413
|
constructor(props: {
|
|
63003
63414
|
InputStrength: Guardrail_FilterStrength;
|
|
@@ -63193,7 +63604,7 @@ export declare class ControlPlanePlacement {
|
|
|
63193
63604
|
export declare class ControlPlaneScalingConfig {
|
|
63194
63605
|
constructor(props: {
|
|
63195
63606
|
/** The scaling tier for the provisioned control plane. */
|
|
63196
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-xl";
|
|
63607
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-ultra" | "tier-xl";
|
|
63197
63608
|
});
|
|
63198
63609
|
}
|
|
63199
63610
|
|
|
@@ -63866,6 +64277,12 @@ export declare class CrossRegionCopyRule {
|
|
|
63866
64277
|
});
|
|
63867
64278
|
}
|
|
63868
64279
|
|
|
64280
|
+
export declare class CrossRegionCopyTarget {
|
|
64281
|
+
constructor(props: {
|
|
64282
|
+
TargetRegion?: string;
|
|
64283
|
+
});
|
|
64284
|
+
}
|
|
64285
|
+
|
|
63869
64286
|
export declare class CsrExtensions {
|
|
63870
64287
|
constructor(props: {
|
|
63871
64288
|
KeyUsage?: CertificateAuthority_KeyUsage;
|
|
@@ -64167,6 +64584,12 @@ export declare class CustomEmailSender {
|
|
|
64167
64584
|
});
|
|
64168
64585
|
}
|
|
64169
64586
|
|
|
64587
|
+
export declare class CustomEntityConfig {
|
|
64588
|
+
constructor(props: {
|
|
64589
|
+
CustomDataIdentifiers: string[];
|
|
64590
|
+
});
|
|
64591
|
+
}
|
|
64592
|
+
|
|
64170
64593
|
export declare class CustomerContact {
|
|
64171
64594
|
constructor(props: {
|
|
64172
64595
|
/** The email address of the contact. */
|
|
@@ -66741,6 +67164,19 @@ export declare class DataLake_Transitions {
|
|
|
66741
67164
|
});
|
|
66742
67165
|
}
|
|
66743
67166
|
|
|
67167
|
+
export declare class DataLakeSettings_DataLakePrincipal {
|
|
67168
|
+
constructor(props: {
|
|
67169
|
+
DataLakePrincipalIdentifier: string;
|
|
67170
|
+
});
|
|
67171
|
+
}
|
|
67172
|
+
|
|
67173
|
+
export declare class DataLakeSettings_PrincipalPermissions {
|
|
67174
|
+
constructor(props: {
|
|
67175
|
+
Permissions: string[];
|
|
67176
|
+
Principal: DataLakeSettings_DataLakePrincipal;
|
|
67177
|
+
});
|
|
67178
|
+
}
|
|
67179
|
+
|
|
66744
67180
|
export declare class DataMigration_DataMigrationSettings {
|
|
66745
67181
|
constructor(props: {
|
|
66746
67182
|
/** The property specifies whether to enable the CloudWatch log. */
|
|
@@ -71062,6 +71498,12 @@ export declare class DeploymentStrategy_Tag {
|
|
|
71062
71498
|
});
|
|
71063
71499
|
}
|
|
71064
71500
|
|
|
71501
|
+
export declare class DeploymentStrategyOptions {
|
|
71502
|
+
constructor(props: {
|
|
71503
|
+
DeploymentStrategy?: "CapacityOptimized" | "Default";
|
|
71504
|
+
});
|
|
71505
|
+
}
|
|
71506
|
+
|
|
71065
71507
|
export declare class DeploymentStyle {
|
|
71066
71508
|
constructor(props: {
|
|
71067
71509
|
/** Indicates whether to route deployment traffic behind a load balancer. */
|
|
@@ -72724,6 +73166,12 @@ export declare class DLMLifecyclePolicy_CrossRegionCopyRule {
|
|
|
72724
73166
|
});
|
|
72725
73167
|
}
|
|
72726
73168
|
|
|
73169
|
+
export declare class DLMLifecyclePolicy_CrossRegionCopyTarget {
|
|
73170
|
+
constructor(props: {
|
|
73171
|
+
TargetRegion?: string;
|
|
73172
|
+
});
|
|
73173
|
+
}
|
|
73174
|
+
|
|
72727
73175
|
export declare class DLMLifecyclePolicy_DeprecateRule {
|
|
72728
73176
|
constructor(props: {
|
|
72729
73177
|
Count?: number;
|
|
@@ -72757,8 +73205,8 @@ export declare class DLMLifecyclePolicy_EventSource {
|
|
|
72757
73205
|
export declare class DLMLifecyclePolicy_Exclusions {
|
|
72758
73206
|
constructor(props: {
|
|
72759
73207
|
ExcludeBootVolumes?: boolean;
|
|
72760
|
-
ExcludeTags?:
|
|
72761
|
-
ExcludeVolumeTypes?: Record<string, unknown
|
|
73208
|
+
ExcludeTags?: DLMLifecyclePolicy_Tag[];
|
|
73209
|
+
ExcludeVolumeTypes?: Record<string, unknown>[];
|
|
72762
73210
|
});
|
|
72763
73211
|
}
|
|
72764
73212
|
|
|
@@ -72784,7 +73232,7 @@ export declare class DLMLifecyclePolicy_PolicyDetails {
|
|
|
72784
73232
|
Actions?: DLMLifecyclePolicy_Action[];
|
|
72785
73233
|
CopyTags?: boolean;
|
|
72786
73234
|
CreateInterval?: number;
|
|
72787
|
-
CrossRegionCopyTargets?:
|
|
73235
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
72788
73236
|
EventSource?: DLMLifecyclePolicy_EventSource;
|
|
72789
73237
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
72790
73238
|
ExtendDeletion?: boolean;
|
|
@@ -73270,6 +73718,13 @@ export declare class DNSTargetResource {
|
|
|
73270
73718
|
});
|
|
73271
73719
|
}
|
|
73272
73720
|
|
|
73721
|
+
export declare class DnsView_Tag {
|
|
73722
|
+
constructor(props: {
|
|
73723
|
+
Key: string;
|
|
73724
|
+
Value: string;
|
|
73725
|
+
});
|
|
73726
|
+
}
|
|
73727
|
+
|
|
73273
73728
|
export declare class DocDBDBCluster_ServerlessV2ScalingConfiguration {
|
|
73274
73729
|
constructor(props: {
|
|
73275
73730
|
MaxCapacity: number;
|
|
@@ -74463,6 +74918,12 @@ export declare class EC2Fleet_Placement {
|
|
|
74463
74918
|
});
|
|
74464
74919
|
}
|
|
74465
74920
|
|
|
74921
|
+
export declare class EC2Fleet_ReservedCapacityOptionsRequest {
|
|
74922
|
+
constructor(props: {
|
|
74923
|
+
ReservationTypes?: "interruptible-capacity-reservation"[];
|
|
74924
|
+
});
|
|
74925
|
+
}
|
|
74926
|
+
|
|
74466
74927
|
export declare class EC2Fleet_SpotOptionsRequest {
|
|
74467
74928
|
constructor(props: {
|
|
74468
74929
|
AllocationStrategy?: "capacity-optimized" | "capacity-optimized-prioritized" | "capacityOptimized" | "capacityOptimizedPrioritized" | "diversified" | "lowest-price" | "lowestPrice" | "price-capacity-optimized" | "priceCapacityOptimized";
|
|
@@ -74493,7 +74954,7 @@ export declare class EC2Fleet_TagSpecification {
|
|
|
74493
74954
|
export declare class EC2Fleet_TargetCapacitySpecificationRequest {
|
|
74494
74955
|
constructor(props: {
|
|
74495
74956
|
TotalTargetCapacity: number;
|
|
74496
|
-
DefaultTargetCapacityType?: "on-demand" | "spot";
|
|
74957
|
+
DefaultTargetCapacityType?: "on-demand" | "reserved-capacity" | "spot";
|
|
74497
74958
|
OnDemandTargetCapacity?: number;
|
|
74498
74959
|
SpotTargetCapacity?: number;
|
|
74499
74960
|
TargetCapacityUnitType?: "memory-mib" | "units" | "vcpu";
|
|
@@ -75921,7 +76382,7 @@ export declare class EKSCluster_ControlPlanePlacement {
|
|
|
75921
76382
|
export declare class EKSCluster_ControlPlaneScalingConfig {
|
|
75922
76383
|
constructor(props: {
|
|
75923
76384
|
/** The scaling tier for the provisioned control plane. */
|
|
75924
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-xl";
|
|
76385
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-ultra" | "tier-xl";
|
|
75925
76386
|
});
|
|
75926
76387
|
}
|
|
75927
76388
|
|
|
@@ -75989,7 +76450,7 @@ export declare class EKSCluster_Provider {
|
|
|
75989
76450
|
export declare class EKSCluster_RemoteNetworkConfig {
|
|
75990
76451
|
constructor(props: {
|
|
75991
76452
|
/** Network configuration of nodes run on-premises with EKS Hybrid Nodes. */
|
|
75992
|
-
RemoteNodeNetworks
|
|
76453
|
+
RemoteNodeNetworks?: any;
|
|
75993
76454
|
/** Network configuration of pods run on-premises with EKS Hybrid Nodes. */
|
|
75994
76455
|
RemotePodNetworks?: any;
|
|
75995
76456
|
});
|
|
@@ -80274,8 +80735,8 @@ export declare class ExclusionRules {
|
|
|
80274
80735
|
export declare class Exclusions {
|
|
80275
80736
|
constructor(props: {
|
|
80276
80737
|
ExcludeBootVolumes?: boolean;
|
|
80277
|
-
ExcludeTags?:
|
|
80278
|
-
ExcludeVolumeTypes?: Record<string, unknown
|
|
80738
|
+
ExcludeTags?: DLMLifecyclePolicy_Tag[];
|
|
80739
|
+
ExcludeVolumeTypes?: Record<string, unknown>[];
|
|
80279
80740
|
});
|
|
80280
80741
|
}
|
|
80281
80742
|
|
|
@@ -80328,12 +80789,6 @@ export declare class ExecutionApprovalConfiguration {
|
|
|
80328
80789
|
});
|
|
80329
80790
|
}
|
|
80330
80791
|
|
|
80331
|
-
export declare class ExecutionControls {
|
|
80332
|
-
constructor(props: {
|
|
80333
|
-
SsmControls?: RemediationConfiguration_SsmControls;
|
|
80334
|
-
});
|
|
80335
|
-
}
|
|
80336
|
-
|
|
80337
80792
|
export declare class ExecutionPlan_CapacityUnitsConfiguration {
|
|
80338
80793
|
constructor(props: {
|
|
80339
80794
|
RescoreCapacityUnits: number;
|
|
@@ -81870,15 +82325,6 @@ export declare class Firewall_Tag {
|
|
|
81870
82325
|
});
|
|
81871
82326
|
}
|
|
81872
82327
|
|
|
81873
|
-
export declare class FirewallDomainList_Tag {
|
|
81874
|
-
constructor(props: {
|
|
81875
|
-
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
81876
|
-
Key: string;
|
|
81877
|
-
/** The value for the tag. You can specify a value that is 1 to 255 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 -. */
|
|
81878
|
-
Value: string;
|
|
81879
|
-
});
|
|
81880
|
-
}
|
|
81881
|
-
|
|
81882
82328
|
export declare class FirewallPolicy_ActionDefinition {
|
|
81883
82329
|
constructor(props: {
|
|
81884
82330
|
PublishMetricAction?: FirewallPolicy_PublishMetricAction;
|
|
@@ -81962,35 +82408,6 @@ export declare class FirewallPolicy_Tag {
|
|
|
81962
82408
|
});
|
|
81963
82409
|
}
|
|
81964
82410
|
|
|
81965
|
-
export declare class FirewallRule {
|
|
81966
|
-
constructor(props: {
|
|
81967
|
-
/** Rule Action */
|
|
81968
|
-
Action: "ALERT" | "ALLOW" | "BLOCK";
|
|
81969
|
-
/** Rule Priority */
|
|
81970
|
-
Priority: number;
|
|
81971
|
-
/** BlockOverrideDnsType */
|
|
81972
|
-
BlockOverrideDnsType?: "CNAME";
|
|
81973
|
-
/** BlockOverrideDomain */
|
|
81974
|
-
BlockOverrideDomain?: string;
|
|
81975
|
-
/** BlockOverrideTtl */
|
|
81976
|
-
BlockOverrideTtl?: number;
|
|
81977
|
-
/** BlockResponse */
|
|
81978
|
-
BlockResponse?: "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
|
81979
|
-
/** FirewallDomainRedirectionAction */
|
|
81980
|
-
ConfidenceThreshold?: "HIGH" | "LOW" | "MEDIUM";
|
|
81981
|
-
/** FirewallDomainRedirectionAction */
|
|
81982
|
-
DnsThreatProtection?: "DGA" | "DICTIONARY_DGA" | "DNS_TUNNELING";
|
|
81983
|
-
/** ResourceId */
|
|
81984
|
-
FirewallDomainListId?: string;
|
|
81985
|
-
/** FirewallDomainRedirectionAction */
|
|
81986
|
-
FirewallDomainRedirectionAction?: "INSPECT_REDIRECTION_DOMAIN" | "TRUST_REDIRECTION_DOMAIN";
|
|
81987
|
-
/** ResourceId */
|
|
81988
|
-
FirewallThreatProtectionId?: string;
|
|
81989
|
-
/** Qtype */
|
|
81990
|
-
Qtype?: string;
|
|
81991
|
-
});
|
|
81992
|
-
}
|
|
81993
|
-
|
|
81994
82411
|
export declare class FirewallRuleGroup_FirewallRule {
|
|
81995
82412
|
constructor(props: {
|
|
81996
82413
|
/** Rule Action */
|
|
@@ -82210,6 +82627,15 @@ export declare class FlowLog_Tag {
|
|
|
82210
82627
|
});
|
|
82211
82628
|
}
|
|
82212
82629
|
|
|
82630
|
+
export declare class FlowModule {
|
|
82631
|
+
constructor(props: {
|
|
82632
|
+
/** The identifier of the application that you want to give access to. */
|
|
82633
|
+
FlowModuleId: string;
|
|
82634
|
+
/** The type of the first-party application */
|
|
82635
|
+
Type: string;
|
|
82636
|
+
});
|
|
82637
|
+
}
|
|
82638
|
+
|
|
82213
82639
|
export declare class FlowOutput_DestinationConfiguration {
|
|
82214
82640
|
constructor(props: {
|
|
82215
82641
|
/** The IP address where contents of the media stream will be sent. */
|
|
@@ -84166,6 +84592,8 @@ export declare class GameLiftFleet_LocationConfiguration {
|
|
|
84166
84592
|
constructor(props: {
|
|
84167
84593
|
Location: string;
|
|
84168
84594
|
LocationCapacity?: GameLiftFleet_LocationCapacity;
|
|
84595
|
+
/** The player gateway status for the location. */
|
|
84596
|
+
PlayerGatewayStatus?: "DISABLED" | "ENABLED";
|
|
84169
84597
|
});
|
|
84170
84598
|
}
|
|
84171
84599
|
|
|
@@ -84178,6 +84606,13 @@ export declare class GameLiftFleet_ManagedCapacityConfiguration {
|
|
|
84178
84606
|
});
|
|
84179
84607
|
}
|
|
84180
84608
|
|
|
84609
|
+
export declare class GameLiftFleet_PlayerGatewayConfiguration {
|
|
84610
|
+
constructor(props: {
|
|
84611
|
+
/** The IP protocol supported by the game server. */
|
|
84612
|
+
GameServerIpProtocolSupported?: "DUAL_STACK" | "IPv4";
|
|
84613
|
+
});
|
|
84614
|
+
}
|
|
84615
|
+
|
|
84181
84616
|
export declare class GameLiftFleet_ResourceCreationLimitPolicy {
|
|
84182
84617
|
constructor(props: {
|
|
84183
84618
|
/** The maximum number of game sessions that an individual can create during the policy period. */
|
|
@@ -85138,6 +85573,13 @@ export declare class GlobalReplicationGroupMember {
|
|
|
85138
85573
|
});
|
|
85139
85574
|
}
|
|
85140
85575
|
|
|
85576
|
+
export declare class GlobalResolver_Tag {
|
|
85577
|
+
constructor(props: {
|
|
85578
|
+
Key: string;
|
|
85579
|
+
Value: string;
|
|
85580
|
+
});
|
|
85581
|
+
}
|
|
85582
|
+
|
|
85141
85583
|
export declare class GlobalTable_AttributeDefinition {
|
|
85142
85584
|
constructor(props: {
|
|
85143
85585
|
AttributeName: string;
|
|
@@ -85666,7 +86108,7 @@ export declare class GlueSecurityConfiguration_EncryptionConfiguration {
|
|
|
85666
86108
|
constructor(props: {
|
|
85667
86109
|
CloudWatchEncryption?: GlueSecurityConfiguration_CloudWatchEncryption;
|
|
85668
86110
|
JobBookmarksEncryption?: GlueSecurityConfiguration_JobBookmarksEncryption;
|
|
85669
|
-
S3Encryptions?:
|
|
86111
|
+
S3Encryptions?: GlueSecurityConfiguration_S3Encryption[];
|
|
85670
86112
|
});
|
|
85671
86113
|
}
|
|
85672
86114
|
|
|
@@ -85677,6 +86119,13 @@ export declare class GlueSecurityConfiguration_JobBookmarksEncryption {
|
|
|
85677
86119
|
});
|
|
85678
86120
|
}
|
|
85679
86121
|
|
|
86122
|
+
export declare class GlueSecurityConfiguration_S3Encryption {
|
|
86123
|
+
constructor(props: {
|
|
86124
|
+
KmsKeyArn?: string;
|
|
86125
|
+
S3EncryptionMode?: string;
|
|
86126
|
+
});
|
|
86127
|
+
}
|
|
86128
|
+
|
|
85680
86129
|
export declare class GlueTable_Column {
|
|
85681
86130
|
constructor(props: {
|
|
85682
86131
|
Name: string;
|
|
@@ -89431,6 +89880,12 @@ export declare class InferenceComponentStartupParameters {
|
|
|
89431
89880
|
});
|
|
89432
89881
|
}
|
|
89433
89882
|
|
|
89883
|
+
export declare class InferenceContainerConfig {
|
|
89884
|
+
constructor(props: {
|
|
89885
|
+
ImageUri: string;
|
|
89886
|
+
});
|
|
89887
|
+
}
|
|
89888
|
+
|
|
89434
89889
|
export declare class InferenceExecutionConfig {
|
|
89435
89890
|
constructor(props: {
|
|
89436
89891
|
Mode: string;
|
|
@@ -90381,6 +90836,13 @@ export declare class Insight_StringFilter {
|
|
|
90381
90836
|
});
|
|
90382
90837
|
}
|
|
90383
90838
|
|
|
90839
|
+
export declare class InsightRule_Tag {
|
|
90840
|
+
constructor(props: {
|
|
90841
|
+
Key: string;
|
|
90842
|
+
Value: string;
|
|
90843
|
+
});
|
|
90844
|
+
}
|
|
90845
|
+
|
|
90384
90846
|
export declare class InsightsConfiguration {
|
|
90385
90847
|
constructor(props: {
|
|
90386
90848
|
/** Set the InsightsEnabled value to true to enable insights or false to disable insights. */
|
|
@@ -95320,6 +95782,13 @@ export declare class KinesisFirehoseConfig {
|
|
|
95320
95782
|
});
|
|
95321
95783
|
}
|
|
95322
95784
|
|
|
95785
|
+
export declare class KinesisResource {
|
|
95786
|
+
constructor(props: {
|
|
95787
|
+
ContentConfigurations: Memory_ContentConfiguration[];
|
|
95788
|
+
DataStreamArn: string;
|
|
95789
|
+
});
|
|
95790
|
+
}
|
|
95791
|
+
|
|
95323
95792
|
export declare class KinesisSettings {
|
|
95324
95793
|
constructor(props: {
|
|
95325
95794
|
IncludeControlDetails?: boolean;
|
|
@@ -99122,6 +99591,13 @@ export declare class LogPublishingOptions {
|
|
|
99122
99591
|
});
|
|
99123
99592
|
}
|
|
99124
99593
|
|
|
99594
|
+
export declare class LogRedactionConfiguration {
|
|
99595
|
+
constructor(props: {
|
|
99596
|
+
EntitiesToRedact: ConfiguredModelAlgorithmAssociation_EntityType[];
|
|
99597
|
+
CustomEntityConfig?: ConfiguredModelAlgorithmAssociation_CustomEntityConfig;
|
|
99598
|
+
});
|
|
99599
|
+
}
|
|
99600
|
+
|
|
99125
99601
|
export declare class LogsBackupConfiguration {
|
|
99126
99602
|
constructor(props: {
|
|
99127
99603
|
Region: string;
|
|
@@ -99136,6 +99612,15 @@ export declare class LogsConfig {
|
|
|
99136
99612
|
});
|
|
99137
99613
|
}
|
|
99138
99614
|
|
|
99615
|
+
export declare class LogsConfigurationPolicy {
|
|
99616
|
+
constructor(props: {
|
|
99617
|
+
AllowedAccountIds: string[];
|
|
99618
|
+
FilterPattern?: string;
|
|
99619
|
+
LogRedactionConfiguration?: ConfiguredModelAlgorithmAssociation_LogRedactionConfiguration;
|
|
99620
|
+
LogType?: ConfiguredModelAlgorithmAssociation_LogType;
|
|
99621
|
+
});
|
|
99622
|
+
}
|
|
99623
|
+
|
|
99139
99624
|
export declare class LogsDestination_Tag {
|
|
99140
99625
|
constructor(props: {
|
|
99141
99626
|
/** 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 @. */
|
|
@@ -103099,13 +103584,13 @@ export declare class MediaPackageChannel_HlsIngest {
|
|
|
103099
103584
|
export declare class MediaPackageChannel_IngestEndpoint {
|
|
103100
103585
|
constructor(props: {
|
|
103101
103586
|
/** The system generated unique identifier for the IngestEndpoint */
|
|
103102
|
-
Id
|
|
103587
|
+
Id?: string;
|
|
103103
103588
|
/** The system generated password for ingest authentication. */
|
|
103104
|
-
Password
|
|
103589
|
+
Password?: string;
|
|
103105
103590
|
/** The ingest URL to which the source stream should be sent. */
|
|
103106
|
-
Url
|
|
103591
|
+
Url?: string;
|
|
103107
103592
|
/** The system generated username for ingest authentication. */
|
|
103108
|
-
Username
|
|
103593
|
+
Username?: string;
|
|
103109
103594
|
});
|
|
103110
103595
|
}
|
|
103111
103596
|
|
|
@@ -104058,6 +104543,15 @@ export declare class MemberSpecification {
|
|
|
104058
104543
|
});
|
|
104059
104544
|
}
|
|
104060
104545
|
|
|
104546
|
+
export declare class Memory_ContentConfiguration {
|
|
104547
|
+
constructor(props: {
|
|
104548
|
+
/** The type of content to deliver */
|
|
104549
|
+
Type: "MEMORY_RECORDS";
|
|
104550
|
+
/** The level of content detail to deliver */
|
|
104551
|
+
Level?: "FULL_CONTENT" | "METADATA_ONLY";
|
|
104552
|
+
});
|
|
104553
|
+
}
|
|
104554
|
+
|
|
104061
104555
|
export declare class Memory_CustomConfigurationInput {
|
|
104062
104556
|
constructor(props: {
|
|
104063
104557
|
EpisodicOverride?: Memory_EpisodicOverride;
|
|
@@ -104149,6 +104643,13 @@ export declare class Memory_InvocationConfigurationInput {
|
|
|
104149
104643
|
});
|
|
104150
104644
|
}
|
|
104151
104645
|
|
|
104646
|
+
export declare class Memory_KinesisResource {
|
|
104647
|
+
constructor(props: {
|
|
104648
|
+
ContentConfigurations: Memory_ContentConfiguration[];
|
|
104649
|
+
DataStreamArn: string;
|
|
104650
|
+
});
|
|
104651
|
+
}
|
|
104652
|
+
|
|
104152
104653
|
export declare class Memory_MemoryStrategy {
|
|
104153
104654
|
constructor(props: {
|
|
104154
104655
|
CustomMemoryStrategy?: Memory_CustomMemoryStrategy;
|
|
@@ -104237,6 +104738,18 @@ export declare class Memory_StrategyConfiguration {
|
|
|
104237
104738
|
});
|
|
104238
104739
|
}
|
|
104239
104740
|
|
|
104741
|
+
export declare class Memory_StreamDeliveryResource {
|
|
104742
|
+
constructor(props: {
|
|
104743
|
+
Kinesis?: Memory_KinesisResource;
|
|
104744
|
+
});
|
|
104745
|
+
}
|
|
104746
|
+
|
|
104747
|
+
export declare class Memory_StreamDeliveryResources {
|
|
104748
|
+
constructor(props: {
|
|
104749
|
+
Resources: Memory_StreamDeliveryResource[];
|
|
104750
|
+
});
|
|
104751
|
+
}
|
|
104752
|
+
|
|
104240
104753
|
export declare class Memory_SummaryConsolidationOverride {
|
|
104241
104754
|
constructor(props: {
|
|
104242
104755
|
AppendToPrompt: string;
|
|
@@ -104884,123 +105397,6 @@ export declare class MetricCharacteristics {
|
|
|
104884
105397
|
});
|
|
104885
105398
|
}
|
|
104886
105399
|
|
|
104887
|
-
export declare class MetricDefinition {
|
|
104888
|
-
constructor(props: {
|
|
104889
|
-
/** The name for the metric that is defined in this structure. For extended metrics, valid values are the following:
|
|
104890
|
-
|
|
104891
|
-
PerformanceNavigationDuration
|
|
104892
|
-
|
|
104893
|
-
PerformanceResourceDuration
|
|
104894
|
-
|
|
104895
|
-
NavigationSatisfiedTransaction
|
|
104896
|
-
|
|
104897
|
-
NavigationToleratedTransaction
|
|
104898
|
-
|
|
104899
|
-
NavigationFrustratedTransaction
|
|
104900
|
-
|
|
104901
|
-
WebVitalsCumulativeLayoutShift
|
|
104902
|
-
|
|
104903
|
-
WebVitalsFirstInputDelay
|
|
104904
|
-
|
|
104905
|
-
WebVitalsLargestContentfulPaint
|
|
104906
|
-
|
|
104907
|
-
WebVitalsInteractionToNextPaint
|
|
104908
|
-
|
|
104909
|
-
JsErrorCount
|
|
104910
|
-
|
|
104911
|
-
HttpErrorCount
|
|
104912
|
-
|
|
104913
|
-
SessionCount
|
|
104914
|
-
|
|
104915
|
-
PageViewCount
|
|
104916
|
-
|
|
104917
|
-
Http4xxCount
|
|
104918
|
-
|
|
104919
|
-
Http5xxCount
|
|
104920
|
-
|
|
104921
|
-
SessionDuration
|
|
104922
|
-
|
|
104923
|
-
PageViewCountPerSession
|
|
104924
|
-
|
|
104925
|
-
JsErrorCountPerSession
|
|
104926
|
-
|
|
104927
|
-
Http4xxCountPerSession
|
|
104928
|
-
|
|
104929
|
-
Http5xxCountPerSession
|
|
104930
|
-
|
|
104931
|
-
JsErrorCountPerPageView
|
|
104932
|
-
|
|
104933
|
-
Http4xxCountPerPageView
|
|
104934
|
-
|
|
104935
|
-
Http5xxCountPerPageView
|
|
104936
|
-
|
|
104937
|
-
TimeOnPage
|
|
104938
|
-
|
|
104939
|
-
ColdLaunchTime
|
|
104940
|
-
|
|
104941
|
-
WarmLaunchTime
|
|
104942
|
-
|
|
104943
|
-
CrashCount
|
|
104944
|
-
|
|
104945
|
-
ANRCount
|
|
104946
|
-
|
|
104947
|
-
AppHangCount
|
|
104948
|
-
|
|
104949
|
-
ScreenLoadCount
|
|
104950
|
-
|
|
104951
|
-
ScreenLoadTime
|
|
104952
|
-
|
|
104953
|
-
NetworkLatency
|
|
104954
|
-
|
|
104955
|
-
SpanPayloadSize
|
|
104956
|
-
|
|
104957
|
-
LogEventPayloadSize */
|
|
104958
|
-
Name: string;
|
|
104959
|
-
/** Use this field only if you are sending the metric to CloudWatch.
|
|
104960
|
-
|
|
104961
|
-
This field is a map of field paths to dimension names. It defines the dimensions to associate with this metric in CloudWatch. For extended metrics, valid values for the entries in this field are the following:
|
|
104962
|
-
|
|
104963
|
-
"metadata.pageId": "PageId"
|
|
104964
|
-
|
|
104965
|
-
"metadata.browserName": "BrowserName"
|
|
104966
|
-
|
|
104967
|
-
"metadata.deviceType": "DeviceType"
|
|
104968
|
-
|
|
104969
|
-
"metadata.osName": "OSName"
|
|
104970
|
-
|
|
104971
|
-
"metadata.countryCode": "CountryCode"
|
|
104972
|
-
|
|
104973
|
-
"event_details.fileType": "FileType"
|
|
104974
|
-
|
|
104975
|
-
All dimensions listed in this field must also be included in EventPattern. */
|
|
104976
|
-
DimensionKeys?: Record<string, unknown>;
|
|
104977
|
-
/** The pattern that defines the metric, specified as a JSON object. RUM checks events that happen in a user's session against the pattern, and events that match the pattern are sent to the metric destination.
|
|
104978
|
-
|
|
104979
|
-
When you define extended metrics, the metric definition is not valid if EventPattern is omitted.
|
|
104980
|
-
|
|
104981
|
-
Example event patterns:
|
|
104982
|
-
|
|
104983
|
-
'{ "event_type": ["com.amazon.rum.js_error_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], } }'
|
|
104984
|
-
|
|
104985
|
-
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Firefox" ] }, "event_details": { "duration": [{ "numeric": [ "<", 2000 ] }] } }'
|
|
104986
|
-
|
|
104987
|
-
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], "countryCode": [ "US" ] }, "event_details": { "duration": [{ "numeric": [ ">=", 2000, "<", 8000 ] }] } }'
|
|
104988
|
-
|
|
104989
|
-
If the metrics destination' is CloudWatch and the event also matches a value in DimensionKeys, then the metric is published with the specified dimensions. */
|
|
104990
|
-
EventPattern?: string;
|
|
104991
|
-
/** The namespace used by CloudWatch Metrics for the metric that is defined in this structure */
|
|
104992
|
-
Namespace?: string;
|
|
104993
|
-
/** The CloudWatch metric unit to use for this metric. If you omit this field, the metric is recorded with no unit. */
|
|
104994
|
-
UnitLabel?: string;
|
|
104995
|
-
/** The field within the event object that the metric value is sourced from.
|
|
104996
|
-
|
|
104997
|
-
If you omit this field, a hardcoded value of 1 is pushed as the metric value. This is useful if you just want to count the number of events that the filter catches.
|
|
104998
|
-
|
|
104999
|
-
If this metric is sent to Evidently, this field will be passed to Evidently raw and Evidently will handle data extraction from the event. Note: Evidently has been discontinued. */
|
|
105000
|
-
ValueKey?: string;
|
|
105001
|
-
});
|
|
105002
|
-
}
|
|
105003
|
-
|
|
105004
105400
|
export declare class MetricDefinitionObject {
|
|
105005
105401
|
constructor(props: {
|
|
105006
105402
|
/** The JSON path to reference the entity id in the event. */
|
|
@@ -105151,6 +105547,12 @@ export declare class MetricsConfig {
|
|
|
105151
105547
|
});
|
|
105152
105548
|
}
|
|
105153
105549
|
|
|
105550
|
+
export declare class MetricsConfigurationPolicy {
|
|
105551
|
+
constructor(props: {
|
|
105552
|
+
NoiseLevel: ConfiguredModelAlgorithmAssociation_NoiseLevelType;
|
|
105553
|
+
});
|
|
105554
|
+
}
|
|
105555
|
+
|
|
105154
105556
|
export declare class MetricsSource {
|
|
105155
105557
|
constructor(props: {
|
|
105156
105558
|
/** The type of content stored in the metric source. */
|
|
@@ -109524,10 +109926,15 @@ export declare class Nodegroup_UpdateConfig {
|
|
|
109524
109926
|
|
|
109525
109927
|
export declare class NodeGroupConfiguration {
|
|
109526
109928
|
constructor(props: {
|
|
109929
|
+
/** Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to. */
|
|
109527
109930
|
NodeGroupId?: string;
|
|
109931
|
+
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
109528
109932
|
PrimaryAvailabilityZone?: string;
|
|
109933
|
+
/** A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified. */
|
|
109529
109934
|
ReplicaAvailabilityZones?: string[];
|
|
109935
|
+
/** The number of read replica nodes in this node group (shard). */
|
|
109530
109936
|
ReplicaCount?: number;
|
|
109937
|
+
/** A string of comma-separated values where the first set of values are the slot numbers (zero based), and the second set of values are the keyspaces for each slot. The following example specifies three slots (numbered 0, 1, and 2): 0,1,2,0-4999,5000-9999,10000-16,383. */
|
|
109531
109938
|
Slots?: string;
|
|
109532
109939
|
});
|
|
109533
109940
|
}
|
|
@@ -110778,6 +111185,12 @@ export declare class OpenSearchServiceDomain_ColdStorageOptions {
|
|
|
110778
111185
|
});
|
|
110779
111186
|
}
|
|
110780
111187
|
|
|
111188
|
+
export declare class OpenSearchServiceDomain_DeploymentStrategyOptions {
|
|
111189
|
+
constructor(props: {
|
|
111190
|
+
DeploymentStrategy?: "CapacityOptimized" | "Default";
|
|
111191
|
+
});
|
|
111192
|
+
}
|
|
111193
|
+
|
|
110781
111194
|
export declare class OpenSearchServiceDomain_DomainEndpointOptions {
|
|
110782
111195
|
constructor(props: {
|
|
110783
111196
|
CustomEndpoint?: string;
|
|
@@ -115443,6 +115856,13 @@ export declare class PlaybackRestrictionPolicy_Tag {
|
|
|
115443
115856
|
});
|
|
115444
115857
|
}
|
|
115445
115858
|
|
|
115859
|
+
export declare class PlayerGatewayConfiguration {
|
|
115860
|
+
constructor(props: {
|
|
115861
|
+
/** The IP protocol supported by the game server. */
|
|
115862
|
+
GameServerIpProtocolSupported?: "DUAL_STACK" | "IPv4";
|
|
115863
|
+
});
|
|
115864
|
+
}
|
|
115865
|
+
|
|
115446
115866
|
export declare class PlayerLatencyPolicy {
|
|
115447
115867
|
constructor(props: {
|
|
115448
115868
|
/** The maximum latency value that is allowed for any player, in milliseconds. All policies must have a value set for this property. */
|
|
@@ -115563,7 +115983,7 @@ export declare class PolicyDetails {
|
|
|
115563
115983
|
Actions?: DLMLifecyclePolicy_Action[];
|
|
115564
115984
|
CopyTags?: boolean;
|
|
115565
115985
|
CreateInterval?: number;
|
|
115566
|
-
CrossRegionCopyTargets?:
|
|
115986
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
115567
115987
|
EventSource?: DLMLifecyclePolicy_EventSource;
|
|
115568
115988
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
115569
115989
|
ExtendDeletion?: boolean;
|
|
@@ -115732,6 +116152,12 @@ export declare class PolicyStore_KmsEncryptionState {
|
|
|
115732
116152
|
});
|
|
115733
116153
|
}
|
|
115734
116154
|
|
|
116155
|
+
export declare class PolicyStore_SchemaDefinition {
|
|
116156
|
+
constructor(props: {
|
|
116157
|
+
CedarJson?: string;
|
|
116158
|
+
});
|
|
116159
|
+
}
|
|
116160
|
+
|
|
115735
116161
|
export declare class PolicyStore_Tag {
|
|
115736
116162
|
constructor(props: {
|
|
115737
116163
|
Key: string;
|
|
@@ -116370,6 +116796,20 @@ export declare class PrivacyBudgetTemplate_Tag {
|
|
|
116370
116796
|
});
|
|
116371
116797
|
}
|
|
116372
116798
|
|
|
116799
|
+
export declare class PrivacyConfiguration {
|
|
116800
|
+
constructor(props: {
|
|
116801
|
+
Policies: ConfiguredModelAlgorithmAssociation_PrivacyConfigurationPolicies;
|
|
116802
|
+
});
|
|
116803
|
+
}
|
|
116804
|
+
|
|
116805
|
+
export declare class PrivacyConfigurationPolicies {
|
|
116806
|
+
constructor(props: {
|
|
116807
|
+
TrainedModelExports?: ConfiguredModelAlgorithmAssociation_TrainedModelExportsConfigurationPolicy;
|
|
116808
|
+
TrainedModelInferenceJobs?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceJobsConfigurationPolicy;
|
|
116809
|
+
TrainedModels?: ConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicy;
|
|
116810
|
+
});
|
|
116811
|
+
}
|
|
116812
|
+
|
|
116373
116813
|
export declare class PrivateDnsNameOptionsRequest {
|
|
116374
116814
|
constructor(props: {
|
|
116375
116815
|
EnableResourceNameDnsAAAARecord?: boolean;
|
|
@@ -130281,19 +130721,6 @@ export declare class Relevance {
|
|
|
130281
130721
|
});
|
|
130282
130722
|
}
|
|
130283
130723
|
|
|
130284
|
-
export declare class RemediationConfiguration_ExecutionControls {
|
|
130285
|
-
constructor(props: {
|
|
130286
|
-
SsmControls?: RemediationConfiguration_SsmControls;
|
|
130287
|
-
});
|
|
130288
|
-
}
|
|
130289
|
-
|
|
130290
|
-
export declare class RemediationConfiguration_SsmControls {
|
|
130291
|
-
constructor(props: {
|
|
130292
|
-
ConcurrentExecutionRatePercentage?: number;
|
|
130293
|
-
ErrorPercentage?: number;
|
|
130294
|
-
});
|
|
130295
|
-
}
|
|
130296
|
-
|
|
130297
130724
|
export declare class RemixSettings {
|
|
130298
130725
|
constructor(props: {
|
|
130299
130726
|
ChannelMappings?: MediaLiveChannel_AudioChannelMapping[];
|
|
@@ -130312,7 +130739,7 @@ export declare class RemoteAccess {
|
|
|
130312
130739
|
export declare class RemoteNetworkConfig {
|
|
130313
130740
|
constructor(props: {
|
|
130314
130741
|
/** Network configuration of nodes run on-premises with EKS Hybrid Nodes. */
|
|
130315
|
-
RemoteNodeNetworks
|
|
130742
|
+
RemoteNodeNetworks?: any;
|
|
130316
130743
|
/** Network configuration of pods run on-premises with EKS Hybrid Nodes. */
|
|
130317
130744
|
RemotePodNetworks?: any;
|
|
130318
130745
|
});
|
|
@@ -130518,6 +130945,7 @@ export declare class ReplicationConfiguration_RepositoryFilter {
|
|
|
130518
130945
|
|
|
130519
130946
|
export declare class ReplicationGroup_CloudWatchLogsDestinationDetails {
|
|
130520
130947
|
constructor(props: {
|
|
130948
|
+
/** The name of the CloudWatch Logs log group. */
|
|
130521
130949
|
LogGroup: string;
|
|
130522
130950
|
});
|
|
130523
130951
|
}
|
|
@@ -130529,8 +130957,18 @@ export declare class ReplicationGroup_DestinationDetails {
|
|
|
130529
130957
|
});
|
|
130530
130958
|
}
|
|
130531
130959
|
|
|
130960
|
+
export declare class ReplicationGroup_Endpoint {
|
|
130961
|
+
constructor(props: {
|
|
130962
|
+
/** The DNS hostname of the cache node. */
|
|
130963
|
+
Address?: string;
|
|
130964
|
+
/** The port number that the cache engine is listening on. */
|
|
130965
|
+
Port?: string;
|
|
130966
|
+
});
|
|
130967
|
+
}
|
|
130968
|
+
|
|
130532
130969
|
export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
130533
130970
|
constructor(props: {
|
|
130971
|
+
/** The name of the Kinesis Data Firehose delivery stream. */
|
|
130534
130972
|
DeliveryStream: string;
|
|
130535
130973
|
});
|
|
130536
130974
|
}
|
|
@@ -130538,25 +130976,35 @@ export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
|
130538
130976
|
export declare class ReplicationGroup_LogDeliveryConfigurationRequest {
|
|
130539
130977
|
constructor(props: {
|
|
130540
130978
|
DestinationDetails: ReplicationGroup_DestinationDetails;
|
|
130979
|
+
/** Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type. Valid values are either cloudwatch-logs or kinesis-firehose. */
|
|
130541
130980
|
DestinationType: string;
|
|
130981
|
+
/** Valid values are either json or text. */
|
|
130542
130982
|
LogFormat: string;
|
|
130983
|
+
/** Valid value is either slow-log, which refers to slow-log or engine-log. */
|
|
130543
130984
|
LogType: string;
|
|
130544
130985
|
});
|
|
130545
130986
|
}
|
|
130546
130987
|
|
|
130547
130988
|
export declare class ReplicationGroup_NodeGroupConfiguration {
|
|
130548
130989
|
constructor(props: {
|
|
130990
|
+
/** Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to. */
|
|
130549
130991
|
NodeGroupId?: string;
|
|
130992
|
+
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
130550
130993
|
PrimaryAvailabilityZone?: string;
|
|
130994
|
+
/** A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified. */
|
|
130551
130995
|
ReplicaAvailabilityZones?: string[];
|
|
130996
|
+
/** The number of read replica nodes in this node group (shard). */
|
|
130552
130997
|
ReplicaCount?: number;
|
|
130998
|
+
/** A string of comma-separated values where the first set of values are the slot numbers (zero based), and the second set of values are the keyspaces for each slot. The following example specifies three slots (numbered 0, 1, and 2): 0,1,2,0-4999,5000-9999,10000-16,383. */
|
|
130553
130999
|
Slots?: string;
|
|
130554
131000
|
});
|
|
130555
131001
|
}
|
|
130556
131002
|
|
|
130557
131003
|
export declare class ReplicationGroup_Tag {
|
|
130558
131004
|
constructor(props: {
|
|
131005
|
+
/** 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 -. */
|
|
130559
131006
|
Key: string;
|
|
131007
|
+
/** 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 -. */
|
|
130560
131008
|
Value: string;
|
|
130561
131009
|
});
|
|
130562
131010
|
}
|
|
@@ -131033,6 +131481,12 @@ export declare class RequiredFieldInfo {
|
|
|
131033
131481
|
});
|
|
131034
131482
|
}
|
|
131035
131483
|
|
|
131484
|
+
export declare class ReservedCapacityOptionsRequest {
|
|
131485
|
+
constructor(props: {
|
|
131486
|
+
ReservationTypes?: "interruptible-capacity-reservation"[];
|
|
131487
|
+
});
|
|
131488
|
+
}
|
|
131489
|
+
|
|
131036
131490
|
export declare class ResetTimer {
|
|
131037
131491
|
constructor(props: {
|
|
131038
131492
|
/** The name of the timer to reset. */
|
|
@@ -132579,6 +133033,13 @@ export declare class Route {
|
|
|
132579
133033
|
});
|
|
132580
133034
|
}
|
|
132581
133035
|
|
|
133036
|
+
export declare class Route53GlobalResolverFirewallDomainList_Tag {
|
|
133037
|
+
constructor(props: {
|
|
133038
|
+
Key: string;
|
|
133039
|
+
Value: string;
|
|
133040
|
+
});
|
|
133041
|
+
}
|
|
133042
|
+
|
|
132582
133043
|
export declare class Route53HealthCheckConfiguration {
|
|
132583
133044
|
constructor(props: {
|
|
132584
133045
|
HostedZoneId: string;
|
|
@@ -132669,6 +133130,15 @@ export declare class Route53RecoveryReadinessResourceSet_TargetResource {
|
|
|
132669
133130
|
});
|
|
132670
133131
|
}
|
|
132671
133132
|
|
|
133133
|
+
export declare class Route53ResolverFirewallDomainList_Tag {
|
|
133134
|
+
constructor(props: {
|
|
133135
|
+
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
133136
|
+
Key: string;
|
|
133137
|
+
/** The value for the tag. You can specify a value that is 1 to 255 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 -. */
|
|
133138
|
+
Value: string;
|
|
133139
|
+
});
|
|
133140
|
+
}
|
|
133141
|
+
|
|
132672
133142
|
export declare class Route53ResourceRecordSet {
|
|
132673
133143
|
constructor(props: {
|
|
132674
133144
|
RecordSetIdentifier?: string;
|
|
@@ -134044,15 +134514,6 @@ export declare class S3DestinationProperties {
|
|
|
134044
134514
|
});
|
|
134045
134515
|
}
|
|
134046
134516
|
|
|
134047
|
-
export declare class S3Encryption {
|
|
134048
|
-
constructor(props: {
|
|
134049
|
-
/** Encryption mode for encrypting artifacts when uploading to S3. Valid values: SSE_S3 and SSE_KMS. */
|
|
134050
|
-
EncryptionMode?: string;
|
|
134051
|
-
/** KMS key Arn for encrypting artifacts when uploading to S3. You must specify KMS key Arn for SSE_KMS encryption mode only. */
|
|
134052
|
-
KmsKeyArn?: string;
|
|
134053
|
-
});
|
|
134054
|
-
}
|
|
134055
|
-
|
|
134056
134517
|
export declare class S3EncryptionConfiguration {
|
|
134057
134518
|
constructor(props: {
|
|
134058
134519
|
/** The S3 encryption option. */
|
|
@@ -136114,6 +136575,24 @@ export declare class SamplingConfig {
|
|
|
136114
136575
|
});
|
|
136115
136576
|
}
|
|
136116
136577
|
|
|
136578
|
+
export declare class SamplingRateBoost {
|
|
136579
|
+
constructor(props: {
|
|
136580
|
+
/** Time window (in minutes) in which only one sampling rate boost can be triggered. After a boost occurs, no further boosts are allowed until the next window. */
|
|
136581
|
+
CooldownWindowMinutes: number;
|
|
136582
|
+
/** The maximum sampling rate X-Ray will apply when it detects anomalies. X-Ray determines the appropriate rate between your baseline and the maximum, depending on anomaly activity. */
|
|
136583
|
+
MaxRate: number;
|
|
136584
|
+
});
|
|
136585
|
+
}
|
|
136586
|
+
|
|
136587
|
+
export declare class SamplingRule_SamplingRateBoost {
|
|
136588
|
+
constructor(props: {
|
|
136589
|
+
/** Time window (in minutes) in which only one sampling rate boost can be triggered. After a boost occurs, no further boosts are allowed until the next window. */
|
|
136590
|
+
CooldownWindowMinutes: number;
|
|
136591
|
+
/** The maximum sampling rate X-Ray will apply when it detects anomalies. X-Ray determines the appropriate rate between your baseline and the maximum, depending on anomaly activity. */
|
|
136592
|
+
MaxRate: number;
|
|
136593
|
+
});
|
|
136594
|
+
}
|
|
136595
|
+
|
|
136117
136596
|
export declare class SamplingRule_SamplingRule {
|
|
136118
136597
|
constructor(props: {
|
|
136119
136598
|
/** The percentage of matching requests to instrument, after the reservoir is exhausted. */
|
|
@@ -136138,6 +136617,7 @@ export declare class SamplingRule_SamplingRule {
|
|
|
136138
136617
|
Attributes?: Record<string, unknown>;
|
|
136139
136618
|
RuleARN?: string;
|
|
136140
136619
|
RuleName?: string;
|
|
136620
|
+
SamplingRateBoost?: SamplingRule_SamplingRateBoost;
|
|
136141
136621
|
/** The version of the sampling rule format (1) */
|
|
136142
136622
|
Version?: number;
|
|
136143
136623
|
});
|
|
@@ -136171,6 +136651,7 @@ export declare class SamplingRule_SamplingRuleUpdate {
|
|
|
136171
136651
|
ResourceARN?: string;
|
|
136172
136652
|
RuleARN?: string;
|
|
136173
136653
|
RuleName?: string;
|
|
136654
|
+
SamplingRateBoost?: SamplingRule_SamplingRateBoost;
|
|
136174
136655
|
/** Matches the name that the service uses to identify itself in segments. */
|
|
136175
136656
|
ServiceName?: string;
|
|
136176
136657
|
/** Matches the origin that the service uses to identify its type in segments. */
|
|
@@ -136217,6 +136698,7 @@ export declare class SamplingRuleUpdate {
|
|
|
136217
136698
|
ResourceARN?: string;
|
|
136218
136699
|
RuleARN?: string;
|
|
136219
136700
|
RuleName?: string;
|
|
136701
|
+
SamplingRateBoost?: SamplingRule_SamplingRateBoost;
|
|
136220
136702
|
/** Matches the name that the service uses to identify itself in segments. */
|
|
136221
136703
|
ServiceName?: string;
|
|
136222
136704
|
/** Matches the origin that the service uses to identify its type in segments. */
|
|
@@ -141982,13 +142464,6 @@ export declare class SSMContactsPlan_Targets {
|
|
|
141982
142464
|
});
|
|
141983
142465
|
}
|
|
141984
142466
|
|
|
141985
|
-
export declare class SsmControls {
|
|
141986
|
-
constructor(props: {
|
|
141987
|
-
ConcurrentExecutionRatePercentage?: number;
|
|
141988
|
-
ErrorPercentage?: number;
|
|
141989
|
-
});
|
|
141990
|
-
}
|
|
141991
|
-
|
|
141992
142467
|
export declare class SSMLMessage {
|
|
141993
142468
|
constructor(props: {
|
|
141994
142469
|
Value: string;
|
|
@@ -142979,6 +143454,18 @@ export declare class StreamConsumer_Tag {
|
|
|
142979
143454
|
});
|
|
142980
143455
|
}
|
|
142981
143456
|
|
|
143457
|
+
export declare class StreamDeliveryResource {
|
|
143458
|
+
constructor(props: {
|
|
143459
|
+
Kinesis?: Memory_KinesisResource;
|
|
143460
|
+
});
|
|
143461
|
+
}
|
|
143462
|
+
|
|
143463
|
+
export declare class StreamDeliveryResources {
|
|
143464
|
+
constructor(props: {
|
|
143465
|
+
Resources: Memory_StreamDeliveryResource[];
|
|
143466
|
+
});
|
|
143467
|
+
}
|
|
143468
|
+
|
|
142982
143469
|
export declare class StreamEncryption {
|
|
142983
143470
|
constructor(props: {
|
|
142984
143471
|
/** The encryption type to use. The only valid value is KMS. */
|
|
@@ -144215,7 +144702,7 @@ export declare class TargetAddress {
|
|
|
144215
144702
|
export declare class TargetCapacitySpecificationRequest {
|
|
144216
144703
|
constructor(props: {
|
|
144217
144704
|
TotalTargetCapacity: number;
|
|
144218
|
-
DefaultTargetCapacityType?: "on-demand" | "spot";
|
|
144705
|
+
DefaultTargetCapacityType?: "on-demand" | "reserved-capacity" | "spot";
|
|
144219
144706
|
OnDemandTargetCapacity?: number;
|
|
144220
144707
|
SpotTargetCapacity?: number;
|
|
144221
144708
|
TargetCapacityUnitType?: "memory-mib" | "units" | "vcpu";
|
|
@@ -147480,6 +147967,49 @@ export declare class Trail_Tag {
|
|
|
147480
147967
|
});
|
|
147481
147968
|
}
|
|
147482
147969
|
|
|
147970
|
+
export declare class TrainedModelArtifactMaxSize {
|
|
147971
|
+
constructor(props: {
|
|
147972
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSizeUnitType;
|
|
147973
|
+
Value: number;
|
|
147974
|
+
});
|
|
147975
|
+
}
|
|
147976
|
+
|
|
147977
|
+
export declare class TrainedModelExportsConfigurationPolicy {
|
|
147978
|
+
constructor(props: {
|
|
147979
|
+
FilesToExport: ConfiguredModelAlgorithmAssociation_TrainedModelExportFileType[];
|
|
147980
|
+
MaxSize: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSize;
|
|
147981
|
+
});
|
|
147982
|
+
}
|
|
147983
|
+
|
|
147984
|
+
export declare class TrainedModelExportsMaxSize {
|
|
147985
|
+
constructor(props: {
|
|
147986
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSizeUnitType;
|
|
147987
|
+
Value: number;
|
|
147988
|
+
});
|
|
147989
|
+
}
|
|
147990
|
+
|
|
147991
|
+
export declare class TrainedModelInferenceJobsConfigurationPolicy {
|
|
147992
|
+
constructor(props: {
|
|
147993
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
147994
|
+
MaxOutputSize?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSize;
|
|
147995
|
+
});
|
|
147996
|
+
}
|
|
147997
|
+
|
|
147998
|
+
export declare class TrainedModelInferenceMaxOutputSize {
|
|
147999
|
+
constructor(props: {
|
|
148000
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSizeUnitType;
|
|
148001
|
+
Value: number;
|
|
148002
|
+
});
|
|
148003
|
+
}
|
|
148004
|
+
|
|
148005
|
+
export declare class TrainedModelsConfigurationPolicy {
|
|
148006
|
+
constructor(props: {
|
|
148007
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
148008
|
+
ContainerMetrics?: ConfiguredModelAlgorithmAssociation_MetricsConfigurationPolicy;
|
|
148009
|
+
MaxArtifactSize?: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSize;
|
|
148010
|
+
});
|
|
148011
|
+
}
|
|
148012
|
+
|
|
147483
148013
|
export declare class TrainingDataset_ColumnSchema {
|
|
147484
148014
|
constructor(props: {
|
|
147485
148015
|
ColumnName: string;
|
|
@@ -155104,6 +155634,14 @@ export type Accessor_NetworkAccessorType =
|
|
|
155104
155634
|
| "POLYGON_MAINNET"
|
|
155105
155635
|
| "POLYGON_MUMBAI";
|
|
155106
155636
|
|
|
155637
|
+
export type AccessSource_CRResourceStatus = "CREATING" | "DELETING" | "OPERATIONAL" | "UPDATING";
|
|
155638
|
+
|
|
155639
|
+
export type AccessSource_DnsProtocol = "DO53" | "DOH" | "DOT";
|
|
155640
|
+
|
|
155641
|
+
export type AccessSource_IpAddressType = "IPV4" | "IPV6";
|
|
155642
|
+
|
|
155643
|
+
export type AccessToken_TokenStatus = "CREATING" | "DELETING" | "OPERATIONAL";
|
|
155644
|
+
|
|
155107
155645
|
export type ActionConnector_ActionConnectorType =
|
|
155108
155646
|
| "AMAZON_BEDROCK_AGENT_RUNTIME"
|
|
155109
155647
|
| "AMAZON_BEDROCK_DATA_AUTOMATION_RUNTIME"
|
|
@@ -157493,6 +158031,27 @@ export type ConfigurationManager_Status =
|
|
|
157493
158031
|
|
|
157494
158032
|
export type ConfigurationManager_StatusType = "AsyncExecutions" | "Deployment";
|
|
157495
158033
|
|
|
158034
|
+
export type ConfiguredModelAlgorithmAssociation_EntityType =
|
|
158035
|
+
| "ALL_PERSONALLY_IDENTIFIABLE_INFORMATION"
|
|
158036
|
+
| "CUSTOM"
|
|
158037
|
+
| "NUMBERS";
|
|
158038
|
+
|
|
158039
|
+
export type ConfiguredModelAlgorithmAssociation_LogType = "ALL" | "ERROR_SUMMARY";
|
|
158040
|
+
|
|
158041
|
+
export type ConfiguredModelAlgorithmAssociation_NoiseLevelType =
|
|
158042
|
+
| "HIGH"
|
|
158043
|
+
| "LOW"
|
|
158044
|
+
| "MEDIUM"
|
|
158045
|
+
| "NONE";
|
|
158046
|
+
|
|
158047
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSizeUnitType = "GB";
|
|
158048
|
+
|
|
158049
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelExportFileType = "MODEL" | "OUTPUT";
|
|
158050
|
+
|
|
158051
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSizeUnitType = "GB";
|
|
158052
|
+
|
|
158053
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSizeUnitType = "GB";
|
|
158054
|
+
|
|
157496
158055
|
export type ConfiguredTable_AdditionalAnalyses = "ALLOWED" | "NOT_ALLOWED" | "REQUIRED";
|
|
157497
158056
|
|
|
157498
158057
|
export type ConfiguredTable_AggregateFunctionName =
|
|
@@ -158206,6 +158765,21 @@ export type DevOpsGuruNotificationChannel_NotificationMessageType =
|
|
|
158206
158765
|
| "NEW_RECOMMENDATION"
|
|
158207
158766
|
| "SEVERITY_UPGRADED";
|
|
158208
158767
|
|
|
158768
|
+
export type DnsView_DnsSecValidationType = "DISABLED" | "ENABLED";
|
|
158769
|
+
|
|
158770
|
+
export type DnsView_EdnsClientSubnetType = "DISABLED" | "ENABLED";
|
|
158771
|
+
|
|
158772
|
+
export type DnsView_FirewallRulesFailOpenType = "DISABLED" | "ENABLED";
|
|
158773
|
+
|
|
158774
|
+
export type DnsView_ProfileResourceStatus =
|
|
158775
|
+
| "CREATING"
|
|
158776
|
+
| "DELETING"
|
|
158777
|
+
| "DISABLED"
|
|
158778
|
+
| "DISABLING"
|
|
158779
|
+
| "ENABLING"
|
|
158780
|
+
| "OPERATIONAL"
|
|
158781
|
+
| "UPDATING";
|
|
158782
|
+
|
|
158209
158783
|
export type ECRRepository_EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
|
158210
158784
|
|
|
158211
158785
|
export type ECRRepository_ImageTagMutabilityExclusionFilterType = "WILDCARD";
|
|
@@ -158313,6 +158887,18 @@ export type FirewallPolicy_RuleOrder = "DEFAULT_ACTION_ORDER" | "STRICT_ORDER";
|
|
|
158313
158887
|
|
|
158314
158888
|
export type FirewallPolicy_StreamExceptionPolicy = "CONTINUE" | "DROP" | "REJECT";
|
|
158315
158889
|
|
|
158890
|
+
export type FirewallRule_BlockOverrideDnsQueryType = "CNAME";
|
|
158891
|
+
|
|
158892
|
+
export type FirewallRule_ConfidenceThreshold = "HIGH" | "LOW" | "MEDIUM";
|
|
158893
|
+
|
|
158894
|
+
export type FirewallRule_CRResourceStatus = "CREATING" | "DELETING" | "OPERATIONAL" | "UPDATING";
|
|
158895
|
+
|
|
158896
|
+
export type FirewallRule_DnsAdvancedProtection = "DGA" | "DICTIONARY_DGA" | "DNS_TUNNELING";
|
|
158897
|
+
|
|
158898
|
+
export type FirewallRule_FirewallBlockResponse = "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
|
158899
|
+
|
|
158900
|
+
export type FirewallRule_FirewallRuleAction = "ALERT" | "ALLOW" | "BLOCK";
|
|
158901
|
+
|
|
158316
158902
|
export type FlowAlias_ConcurrencyType = "Automatic" | "Manual";
|
|
158317
158903
|
|
|
158318
158904
|
export type FlowOutput_FlowTransitEncryptionKeyType = "AUTOMATIC" | "SECRETS_MANAGER";
|
|
@@ -158434,6 +159020,10 @@ export type GatewayTarget_TargetStatus =
|
|
|
158434
159020
|
|
|
158435
159021
|
export type GeofenceCollection_PricingPlan = "RequestBasedUsage";
|
|
158436
159022
|
|
|
159023
|
+
export type GlobalResolver_CRResourceStatus = "CREATING" | "DELETING" | "OPERATIONAL" | "UPDATING";
|
|
159024
|
+
|
|
159025
|
+
export type GlobalResolver_GlobalResolverIpAddressType = "DUAL_STACK" | "IPV4";
|
|
159026
|
+
|
|
158437
159027
|
export type GrafanaWorkspace_AccountAccessType = "CURRENT_ACCOUNT" | "ORGANIZATION";
|
|
158438
159028
|
|
|
158439
159029
|
export type GrafanaWorkspace_AuthenticationProviderTypes = "AWS_SSO" | "SAML";
|
|
@@ -158557,6 +159147,11 @@ export type HealthImagingDatastore_DatastoreStatus =
|
|
|
158557
159147
|
| "DELETED"
|
|
158558
159148
|
| "DELETING";
|
|
158559
159149
|
|
|
159150
|
+
export type HostedZoneAssociation_HostedZoneAssociationStatus =
|
|
159151
|
+
| "CREATING"
|
|
159152
|
+
| "DELETING"
|
|
159153
|
+
| "OPERATIONAL";
|
|
159154
|
+
|
|
158560
159155
|
export type HoursOfOperation_OverrideType = "CLOSED" | "OPEN" | "STANDARD";
|
|
158561
159156
|
|
|
158562
159157
|
export type HoursOfOperation_RecurrenceFrequency = "MONTHLY" | "WEEKLY" | "YEARLY";
|
|
@@ -161077,6 +161672,12 @@ export type RolesAnywhereProfile_CertificateField = "x509Issuer" | "x509SAN" | "
|
|
|
161077
161672
|
|
|
161078
161673
|
export type Rotation_DayOfWeek = "FRI" | "MON" | "SAT" | "SUN" | "THU" | "TUE" | "WED";
|
|
161079
161674
|
|
|
161675
|
+
export type Route53GlobalResolverFirewallDomainList_CRResourceStatus =
|
|
161676
|
+
| "CREATING"
|
|
161677
|
+
| "DELETING"
|
|
161678
|
+
| "OPERATIONAL"
|
|
161679
|
+
| "UPDATING";
|
|
161680
|
+
|
|
161080
161681
|
export type RouteCalculator_PricingPlan = "RequestBasedUsage";
|
|
161081
161682
|
|
|
161082
161683
|
export type RouterInput_Day =
|
|
@@ -161933,6 +162534,10 @@ export type TaskTemplate_FieldType =
|
|
|
161933
162534
|
|
|
161934
162535
|
export type TaskTemplate_Status = "ACTIVE" | "INACTIVE";
|
|
161935
162536
|
|
|
162537
|
+
export type TelemetryEnrichment_Scope = "ACCOUNT";
|
|
162538
|
+
|
|
162539
|
+
export type TelemetryEnrichment_Status = "IMPAIRED" | "RUNNING" | "STOPPED";
|
|
162540
|
+
|
|
161936
162541
|
export type TelemetryPipelines_TelemetryPipelineStatus =
|
|
161937
162542
|
| "ACTIVE"
|
|
161938
162543
|
| "CREATE_FAILED"
|
|
@@ -162080,6 +162685,7 @@ export type TransferUser_HomeDirectoryType = "LOGICAL" | "PATH";
|
|
|
162080
162685
|
export type TransferUser_MapType = "DIRECTORY" | "FILE";
|
|
162081
162686
|
|
|
162082
162687
|
export type TransitGatewayMeteringPolicyEntry_TransitGatewayAttachmentResourceType =
|
|
162688
|
+
| "client-vpn"
|
|
162083
162689
|
| "direct-connect-gateway"
|
|
162084
162690
|
| "network-function"
|
|
162085
162691
|
| "peering"
|