@intentius/chant-lexicon-aws 0.0.22 → 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 +6 -5
- package/dist/manifest.json +1 -1
- package/dist/meta.json +844 -161
- package/{src/skills/chant-eks.md → dist/skills/chant-aws-eks.md} +2 -2
- package/dist/skills/chant-aws.md +3 -3
- package/dist/types/index.d.ts +774 -304
- package/package.json +1 -1
- package/src/composites/alb-shared.ts +14 -7
- package/src/composites/composites.test.ts +82 -0
- 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 +11 -5
- 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 +774 -304
- package/src/generated/index.ts +61 -13
- package/src/generated/lexicon-aws.json +844 -161
- package/src/plugin.ts +90 -574
- package/src/skills/chant-aws-eks.md +178 -0
- package/src/skills/chant-aws.md +430 -0
package/dist/types/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. */
|
|
@@ -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[];
|
|
@@ -7592,17 +7669,17 @@ export declare class DataLake {
|
|
|
7592
7669
|
|
|
7593
7670
|
export declare class DataLakeSettings {
|
|
7594
7671
|
constructor(props: {
|
|
7595
|
-
Admins?:
|
|
7672
|
+
Admins?: DataLakeSettings_DataLakePrincipal[];
|
|
7596
7673
|
AllowExternalDataFiltering?: boolean;
|
|
7597
7674
|
AllowFullTableExternalDataAccess?: boolean;
|
|
7598
7675
|
AuthorizedSessionTagValueList?: string[];
|
|
7599
|
-
CreateDatabaseDefaultPermissions?:
|
|
7600
|
-
CreateTableDefaultPermissions?:
|
|
7601
|
-
ExternalDataFilteringAllowList?:
|
|
7676
|
+
CreateDatabaseDefaultPermissions?: DataLakeSettings_PrincipalPermissions[];
|
|
7677
|
+
CreateTableDefaultPermissions?: DataLakeSettings_PrincipalPermissions[];
|
|
7678
|
+
ExternalDataFilteringAllowList?: DataLakeSettings_DataLakePrincipal[];
|
|
7602
7679
|
Id?: string;
|
|
7603
7680
|
MutationType?: string;
|
|
7604
7681
|
Parameters?: Record<string, unknown>;
|
|
7605
|
-
ReadOnlyAdmins?:
|
|
7682
|
+
ReadOnlyAdmins?: DataLakeSettings_DataLakePrincipal[];
|
|
7606
7683
|
TrustedResourceOwners?: string[];
|
|
7607
7684
|
}, attributes?: CFResourceAttributes);
|
|
7608
7685
|
readonly Id: string;
|
|
@@ -10269,7 +10346,7 @@ export declare class DLMLifecyclePolicy {
|
|
|
10269
10346
|
Arn?: string;
|
|
10270
10347
|
CopyTags?: boolean;
|
|
10271
10348
|
CreateInterval?: number;
|
|
10272
|
-
CrossRegionCopyTargets?:
|
|
10349
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
10273
10350
|
DefaultPolicy?: string;
|
|
10274
10351
|
Description?: string;
|
|
10275
10352
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
@@ -10387,6 +10464,29 @@ export declare class DNSSEC {
|
|
|
10387
10464
|
}, attributes?: CFResourceAttributes);
|
|
10388
10465
|
}
|
|
10389
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
|
+
|
|
10390
10490
|
export declare class DocDBDBCluster {
|
|
10391
10491
|
constructor(props: {
|
|
10392
10492
|
AvailabilityZones?: string[];
|
|
@@ -13257,45 +13357,6 @@ export declare class Firewall {
|
|
|
13257
13357
|
readonly TransitGatewayAttachmentId: string;
|
|
13258
13358
|
}
|
|
13259
13359
|
|
|
13260
|
-
export declare class FirewallDomainList {
|
|
13261
|
-
constructor(props: {
|
|
13262
|
-
/** Arn */
|
|
13263
|
-
Arn?: string;
|
|
13264
|
-
/** Rfc3339TimeString */
|
|
13265
|
-
CreationTime?: string;
|
|
13266
|
-
/** The id of the creator request. */
|
|
13267
|
-
CreatorRequestId?: string;
|
|
13268
|
-
/** Count */
|
|
13269
|
-
DomainCount?: number;
|
|
13270
|
-
/** S3 URL to import domains from. */
|
|
13271
|
-
DomainFileUrl?: string;
|
|
13272
|
-
Domains?: any;
|
|
13273
|
-
/** ResourceId */
|
|
13274
|
-
Id?: string;
|
|
13275
|
-
/** ServicePrincipal */
|
|
13276
|
-
ManagedOwnerName?: string;
|
|
13277
|
-
/** Rfc3339TimeString */
|
|
13278
|
-
ModificationTime?: string;
|
|
13279
|
-
/** FirewallDomainListName */
|
|
13280
|
-
Name?: string;
|
|
13281
|
-
/** ResolverFirewallDomainList, possible values are COMPLETE, DELETING, UPDATING, COMPLETE_IMPORT_FAILED, IMPORTING, and INACTIVE_OWNER_ACCOUNT_CLOSED. */
|
|
13282
|
-
Status?: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
13283
|
-
/** FirewallDomainListAssociationStatus */
|
|
13284
|
-
StatusMessage?: string;
|
|
13285
|
-
/** Tags */
|
|
13286
|
-
Tags?: FirewallDomainList_Tag[];
|
|
13287
|
-
}, attributes?: CFResourceAttributes);
|
|
13288
|
-
readonly Arn: string;
|
|
13289
|
-
readonly CreationTime: string;
|
|
13290
|
-
readonly CreatorRequestId: string;
|
|
13291
|
-
readonly DomainCount: number;
|
|
13292
|
-
readonly Id: string;
|
|
13293
|
-
readonly ManagedOwnerName: string;
|
|
13294
|
-
readonly ModificationTime: string;
|
|
13295
|
-
readonly Status: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
13296
|
-
readonly StatusMessage: string;
|
|
13297
|
-
}
|
|
13298
|
-
|
|
13299
13360
|
export declare class FirewallPolicy {
|
|
13300
13361
|
constructor(props: {
|
|
13301
13362
|
FirewallPolicy: FirewallPolicy_FirewallPolicy;
|
|
@@ -13309,6 +13370,35 @@ export declare class FirewallPolicy {
|
|
|
13309
13370
|
readonly FirewallPolicyId: string;
|
|
13310
13371
|
}
|
|
13311
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
|
+
|
|
13312
13402
|
export declare class FirewallRuleGroup {
|
|
13313
13403
|
constructor(props: {
|
|
13314
13404
|
/** Arn */
|
|
@@ -14506,6 +14596,34 @@ export declare class GlobalReplicationGroup {
|
|
|
14506
14596
|
readonly Status: string;
|
|
14507
14597
|
}
|
|
14508
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
|
+
|
|
14509
14627
|
export declare class GlobalTable {
|
|
14510
14628
|
constructor(props: {
|
|
14511
14629
|
Replicas: GlobalTable_ReplicaSpecification[];
|
|
@@ -15218,6 +15336,24 @@ export declare class HostedZone {
|
|
|
15218
15336
|
readonly NameServers: string[];
|
|
15219
15337
|
}
|
|
15220
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
|
+
|
|
15221
15357
|
export declare class HoursOfOperation {
|
|
15222
15358
|
constructor(props: {
|
|
15223
15359
|
/** Configuration information for the hours of operation: day, start time, and end time. */
|
|
@@ -16259,7 +16395,7 @@ export declare class InsightRule {
|
|
|
16259
16395
|
ApplyOnTransformedLogs?: boolean;
|
|
16260
16396
|
Arn?: string;
|
|
16261
16397
|
Id?: string;
|
|
16262
|
-
Tags?:
|
|
16398
|
+
Tags?: InsightRule_Tag[];
|
|
16263
16399
|
}, attributes?: CFResourceAttributes);
|
|
16264
16400
|
readonly Arn: string;
|
|
16265
16401
|
readonly Id: string;
|
|
@@ -22926,6 +23062,7 @@ export declare class OpenSearchServiceDomain {
|
|
|
22926
23062
|
Arn?: string;
|
|
22927
23063
|
ClusterConfig?: OpenSearchServiceDomain_ClusterConfig;
|
|
22928
23064
|
CognitoOptions?: OpenSearchServiceDomain_CognitoOptions;
|
|
23065
|
+
DeploymentStrategyOptions?: OpenSearchServiceDomain_DeploymentStrategyOptions;
|
|
22929
23066
|
DomainArn?: string;
|
|
22930
23067
|
DomainEndpoint?: string;
|
|
22931
23068
|
DomainEndpointOptions?: OpenSearchServiceDomain_DomainEndpointOptions;
|
|
@@ -24390,7 +24527,7 @@ export declare class PolicyStore {
|
|
|
24390
24527
|
EncryptionSettings?: Record<string, unknown>;
|
|
24391
24528
|
EncryptionState?: any;
|
|
24392
24529
|
PolicyStoreId?: string;
|
|
24393
|
-
Schema?:
|
|
24530
|
+
Schema?: PolicyStore_SchemaDefinition;
|
|
24394
24531
|
/** The tags to add to the policy store */
|
|
24395
24532
|
Tags?: PolicyStore_Tag[];
|
|
24396
24533
|
}, attributes?: CFResourceAttributes);
|
|
@@ -25349,7 +25486,7 @@ export declare class Queue {
|
|
|
25349
25486
|
DeduplicationScope?: string;
|
|
25350
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``. */
|
|
25351
25488
|
DelaySeconds?: number;
|
|
25352
|
-
/** 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*. */
|
|
25353
25490
|
FifoQueue?: boolean;
|
|
25354
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``.
|
|
25355
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*. */
|
|
@@ -25357,17 +25494,17 @@ export declare class Queue {
|
|
|
25357
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).
|
|
25358
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*. */
|
|
25359
25496
|
KmsDataKeyReusePeriodSeconds?: number;
|
|
25360
|
-
/** 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:
|
|
25361
25498
|
+ [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html) in the *Developer Guide*
|
|
25362
25499
|
+ [CreateQueue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html) in the *API Reference*
|
|
25363
25500
|
+ [Request Parameters](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters) in the *Key Management Service API Reference*
|
|
25364
|
-
+ 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 */
|
|
25365
25502
|
KmsMasterKeyId?: string;
|
|
25366
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). */
|
|
25367
25504
|
MaximumMessageSize?: number;
|
|
25368
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). */
|
|
25369
25506
|
MessageRetentionPeriod?: number;
|
|
25370
|
-
/** 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*.
|
|
25371
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*.
|
|
25372
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. */
|
|
25373
25510
|
QueueName?: string;
|
|
@@ -25375,16 +25512,16 @@ export declare class Queue {
|
|
|
25375
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*. */
|
|
25376
25513
|
ReceiveMessageWaitTimeSeconds?: number;
|
|
25377
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:
|
|
25378
|
-
+
|
|
25379
|
-
+
|
|
25380
|
-
+
|
|
25381
|
-
+
|
|
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.
|
|
25382
25519
|
|
|
25383
|
-
+
|
|
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``. */
|
|
25384
25521
|
RedriveAllowPolicy?: Record<string, unknown>;
|
|
25385
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:
|
|
25386
|
-
+
|
|
25387
|
-
+
|
|
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.
|
|
25388
25525
|
|
|
25389
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.
|
|
25390
25527
|
*JSON*
|
|
@@ -26479,23 +26616,6 @@ export declare class RekognitionProject {
|
|
|
26479
26616
|
readonly Arn: string;
|
|
26480
26617
|
}
|
|
26481
26618
|
|
|
26482
|
-
export declare class RemediationConfiguration {
|
|
26483
|
-
constructor(props: {
|
|
26484
|
-
ConfigRuleName: string;
|
|
26485
|
-
TargetId: string;
|
|
26486
|
-
TargetType: string;
|
|
26487
|
-
Automatic?: boolean;
|
|
26488
|
-
ExecutionControls?: RemediationConfiguration_ExecutionControls;
|
|
26489
|
-
Id?: string;
|
|
26490
|
-
MaximumAutomaticAttempts?: number;
|
|
26491
|
-
Parameters?: Record<string, unknown>;
|
|
26492
|
-
ResourceType?: string;
|
|
26493
|
-
RetryAttemptSeconds?: number;
|
|
26494
|
-
TargetVersion?: string;
|
|
26495
|
-
}, attributes?: CFResourceAttributes);
|
|
26496
|
-
readonly Id: string;
|
|
26497
|
-
}
|
|
26498
|
-
|
|
26499
26619
|
export declare class ReplicaKey {
|
|
26500
26620
|
constructor(props: {
|
|
26501
26621
|
/** The key policy that authorizes use of the AWS KMS key. The key policy must observe the following rules. */
|
|
@@ -26555,67 +26675,106 @@ export declare class ReplicationConfiguration {
|
|
|
26555
26675
|
|
|
26556
26676
|
export declare class ReplicationGroup {
|
|
26557
26677
|
constructor(props: {
|
|
26678
|
+
/** A user-created description for the replication group. */
|
|
26558
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. */
|
|
26559
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. */
|
|
26560
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. */
|
|
26561
26685
|
AutomaticFailoverEnabled?: boolean;
|
|
26686
|
+
/** This parameter is currently disabled. */
|
|
26562
26687
|
AutoMinorVersionUpgrade?: boolean;
|
|
26688
|
+
/** The compute and memory capacity of the nodes in the node group (shard). */
|
|
26563
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. */
|
|
26564
26691
|
CacheParameterGroupName?: string;
|
|
26692
|
+
/** A list of cache security group names to associate with this replication group. */
|
|
26565
26693
|
CacheSecurityGroupNames?: string[];
|
|
26694
|
+
/** The name of the cache subnet group to be used for the replication group. */
|
|
26566
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. */
|
|
26567
26697
|
ClusterMode?: string;
|
|
26568
|
-
|
|
26569
|
-
|
|
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. */
|
|
26570
26701
|
DataTieringEnabled?: boolean;
|
|
26702
|
+
/** The name of the cache engine to be used for the clusters in this replication group. */
|
|
26571
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. */
|
|
26572
26705
|
EngineVersion?: string;
|
|
26706
|
+
/** The name of the Global datastore */
|
|
26573
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. */
|
|
26574
26709
|
IpDiscovery?: string;
|
|
26710
|
+
/** The ID of the KMS key used to encrypt the disk on the cluster. */
|
|
26575
26711
|
KmsKeyId?: string;
|
|
26712
|
+
/** Specifies the destination, format and type of the logs. */
|
|
26576
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. */
|
|
26577
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 */
|
|
26578
26717
|
NetworkType?: string;
|
|
26718
|
+
/** NodeGroupConfiguration is a property of the AWS::ElastiCache::ReplicationGroup resource that configures an Amazon ElastiCache (ElastiCache) Redis cluster node group. */
|
|
26579
26719
|
NodeGroupConfiguration?: ReplicationGroup_NodeGroupConfiguration[];
|
|
26720
|
+
/** The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are sent. */
|
|
26580
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. */
|
|
26581
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. */
|
|
26582
26725
|
NumNodeGroups?: number;
|
|
26726
|
+
/** The port number on which each member of the replication group accepts connections. */
|
|
26583
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. */
|
|
26584
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. */
|
|
26585
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. */
|
|
26586
26733
|
PrimaryClusterId?: string;
|
|
26587
|
-
|
|
26588
|
-
|
|
26589
|
-
|
|
26590
|
-
|
|
26591
|
-
|
|
26592
|
-
|
|
26593
|
-
ReaderEndPointAddress?: string;
|
|
26594
|
-
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. */
|
|
26595
26740
|
ReplicasPerNodeGroup?: number;
|
|
26741
|
+
/** The replication group identifier. This parameter is stored as a lowercase string. */
|
|
26596
26742
|
ReplicationGroupId?: string;
|
|
26743
|
+
/** One or more Amazon VPC security groups associated with this replication group. */
|
|
26597
26744
|
SecurityGroupIds?: string[];
|
|
26745
|
+
/** A list of Amazon Resource Names (ARN) that uniquely identify the Redis RDB snapshot files stored in Amazon S3. */
|
|
26598
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. */
|
|
26599
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. */
|
|
26600
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. */
|
|
26601
26752
|
SnapshottingClusterId?: string;
|
|
26753
|
+
/** The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your node group (shard). */
|
|
26602
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. */
|
|
26603
26756
|
Tags?: ReplicationGroup_Tag[];
|
|
26757
|
+
/** A flag that enables in-transit encryption when set to true. */
|
|
26604
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. */
|
|
26605
26760
|
TransitEncryptionMode?: string;
|
|
26761
|
+
/** The ID of user group to associate with the replication group. */
|
|
26606
26762
|
UserGroupIds?: string[];
|
|
26607
26763
|
}, attributes?: CFResourceAttributes);
|
|
26764
|
+
readonly ConfigurationEndPoint: ReplicationGroup_Endpoint;
|
|
26608
26765
|
readonly ConfigurationEndPoint_Address: string;
|
|
26609
26766
|
readonly ConfigurationEndPoint_Port: string;
|
|
26767
|
+
readonly PrimaryEndPoint: ReplicationGroup_Endpoint;
|
|
26610
26768
|
readonly PrimaryEndPoint_Address: string;
|
|
26611
26769
|
readonly PrimaryEndPoint_Port: string;
|
|
26770
|
+
readonly ReadEndPoint: Record<string, unknown>;
|
|
26612
26771
|
readonly ReadEndPoint_Addresses: string;
|
|
26613
|
-
readonly
|
|
26772
|
+
readonly ReadEndPoint_AddressesList: string;
|
|
26614
26773
|
readonly ReadEndPoint_Ports: string;
|
|
26615
|
-
readonly
|
|
26774
|
+
readonly ReadEndPoint_PortsList: string;
|
|
26775
|
+
readonly ReaderEndPoint: ReplicationGroup_Endpoint;
|
|
26616
26776
|
readonly ReaderEndPoint_Address: string;
|
|
26617
26777
|
readonly ReaderEndPoint_Port: string;
|
|
26618
|
-
readonly ReplicationGroupId: string;
|
|
26619
26778
|
}
|
|
26620
26779
|
|
|
26621
26780
|
export declare class ReplicationInstance {
|
|
@@ -27724,6 +27883,33 @@ export declare class RotationSchedule {
|
|
|
27724
27883
|
readonly Id: string;
|
|
27725
27884
|
}
|
|
27726
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
|
+
|
|
27727
27913
|
export declare class Route53ProfilesProfile {
|
|
27728
27914
|
constructor(props: {
|
|
27729
27915
|
/** The name of the profile. */
|
|
@@ -27783,6 +27969,45 @@ AWS: :AutoScaling: :AutoScalingGroup, AWS: :CloudWatch: :Alarm, AWS: :EC2: :Cust
|
|
|
27783
27969
|
readonly ResourceSetArn: string;
|
|
27784
27970
|
}
|
|
27785
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
|
+
|
|
27786
28011
|
export declare class RouteCalculator {
|
|
27787
28012
|
constructor(props: {
|
|
27788
28013
|
CalculatorName: string;
|
|
@@ -30790,15 +31015,25 @@ export declare class StackSet {
|
|
|
30790
31015
|
|
|
30791
31016
|
export declare class StackSetConstraint {
|
|
30792
31017
|
constructor(props: {
|
|
31018
|
+
/** One or more AWS accounts that will have access to the provisioned product. */
|
|
30793
31019
|
AccountList: string[];
|
|
31020
|
+
/** AdminRole ARN. */
|
|
30794
31021
|
AdminRole: string;
|
|
31022
|
+
/** The description of the constraint. */
|
|
30795
31023
|
Description: string;
|
|
31024
|
+
/** ExecutionRole name. */
|
|
30796
31025
|
ExecutionRole: string;
|
|
31026
|
+
/** The portfolio identifier. */
|
|
30797
31027
|
PortfolioId: string;
|
|
31028
|
+
/** The product identifier. */
|
|
30798
31029
|
ProductId: string;
|
|
31030
|
+
/** One or more AWS Regions where the provisioned product will be available. */
|
|
30799
31031
|
RegionList: string[];
|
|
31032
|
+
/** Permission to create, update, and delete stack instances. Choose from ALLOWED and NOT_ALLOWED. */
|
|
30800
31033
|
StackInstanceControl: string;
|
|
31034
|
+
/** The language code. */
|
|
30801
31035
|
AcceptLanguage?: string;
|
|
31036
|
+
/** Unique identifier for the constraint */
|
|
30802
31037
|
Id?: string;
|
|
30803
31038
|
}, attributes?: CFResourceAttributes);
|
|
30804
31039
|
readonly Id: string;
|
|
@@ -31982,6 +32217,14 @@ export declare class TaskTemplate {
|
|
|
31982
32217
|
readonly Arn: string;
|
|
31983
32218
|
}
|
|
31984
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
|
+
|
|
31985
32228
|
export declare class TelemetryPipelines {
|
|
31986
32229
|
constructor(props: {
|
|
31987
32230
|
Configuration: TelemetryPipelines_TelemetryPipelineConfiguration;
|
|
@@ -35377,8 +35620,7 @@ export declare class Workgroup {
|
|
|
35377
35620
|
Workgroup?: Workgroup_Workgroup;
|
|
35378
35621
|
}, attributes?: CFResourceAttributes);
|
|
35379
35622
|
readonly Workgroup_BaseCapacity: string;
|
|
35380
|
-
readonly
|
|
35381
|
-
readonly Workgroup_ConfigParameters_Item_ParameterValue: string;
|
|
35623
|
+
readonly Workgroup_ConfigParameters: string;
|
|
35382
35624
|
readonly Workgroup_CreationDate: string;
|
|
35383
35625
|
readonly Workgroup_Endpoint_Address: string;
|
|
35384
35626
|
readonly Workgroup_Endpoint_Port: string;
|
|
@@ -36057,6 +36299,20 @@ export declare class AccessScopePathRequest {
|
|
|
36057
36299
|
});
|
|
36058
36300
|
}
|
|
36059
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
|
+
|
|
36060
36316
|
export declare class AccountAggregationSource {
|
|
36061
36317
|
constructor(props: {
|
|
36062
36318
|
AccountIds: string[];
|
|
@@ -47626,6 +47882,7 @@ export declare class AthenaTableReference {
|
|
|
47626
47882
|
DatabaseName: string;
|
|
47627
47883
|
TableName: string;
|
|
47628
47884
|
WorkGroup: string;
|
|
47885
|
+
CatalogName?: string;
|
|
47629
47886
|
OutputLocation?: string;
|
|
47630
47887
|
Region?: ConfiguredTable_CommercialRegion;
|
|
47631
47888
|
});
|
|
@@ -60493,6 +60750,127 @@ export declare class ConfigurationTemplate_SourceConfiguration {
|
|
|
60493
60750
|
});
|
|
60494
60751
|
}
|
|
60495
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
|
+
|
|
60496
60874
|
export declare class ConfiguredTable_AggregateColumn {
|
|
60497
60875
|
constructor(props: {
|
|
60498
60876
|
ColumnNames: string[];
|
|
@@ -60552,6 +60930,7 @@ export declare class ConfiguredTable_AthenaTableReference {
|
|
|
60552
60930
|
DatabaseName: string;
|
|
60553
60931
|
TableName: string;
|
|
60554
60932
|
WorkGroup: string;
|
|
60933
|
+
CatalogName?: string;
|
|
60555
60934
|
OutputLocation?: string;
|
|
60556
60935
|
Region?: ConfiguredTable_CommercialRegion;
|
|
60557
60936
|
});
|
|
@@ -62582,17 +62961,6 @@ export declare class ContainerAction {
|
|
|
62582
62961
|
});
|
|
62583
62962
|
}
|
|
62584
62963
|
|
|
62585
|
-
export declare class ContainerConfig {
|
|
62586
|
-
constructor(props: {
|
|
62587
|
-
/** A list of arguments to apply to the container. */
|
|
62588
|
-
ContainerArguments?: string[];
|
|
62589
|
-
/** The custom entry point to use on container. */
|
|
62590
|
-
ContainerEntrypoint?: string[];
|
|
62591
|
-
/** A list of variables to apply to the custom container. */
|
|
62592
|
-
ContainerEnvironmentVariables?: AppImageConfig_CustomImageContainerEnvironmentVariable[];
|
|
62593
|
-
});
|
|
62594
|
-
}
|
|
62595
|
-
|
|
62596
62964
|
export declare class ContainerConfiguration {
|
|
62597
62965
|
constructor(props: {
|
|
62598
62966
|
ContainerUri: string;
|
|
@@ -63236,7 +63604,7 @@ export declare class ControlPlanePlacement {
|
|
|
63236
63604
|
export declare class ControlPlaneScalingConfig {
|
|
63237
63605
|
constructor(props: {
|
|
63238
63606
|
/** The scaling tier for the provisioned control plane. */
|
|
63239
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-
|
|
63607
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-ultra" | "tier-xl";
|
|
63240
63608
|
});
|
|
63241
63609
|
}
|
|
63242
63610
|
|
|
@@ -63909,6 +64277,12 @@ export declare class CrossRegionCopyRule {
|
|
|
63909
64277
|
});
|
|
63910
64278
|
}
|
|
63911
64279
|
|
|
64280
|
+
export declare class CrossRegionCopyTarget {
|
|
64281
|
+
constructor(props: {
|
|
64282
|
+
TargetRegion?: string;
|
|
64283
|
+
});
|
|
64284
|
+
}
|
|
64285
|
+
|
|
63912
64286
|
export declare class CsrExtensions {
|
|
63913
64287
|
constructor(props: {
|
|
63914
64288
|
KeyUsage?: CertificateAuthority_KeyUsage;
|
|
@@ -64210,6 +64584,12 @@ export declare class CustomEmailSender {
|
|
|
64210
64584
|
});
|
|
64211
64585
|
}
|
|
64212
64586
|
|
|
64587
|
+
export declare class CustomEntityConfig {
|
|
64588
|
+
constructor(props: {
|
|
64589
|
+
CustomDataIdentifiers: string[];
|
|
64590
|
+
});
|
|
64591
|
+
}
|
|
64592
|
+
|
|
64213
64593
|
export declare class CustomerContact {
|
|
64214
64594
|
constructor(props: {
|
|
64215
64595
|
/** The email address of the contact. */
|
|
@@ -66784,6 +67164,19 @@ export declare class DataLake_Transitions {
|
|
|
66784
67164
|
});
|
|
66785
67165
|
}
|
|
66786
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
|
+
|
|
66787
67180
|
export declare class DataMigration_DataMigrationSettings {
|
|
66788
67181
|
constructor(props: {
|
|
66789
67182
|
/** The property specifies whether to enable the CloudWatch log. */
|
|
@@ -71105,6 +71498,12 @@ export declare class DeploymentStrategy_Tag {
|
|
|
71105
71498
|
});
|
|
71106
71499
|
}
|
|
71107
71500
|
|
|
71501
|
+
export declare class DeploymentStrategyOptions {
|
|
71502
|
+
constructor(props: {
|
|
71503
|
+
DeploymentStrategy?: "CapacityOptimized" | "Default";
|
|
71504
|
+
});
|
|
71505
|
+
}
|
|
71506
|
+
|
|
71108
71507
|
export declare class DeploymentStyle {
|
|
71109
71508
|
constructor(props: {
|
|
71110
71509
|
/** Indicates whether to route deployment traffic behind a load balancer. */
|
|
@@ -72767,6 +73166,12 @@ export declare class DLMLifecyclePolicy_CrossRegionCopyRule {
|
|
|
72767
73166
|
});
|
|
72768
73167
|
}
|
|
72769
73168
|
|
|
73169
|
+
export declare class DLMLifecyclePolicy_CrossRegionCopyTarget {
|
|
73170
|
+
constructor(props: {
|
|
73171
|
+
TargetRegion?: string;
|
|
73172
|
+
});
|
|
73173
|
+
}
|
|
73174
|
+
|
|
72770
73175
|
export declare class DLMLifecyclePolicy_DeprecateRule {
|
|
72771
73176
|
constructor(props: {
|
|
72772
73177
|
Count?: number;
|
|
@@ -72800,8 +73205,8 @@ export declare class DLMLifecyclePolicy_EventSource {
|
|
|
72800
73205
|
export declare class DLMLifecyclePolicy_Exclusions {
|
|
72801
73206
|
constructor(props: {
|
|
72802
73207
|
ExcludeBootVolumes?: boolean;
|
|
72803
|
-
ExcludeTags?:
|
|
72804
|
-
ExcludeVolumeTypes?: Record<string, unknown
|
|
73208
|
+
ExcludeTags?: DLMLifecyclePolicy_Tag[];
|
|
73209
|
+
ExcludeVolumeTypes?: Record<string, unknown>[];
|
|
72805
73210
|
});
|
|
72806
73211
|
}
|
|
72807
73212
|
|
|
@@ -72827,7 +73232,7 @@ export declare class DLMLifecyclePolicy_PolicyDetails {
|
|
|
72827
73232
|
Actions?: DLMLifecyclePolicy_Action[];
|
|
72828
73233
|
CopyTags?: boolean;
|
|
72829
73234
|
CreateInterval?: number;
|
|
72830
|
-
CrossRegionCopyTargets?:
|
|
73235
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
72831
73236
|
EventSource?: DLMLifecyclePolicy_EventSource;
|
|
72832
73237
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
72833
73238
|
ExtendDeletion?: boolean;
|
|
@@ -73313,6 +73718,13 @@ export declare class DNSTargetResource {
|
|
|
73313
73718
|
});
|
|
73314
73719
|
}
|
|
73315
73720
|
|
|
73721
|
+
export declare class DnsView_Tag {
|
|
73722
|
+
constructor(props: {
|
|
73723
|
+
Key: string;
|
|
73724
|
+
Value: string;
|
|
73725
|
+
});
|
|
73726
|
+
}
|
|
73727
|
+
|
|
73316
73728
|
export declare class DocDBDBCluster_ServerlessV2ScalingConfiguration {
|
|
73317
73729
|
constructor(props: {
|
|
73318
73730
|
MaxCapacity: number;
|
|
@@ -74506,6 +74918,12 @@ export declare class EC2Fleet_Placement {
|
|
|
74506
74918
|
});
|
|
74507
74919
|
}
|
|
74508
74920
|
|
|
74921
|
+
export declare class EC2Fleet_ReservedCapacityOptionsRequest {
|
|
74922
|
+
constructor(props: {
|
|
74923
|
+
ReservationTypes?: "interruptible-capacity-reservation"[];
|
|
74924
|
+
});
|
|
74925
|
+
}
|
|
74926
|
+
|
|
74509
74927
|
export declare class EC2Fleet_SpotOptionsRequest {
|
|
74510
74928
|
constructor(props: {
|
|
74511
74929
|
AllocationStrategy?: "capacity-optimized" | "capacity-optimized-prioritized" | "capacityOptimized" | "capacityOptimizedPrioritized" | "diversified" | "lowest-price" | "lowestPrice" | "price-capacity-optimized" | "priceCapacityOptimized";
|
|
@@ -74536,7 +74954,7 @@ export declare class EC2Fleet_TagSpecification {
|
|
|
74536
74954
|
export declare class EC2Fleet_TargetCapacitySpecificationRequest {
|
|
74537
74955
|
constructor(props: {
|
|
74538
74956
|
TotalTargetCapacity: number;
|
|
74539
|
-
DefaultTargetCapacityType?: "on-demand" | "spot";
|
|
74957
|
+
DefaultTargetCapacityType?: "on-demand" | "reserved-capacity" | "spot";
|
|
74540
74958
|
OnDemandTargetCapacity?: number;
|
|
74541
74959
|
SpotTargetCapacity?: number;
|
|
74542
74960
|
TargetCapacityUnitType?: "memory-mib" | "units" | "vcpu";
|
|
@@ -75964,7 +76382,7 @@ export declare class EKSCluster_ControlPlanePlacement {
|
|
|
75964
76382
|
export declare class EKSCluster_ControlPlaneScalingConfig {
|
|
75965
76383
|
constructor(props: {
|
|
75966
76384
|
/** The scaling tier for the provisioned control plane. */
|
|
75967
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-
|
|
76385
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-ultra" | "tier-xl";
|
|
75968
76386
|
});
|
|
75969
76387
|
}
|
|
75970
76388
|
|
|
@@ -76032,7 +76450,7 @@ export declare class EKSCluster_Provider {
|
|
|
76032
76450
|
export declare class EKSCluster_RemoteNetworkConfig {
|
|
76033
76451
|
constructor(props: {
|
|
76034
76452
|
/** Network configuration of nodes run on-premises with EKS Hybrid Nodes. */
|
|
76035
|
-
RemoteNodeNetworks
|
|
76453
|
+
RemoteNodeNetworks?: any;
|
|
76036
76454
|
/** Network configuration of pods run on-premises with EKS Hybrid Nodes. */
|
|
76037
76455
|
RemotePodNetworks?: any;
|
|
76038
76456
|
});
|
|
@@ -80317,8 +80735,8 @@ export declare class ExclusionRules {
|
|
|
80317
80735
|
export declare class Exclusions {
|
|
80318
80736
|
constructor(props: {
|
|
80319
80737
|
ExcludeBootVolumes?: boolean;
|
|
80320
|
-
ExcludeTags?:
|
|
80321
|
-
ExcludeVolumeTypes?: Record<string, unknown
|
|
80738
|
+
ExcludeTags?: DLMLifecyclePolicy_Tag[];
|
|
80739
|
+
ExcludeVolumeTypes?: Record<string, unknown>[];
|
|
80322
80740
|
});
|
|
80323
80741
|
}
|
|
80324
80742
|
|
|
@@ -80371,12 +80789,6 @@ export declare class ExecutionApprovalConfiguration {
|
|
|
80371
80789
|
});
|
|
80372
80790
|
}
|
|
80373
80791
|
|
|
80374
|
-
export declare class ExecutionControls {
|
|
80375
|
-
constructor(props: {
|
|
80376
|
-
SsmControls?: RemediationConfiguration_SsmControls;
|
|
80377
|
-
});
|
|
80378
|
-
}
|
|
80379
|
-
|
|
80380
80792
|
export declare class ExecutionPlan_CapacityUnitsConfiguration {
|
|
80381
80793
|
constructor(props: {
|
|
80382
80794
|
RescoreCapacityUnits: number;
|
|
@@ -81913,15 +82325,6 @@ export declare class Firewall_Tag {
|
|
|
81913
82325
|
});
|
|
81914
82326
|
}
|
|
81915
82327
|
|
|
81916
|
-
export declare class FirewallDomainList_Tag {
|
|
81917
|
-
constructor(props: {
|
|
81918
|
-
/** 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 -. */
|
|
81919
|
-
Key: string;
|
|
81920
|
-
/** 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 -. */
|
|
81921
|
-
Value: string;
|
|
81922
|
-
});
|
|
81923
|
-
}
|
|
81924
|
-
|
|
81925
82328
|
export declare class FirewallPolicy_ActionDefinition {
|
|
81926
82329
|
constructor(props: {
|
|
81927
82330
|
PublishMetricAction?: FirewallPolicy_PublishMetricAction;
|
|
@@ -82005,35 +82408,6 @@ export declare class FirewallPolicy_Tag {
|
|
|
82005
82408
|
});
|
|
82006
82409
|
}
|
|
82007
82410
|
|
|
82008
|
-
export declare class FirewallRule {
|
|
82009
|
-
constructor(props: {
|
|
82010
|
-
/** Rule Action */
|
|
82011
|
-
Action: "ALERT" | "ALLOW" | "BLOCK";
|
|
82012
|
-
/** Rule Priority */
|
|
82013
|
-
Priority: number;
|
|
82014
|
-
/** BlockOverrideDnsType */
|
|
82015
|
-
BlockOverrideDnsType?: "CNAME";
|
|
82016
|
-
/** BlockOverrideDomain */
|
|
82017
|
-
BlockOverrideDomain?: string;
|
|
82018
|
-
/** BlockOverrideTtl */
|
|
82019
|
-
BlockOverrideTtl?: number;
|
|
82020
|
-
/** BlockResponse */
|
|
82021
|
-
BlockResponse?: "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
|
82022
|
-
/** FirewallDomainRedirectionAction */
|
|
82023
|
-
ConfidenceThreshold?: "HIGH" | "LOW" | "MEDIUM";
|
|
82024
|
-
/** FirewallDomainRedirectionAction */
|
|
82025
|
-
DnsThreatProtection?: "DGA" | "DICTIONARY_DGA" | "DNS_TUNNELING";
|
|
82026
|
-
/** ResourceId */
|
|
82027
|
-
FirewallDomainListId?: string;
|
|
82028
|
-
/** FirewallDomainRedirectionAction */
|
|
82029
|
-
FirewallDomainRedirectionAction?: "INSPECT_REDIRECTION_DOMAIN" | "TRUST_REDIRECTION_DOMAIN";
|
|
82030
|
-
/** ResourceId */
|
|
82031
|
-
FirewallThreatProtectionId?: string;
|
|
82032
|
-
/** Qtype */
|
|
82033
|
-
Qtype?: string;
|
|
82034
|
-
});
|
|
82035
|
-
}
|
|
82036
|
-
|
|
82037
82411
|
export declare class FirewallRuleGroup_FirewallRule {
|
|
82038
82412
|
constructor(props: {
|
|
82039
82413
|
/** Rule Action */
|
|
@@ -85199,6 +85573,13 @@ export declare class GlobalReplicationGroupMember {
|
|
|
85199
85573
|
});
|
|
85200
85574
|
}
|
|
85201
85575
|
|
|
85576
|
+
export declare class GlobalResolver_Tag {
|
|
85577
|
+
constructor(props: {
|
|
85578
|
+
Key: string;
|
|
85579
|
+
Value: string;
|
|
85580
|
+
});
|
|
85581
|
+
}
|
|
85582
|
+
|
|
85202
85583
|
export declare class GlobalTable_AttributeDefinition {
|
|
85203
85584
|
constructor(props: {
|
|
85204
85585
|
AttributeName: string;
|
|
@@ -85727,7 +86108,7 @@ export declare class GlueSecurityConfiguration_EncryptionConfiguration {
|
|
|
85727
86108
|
constructor(props: {
|
|
85728
86109
|
CloudWatchEncryption?: GlueSecurityConfiguration_CloudWatchEncryption;
|
|
85729
86110
|
JobBookmarksEncryption?: GlueSecurityConfiguration_JobBookmarksEncryption;
|
|
85730
|
-
S3Encryptions?:
|
|
86111
|
+
S3Encryptions?: GlueSecurityConfiguration_S3Encryption[];
|
|
85731
86112
|
});
|
|
85732
86113
|
}
|
|
85733
86114
|
|
|
@@ -85738,6 +86119,13 @@ export declare class GlueSecurityConfiguration_JobBookmarksEncryption {
|
|
|
85738
86119
|
});
|
|
85739
86120
|
}
|
|
85740
86121
|
|
|
86122
|
+
export declare class GlueSecurityConfiguration_S3Encryption {
|
|
86123
|
+
constructor(props: {
|
|
86124
|
+
KmsKeyArn?: string;
|
|
86125
|
+
S3EncryptionMode?: string;
|
|
86126
|
+
});
|
|
86127
|
+
}
|
|
86128
|
+
|
|
85741
86129
|
export declare class GlueTable_Column {
|
|
85742
86130
|
constructor(props: {
|
|
85743
86131
|
Name: string;
|
|
@@ -89492,6 +89880,12 @@ export declare class InferenceComponentStartupParameters {
|
|
|
89492
89880
|
});
|
|
89493
89881
|
}
|
|
89494
89882
|
|
|
89883
|
+
export declare class InferenceContainerConfig {
|
|
89884
|
+
constructor(props: {
|
|
89885
|
+
ImageUri: string;
|
|
89886
|
+
});
|
|
89887
|
+
}
|
|
89888
|
+
|
|
89495
89889
|
export declare class InferenceExecutionConfig {
|
|
89496
89890
|
constructor(props: {
|
|
89497
89891
|
Mode: string;
|
|
@@ -90442,6 +90836,13 @@ export declare class Insight_StringFilter {
|
|
|
90442
90836
|
});
|
|
90443
90837
|
}
|
|
90444
90838
|
|
|
90839
|
+
export declare class InsightRule_Tag {
|
|
90840
|
+
constructor(props: {
|
|
90841
|
+
Key: string;
|
|
90842
|
+
Value: string;
|
|
90843
|
+
});
|
|
90844
|
+
}
|
|
90845
|
+
|
|
90445
90846
|
export declare class InsightsConfiguration {
|
|
90446
90847
|
constructor(props: {
|
|
90447
90848
|
/** Set the InsightsEnabled value to true to enable insights or false to disable insights. */
|
|
@@ -99190,6 +99591,13 @@ export declare class LogPublishingOptions {
|
|
|
99190
99591
|
});
|
|
99191
99592
|
}
|
|
99192
99593
|
|
|
99594
|
+
export declare class LogRedactionConfiguration {
|
|
99595
|
+
constructor(props: {
|
|
99596
|
+
EntitiesToRedact: ConfiguredModelAlgorithmAssociation_EntityType[];
|
|
99597
|
+
CustomEntityConfig?: ConfiguredModelAlgorithmAssociation_CustomEntityConfig;
|
|
99598
|
+
});
|
|
99599
|
+
}
|
|
99600
|
+
|
|
99193
99601
|
export declare class LogsBackupConfiguration {
|
|
99194
99602
|
constructor(props: {
|
|
99195
99603
|
Region: string;
|
|
@@ -99204,6 +99612,15 @@ export declare class LogsConfig {
|
|
|
99204
99612
|
});
|
|
99205
99613
|
}
|
|
99206
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
|
+
|
|
99207
99624
|
export declare class LogsDestination_Tag {
|
|
99208
99625
|
constructor(props: {
|
|
99209
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 @. */
|
|
@@ -104980,123 +105397,6 @@ export declare class MetricCharacteristics {
|
|
|
104980
105397
|
});
|
|
104981
105398
|
}
|
|
104982
105399
|
|
|
104983
|
-
export declare class MetricDefinition {
|
|
104984
|
-
constructor(props: {
|
|
104985
|
-
/** The name for the metric that is defined in this structure. For extended metrics, valid values are the following:
|
|
104986
|
-
|
|
104987
|
-
PerformanceNavigationDuration
|
|
104988
|
-
|
|
104989
|
-
PerformanceResourceDuration
|
|
104990
|
-
|
|
104991
|
-
NavigationSatisfiedTransaction
|
|
104992
|
-
|
|
104993
|
-
NavigationToleratedTransaction
|
|
104994
|
-
|
|
104995
|
-
NavigationFrustratedTransaction
|
|
104996
|
-
|
|
104997
|
-
WebVitalsCumulativeLayoutShift
|
|
104998
|
-
|
|
104999
|
-
WebVitalsFirstInputDelay
|
|
105000
|
-
|
|
105001
|
-
WebVitalsLargestContentfulPaint
|
|
105002
|
-
|
|
105003
|
-
WebVitalsInteractionToNextPaint
|
|
105004
|
-
|
|
105005
|
-
JsErrorCount
|
|
105006
|
-
|
|
105007
|
-
HttpErrorCount
|
|
105008
|
-
|
|
105009
|
-
SessionCount
|
|
105010
|
-
|
|
105011
|
-
PageViewCount
|
|
105012
|
-
|
|
105013
|
-
Http4xxCount
|
|
105014
|
-
|
|
105015
|
-
Http5xxCount
|
|
105016
|
-
|
|
105017
|
-
SessionDuration
|
|
105018
|
-
|
|
105019
|
-
PageViewCountPerSession
|
|
105020
|
-
|
|
105021
|
-
JsErrorCountPerSession
|
|
105022
|
-
|
|
105023
|
-
Http4xxCountPerSession
|
|
105024
|
-
|
|
105025
|
-
Http5xxCountPerSession
|
|
105026
|
-
|
|
105027
|
-
JsErrorCountPerPageView
|
|
105028
|
-
|
|
105029
|
-
Http4xxCountPerPageView
|
|
105030
|
-
|
|
105031
|
-
Http5xxCountPerPageView
|
|
105032
|
-
|
|
105033
|
-
TimeOnPage
|
|
105034
|
-
|
|
105035
|
-
ColdLaunchTime
|
|
105036
|
-
|
|
105037
|
-
WarmLaunchTime
|
|
105038
|
-
|
|
105039
|
-
CrashCount
|
|
105040
|
-
|
|
105041
|
-
ANRCount
|
|
105042
|
-
|
|
105043
|
-
AppHangCount
|
|
105044
|
-
|
|
105045
|
-
ScreenLoadCount
|
|
105046
|
-
|
|
105047
|
-
ScreenLoadTime
|
|
105048
|
-
|
|
105049
|
-
NetworkLatency
|
|
105050
|
-
|
|
105051
|
-
SpanPayloadSize
|
|
105052
|
-
|
|
105053
|
-
LogEventPayloadSize */
|
|
105054
|
-
Name: string;
|
|
105055
|
-
/** Use this field only if you are sending the metric to CloudWatch.
|
|
105056
|
-
|
|
105057
|
-
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:
|
|
105058
|
-
|
|
105059
|
-
"metadata.pageId": "PageId"
|
|
105060
|
-
|
|
105061
|
-
"metadata.browserName": "BrowserName"
|
|
105062
|
-
|
|
105063
|
-
"metadata.deviceType": "DeviceType"
|
|
105064
|
-
|
|
105065
|
-
"metadata.osName": "OSName"
|
|
105066
|
-
|
|
105067
|
-
"metadata.countryCode": "CountryCode"
|
|
105068
|
-
|
|
105069
|
-
"event_details.fileType": "FileType"
|
|
105070
|
-
|
|
105071
|
-
All dimensions listed in this field must also be included in EventPattern. */
|
|
105072
|
-
DimensionKeys?: Record<string, unknown>;
|
|
105073
|
-
/** 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.
|
|
105074
|
-
|
|
105075
|
-
When you define extended metrics, the metric definition is not valid if EventPattern is omitted.
|
|
105076
|
-
|
|
105077
|
-
Example event patterns:
|
|
105078
|
-
|
|
105079
|
-
'{ "event_type": ["com.amazon.rum.js_error_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], } }'
|
|
105080
|
-
|
|
105081
|
-
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Firefox" ] }, "event_details": { "duration": [{ "numeric": [ "<", 2000 ] }] } }'
|
|
105082
|
-
|
|
105083
|
-
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], "countryCode": [ "US" ] }, "event_details": { "duration": [{ "numeric": [ ">=", 2000, "<", 8000 ] }] } }'
|
|
105084
|
-
|
|
105085
|
-
If the metrics destination' is CloudWatch and the event also matches a value in DimensionKeys, then the metric is published with the specified dimensions. */
|
|
105086
|
-
EventPattern?: string;
|
|
105087
|
-
/** The namespace used by CloudWatch Metrics for the metric that is defined in this structure */
|
|
105088
|
-
Namespace?: string;
|
|
105089
|
-
/** The CloudWatch metric unit to use for this metric. If you omit this field, the metric is recorded with no unit. */
|
|
105090
|
-
UnitLabel?: string;
|
|
105091
|
-
/** The field within the event object that the metric value is sourced from.
|
|
105092
|
-
|
|
105093
|
-
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.
|
|
105094
|
-
|
|
105095
|
-
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. */
|
|
105096
|
-
ValueKey?: string;
|
|
105097
|
-
});
|
|
105098
|
-
}
|
|
105099
|
-
|
|
105100
105400
|
export declare class MetricDefinitionObject {
|
|
105101
105401
|
constructor(props: {
|
|
105102
105402
|
/** The JSON path to reference the entity id in the event. */
|
|
@@ -105247,6 +105547,12 @@ export declare class MetricsConfig {
|
|
|
105247
105547
|
});
|
|
105248
105548
|
}
|
|
105249
105549
|
|
|
105550
|
+
export declare class MetricsConfigurationPolicy {
|
|
105551
|
+
constructor(props: {
|
|
105552
|
+
NoiseLevel: ConfiguredModelAlgorithmAssociation_NoiseLevelType;
|
|
105553
|
+
});
|
|
105554
|
+
}
|
|
105555
|
+
|
|
105250
105556
|
export declare class MetricsSource {
|
|
105251
105557
|
constructor(props: {
|
|
105252
105558
|
/** The type of content stored in the metric source. */
|
|
@@ -109620,10 +109926,15 @@ export declare class Nodegroup_UpdateConfig {
|
|
|
109620
109926
|
|
|
109621
109927
|
export declare class NodeGroupConfiguration {
|
|
109622
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. */
|
|
109623
109930
|
NodeGroupId?: string;
|
|
109931
|
+
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
109624
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. */
|
|
109625
109934
|
ReplicaAvailabilityZones?: string[];
|
|
109935
|
+
/** The number of read replica nodes in this node group (shard). */
|
|
109626
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. */
|
|
109627
109938
|
Slots?: string;
|
|
109628
109939
|
});
|
|
109629
109940
|
}
|
|
@@ -110874,6 +111185,12 @@ export declare class OpenSearchServiceDomain_ColdStorageOptions {
|
|
|
110874
111185
|
});
|
|
110875
111186
|
}
|
|
110876
111187
|
|
|
111188
|
+
export declare class OpenSearchServiceDomain_DeploymentStrategyOptions {
|
|
111189
|
+
constructor(props: {
|
|
111190
|
+
DeploymentStrategy?: "CapacityOptimized" | "Default";
|
|
111191
|
+
});
|
|
111192
|
+
}
|
|
111193
|
+
|
|
110877
111194
|
export declare class OpenSearchServiceDomain_DomainEndpointOptions {
|
|
110878
111195
|
constructor(props: {
|
|
110879
111196
|
CustomEndpoint?: string;
|
|
@@ -115666,7 +115983,7 @@ export declare class PolicyDetails {
|
|
|
115666
115983
|
Actions?: DLMLifecyclePolicy_Action[];
|
|
115667
115984
|
CopyTags?: boolean;
|
|
115668
115985
|
CreateInterval?: number;
|
|
115669
|
-
CrossRegionCopyTargets?:
|
|
115986
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
115670
115987
|
EventSource?: DLMLifecyclePolicy_EventSource;
|
|
115671
115988
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
115672
115989
|
ExtendDeletion?: boolean;
|
|
@@ -115835,6 +116152,12 @@ export declare class PolicyStore_KmsEncryptionState {
|
|
|
115835
116152
|
});
|
|
115836
116153
|
}
|
|
115837
116154
|
|
|
116155
|
+
export declare class PolicyStore_SchemaDefinition {
|
|
116156
|
+
constructor(props: {
|
|
116157
|
+
CedarJson?: string;
|
|
116158
|
+
});
|
|
116159
|
+
}
|
|
116160
|
+
|
|
115838
116161
|
export declare class PolicyStore_Tag {
|
|
115839
116162
|
constructor(props: {
|
|
115840
116163
|
Key: string;
|
|
@@ -116473,6 +116796,20 @@ export declare class PrivacyBudgetTemplate_Tag {
|
|
|
116473
116796
|
});
|
|
116474
116797
|
}
|
|
116475
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
|
+
|
|
116476
116813
|
export declare class PrivateDnsNameOptionsRequest {
|
|
116477
116814
|
constructor(props: {
|
|
116478
116815
|
EnableResourceNameDnsAAAARecord?: boolean;
|
|
@@ -130384,19 +130721,6 @@ export declare class Relevance {
|
|
|
130384
130721
|
});
|
|
130385
130722
|
}
|
|
130386
130723
|
|
|
130387
|
-
export declare class RemediationConfiguration_ExecutionControls {
|
|
130388
|
-
constructor(props: {
|
|
130389
|
-
SsmControls?: RemediationConfiguration_SsmControls;
|
|
130390
|
-
});
|
|
130391
|
-
}
|
|
130392
|
-
|
|
130393
|
-
export declare class RemediationConfiguration_SsmControls {
|
|
130394
|
-
constructor(props: {
|
|
130395
|
-
ConcurrentExecutionRatePercentage?: number;
|
|
130396
|
-
ErrorPercentage?: number;
|
|
130397
|
-
});
|
|
130398
|
-
}
|
|
130399
|
-
|
|
130400
130724
|
export declare class RemixSettings {
|
|
130401
130725
|
constructor(props: {
|
|
130402
130726
|
ChannelMappings?: MediaLiveChannel_AudioChannelMapping[];
|
|
@@ -130415,7 +130739,7 @@ export declare class RemoteAccess {
|
|
|
130415
130739
|
export declare class RemoteNetworkConfig {
|
|
130416
130740
|
constructor(props: {
|
|
130417
130741
|
/** Network configuration of nodes run on-premises with EKS Hybrid Nodes. */
|
|
130418
|
-
RemoteNodeNetworks
|
|
130742
|
+
RemoteNodeNetworks?: any;
|
|
130419
130743
|
/** Network configuration of pods run on-premises with EKS Hybrid Nodes. */
|
|
130420
130744
|
RemotePodNetworks?: any;
|
|
130421
130745
|
});
|
|
@@ -130621,6 +130945,7 @@ export declare class ReplicationConfiguration_RepositoryFilter {
|
|
|
130621
130945
|
|
|
130622
130946
|
export declare class ReplicationGroup_CloudWatchLogsDestinationDetails {
|
|
130623
130947
|
constructor(props: {
|
|
130948
|
+
/** The name of the CloudWatch Logs log group. */
|
|
130624
130949
|
LogGroup: string;
|
|
130625
130950
|
});
|
|
130626
130951
|
}
|
|
@@ -130632,8 +130957,18 @@ export declare class ReplicationGroup_DestinationDetails {
|
|
|
130632
130957
|
});
|
|
130633
130958
|
}
|
|
130634
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
|
+
|
|
130635
130969
|
export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
130636
130970
|
constructor(props: {
|
|
130971
|
+
/** The name of the Kinesis Data Firehose delivery stream. */
|
|
130637
130972
|
DeliveryStream: string;
|
|
130638
130973
|
});
|
|
130639
130974
|
}
|
|
@@ -130641,25 +130976,35 @@ export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
|
130641
130976
|
export declare class ReplicationGroup_LogDeliveryConfigurationRequest {
|
|
130642
130977
|
constructor(props: {
|
|
130643
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. */
|
|
130644
130980
|
DestinationType: string;
|
|
130981
|
+
/** Valid values are either json or text. */
|
|
130645
130982
|
LogFormat: string;
|
|
130983
|
+
/** Valid value is either slow-log, which refers to slow-log or engine-log. */
|
|
130646
130984
|
LogType: string;
|
|
130647
130985
|
});
|
|
130648
130986
|
}
|
|
130649
130987
|
|
|
130650
130988
|
export declare class ReplicationGroup_NodeGroupConfiguration {
|
|
130651
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. */
|
|
130652
130991
|
NodeGroupId?: string;
|
|
130992
|
+
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
130653
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. */
|
|
130654
130995
|
ReplicaAvailabilityZones?: string[];
|
|
130996
|
+
/** The number of read replica nodes in this node group (shard). */
|
|
130655
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. */
|
|
130656
130999
|
Slots?: string;
|
|
130657
131000
|
});
|
|
130658
131001
|
}
|
|
130659
131002
|
|
|
130660
131003
|
export declare class ReplicationGroup_Tag {
|
|
130661
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 -. */
|
|
130662
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 -. */
|
|
130663
131008
|
Value: string;
|
|
130664
131009
|
});
|
|
130665
131010
|
}
|
|
@@ -131136,6 +131481,12 @@ export declare class RequiredFieldInfo {
|
|
|
131136
131481
|
});
|
|
131137
131482
|
}
|
|
131138
131483
|
|
|
131484
|
+
export declare class ReservedCapacityOptionsRequest {
|
|
131485
|
+
constructor(props: {
|
|
131486
|
+
ReservationTypes?: "interruptible-capacity-reservation"[];
|
|
131487
|
+
});
|
|
131488
|
+
}
|
|
131489
|
+
|
|
131139
131490
|
export declare class ResetTimer {
|
|
131140
131491
|
constructor(props: {
|
|
131141
131492
|
/** The name of the timer to reset. */
|
|
@@ -132682,6 +133033,13 @@ export declare class Route {
|
|
|
132682
133033
|
});
|
|
132683
133034
|
}
|
|
132684
133035
|
|
|
133036
|
+
export declare class Route53GlobalResolverFirewallDomainList_Tag {
|
|
133037
|
+
constructor(props: {
|
|
133038
|
+
Key: string;
|
|
133039
|
+
Value: string;
|
|
133040
|
+
});
|
|
133041
|
+
}
|
|
133042
|
+
|
|
132685
133043
|
export declare class Route53HealthCheckConfiguration {
|
|
132686
133044
|
constructor(props: {
|
|
132687
133045
|
HostedZoneId: string;
|
|
@@ -132772,6 +133130,15 @@ export declare class Route53RecoveryReadinessResourceSet_TargetResource {
|
|
|
132772
133130
|
});
|
|
132773
133131
|
}
|
|
132774
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
|
+
|
|
132775
133142
|
export declare class Route53ResourceRecordSet {
|
|
132776
133143
|
constructor(props: {
|
|
132777
133144
|
RecordSetIdentifier?: string;
|
|
@@ -134147,15 +134514,6 @@ export declare class S3DestinationProperties {
|
|
|
134147
134514
|
});
|
|
134148
134515
|
}
|
|
134149
134516
|
|
|
134150
|
-
export declare class S3Encryption {
|
|
134151
|
-
constructor(props: {
|
|
134152
|
-
/** Encryption mode for encrypting artifacts when uploading to S3. Valid values: SSE_S3 and SSE_KMS. */
|
|
134153
|
-
EncryptionMode?: string;
|
|
134154
|
-
/** KMS key Arn for encrypting artifacts when uploading to S3. You must specify KMS key Arn for SSE_KMS encryption mode only. */
|
|
134155
|
-
KmsKeyArn?: string;
|
|
134156
|
-
});
|
|
134157
|
-
}
|
|
134158
|
-
|
|
134159
134517
|
export declare class S3EncryptionConfiguration {
|
|
134160
134518
|
constructor(props: {
|
|
134161
134519
|
/** The S3 encryption option. */
|
|
@@ -142106,13 +142464,6 @@ export declare class SSMContactsPlan_Targets {
|
|
|
142106
142464
|
});
|
|
142107
142465
|
}
|
|
142108
142466
|
|
|
142109
|
-
export declare class SsmControls {
|
|
142110
|
-
constructor(props: {
|
|
142111
|
-
ConcurrentExecutionRatePercentage?: number;
|
|
142112
|
-
ErrorPercentage?: number;
|
|
142113
|
-
});
|
|
142114
|
-
}
|
|
142115
|
-
|
|
142116
142467
|
export declare class SSMLMessage {
|
|
142117
142468
|
constructor(props: {
|
|
142118
142469
|
Value: string;
|
|
@@ -144351,7 +144702,7 @@ export declare class TargetAddress {
|
|
|
144351
144702
|
export declare class TargetCapacitySpecificationRequest {
|
|
144352
144703
|
constructor(props: {
|
|
144353
144704
|
TotalTargetCapacity: number;
|
|
144354
|
-
DefaultTargetCapacityType?: "on-demand" | "spot";
|
|
144705
|
+
DefaultTargetCapacityType?: "on-demand" | "reserved-capacity" | "spot";
|
|
144355
144706
|
OnDemandTargetCapacity?: number;
|
|
144356
144707
|
SpotTargetCapacity?: number;
|
|
144357
144708
|
TargetCapacityUnitType?: "memory-mib" | "units" | "vcpu";
|
|
@@ -147616,6 +147967,49 @@ export declare class Trail_Tag {
|
|
|
147616
147967
|
});
|
|
147617
147968
|
}
|
|
147618
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
|
+
|
|
147619
148013
|
export declare class TrainingDataset_ColumnSchema {
|
|
147620
148014
|
constructor(props: {
|
|
147621
148015
|
ColumnName: string;
|
|
@@ -155240,6 +155634,14 @@ export type Accessor_NetworkAccessorType =
|
|
|
155240
155634
|
| "POLYGON_MAINNET"
|
|
155241
155635
|
| "POLYGON_MUMBAI";
|
|
155242
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
|
+
|
|
155243
155645
|
export type ActionConnector_ActionConnectorType =
|
|
155244
155646
|
| "AMAZON_BEDROCK_AGENT_RUNTIME"
|
|
155245
155647
|
| "AMAZON_BEDROCK_DATA_AUTOMATION_RUNTIME"
|
|
@@ -157629,6 +158031,27 @@ export type ConfigurationManager_Status =
|
|
|
157629
158031
|
|
|
157630
158032
|
export type ConfigurationManager_StatusType = "AsyncExecutions" | "Deployment";
|
|
157631
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
|
+
|
|
157632
158055
|
export type ConfiguredTable_AdditionalAnalyses = "ALLOWED" | "NOT_ALLOWED" | "REQUIRED";
|
|
157633
158056
|
|
|
157634
158057
|
export type ConfiguredTable_AggregateFunctionName =
|
|
@@ -158342,6 +158765,21 @@ export type DevOpsGuruNotificationChannel_NotificationMessageType =
|
|
|
158342
158765
|
| "NEW_RECOMMENDATION"
|
|
158343
158766
|
| "SEVERITY_UPGRADED";
|
|
158344
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
|
+
|
|
158345
158783
|
export type ECRRepository_EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
|
158346
158784
|
|
|
158347
158785
|
export type ECRRepository_ImageTagMutabilityExclusionFilterType = "WILDCARD";
|
|
@@ -158449,6 +158887,18 @@ export type FirewallPolicy_RuleOrder = "DEFAULT_ACTION_ORDER" | "STRICT_ORDER";
|
|
|
158449
158887
|
|
|
158450
158888
|
export type FirewallPolicy_StreamExceptionPolicy = "CONTINUE" | "DROP" | "REJECT";
|
|
158451
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
|
+
|
|
158452
158902
|
export type FlowAlias_ConcurrencyType = "Automatic" | "Manual";
|
|
158453
158903
|
|
|
158454
158904
|
export type FlowOutput_FlowTransitEncryptionKeyType = "AUTOMATIC" | "SECRETS_MANAGER";
|
|
@@ -158570,6 +159020,10 @@ export type GatewayTarget_TargetStatus =
|
|
|
158570
159020
|
|
|
158571
159021
|
export type GeofenceCollection_PricingPlan = "RequestBasedUsage";
|
|
158572
159022
|
|
|
159023
|
+
export type GlobalResolver_CRResourceStatus = "CREATING" | "DELETING" | "OPERATIONAL" | "UPDATING";
|
|
159024
|
+
|
|
159025
|
+
export type GlobalResolver_GlobalResolverIpAddressType = "DUAL_STACK" | "IPV4";
|
|
159026
|
+
|
|
158573
159027
|
export type GrafanaWorkspace_AccountAccessType = "CURRENT_ACCOUNT" | "ORGANIZATION";
|
|
158574
159028
|
|
|
158575
159029
|
export type GrafanaWorkspace_AuthenticationProviderTypes = "AWS_SSO" | "SAML";
|
|
@@ -158693,6 +159147,11 @@ export type HealthImagingDatastore_DatastoreStatus =
|
|
|
158693
159147
|
| "DELETED"
|
|
158694
159148
|
| "DELETING";
|
|
158695
159149
|
|
|
159150
|
+
export type HostedZoneAssociation_HostedZoneAssociationStatus =
|
|
159151
|
+
| "CREATING"
|
|
159152
|
+
| "DELETING"
|
|
159153
|
+
| "OPERATIONAL";
|
|
159154
|
+
|
|
158696
159155
|
export type HoursOfOperation_OverrideType = "CLOSED" | "OPEN" | "STANDARD";
|
|
158697
159156
|
|
|
158698
159157
|
export type HoursOfOperation_RecurrenceFrequency = "MONTHLY" | "WEEKLY" | "YEARLY";
|
|
@@ -161213,6 +161672,12 @@ export type RolesAnywhereProfile_CertificateField = "x509Issuer" | "x509SAN" | "
|
|
|
161213
161672
|
|
|
161214
161673
|
export type Rotation_DayOfWeek = "FRI" | "MON" | "SAT" | "SUN" | "THU" | "TUE" | "WED";
|
|
161215
161674
|
|
|
161675
|
+
export type Route53GlobalResolverFirewallDomainList_CRResourceStatus =
|
|
161676
|
+
| "CREATING"
|
|
161677
|
+
| "DELETING"
|
|
161678
|
+
| "OPERATIONAL"
|
|
161679
|
+
| "UPDATING";
|
|
161680
|
+
|
|
161216
161681
|
export type RouteCalculator_PricingPlan = "RequestBasedUsage";
|
|
161217
161682
|
|
|
161218
161683
|
export type RouterInput_Day =
|
|
@@ -162069,6 +162534,10 @@ export type TaskTemplate_FieldType =
|
|
|
162069
162534
|
|
|
162070
162535
|
export type TaskTemplate_Status = "ACTIVE" | "INACTIVE";
|
|
162071
162536
|
|
|
162537
|
+
export type TelemetryEnrichment_Scope = "ACCOUNT";
|
|
162538
|
+
|
|
162539
|
+
export type TelemetryEnrichment_Status = "IMPAIRED" | "RUNNING" | "STOPPED";
|
|
162540
|
+
|
|
162072
162541
|
export type TelemetryPipelines_TelemetryPipelineStatus =
|
|
162073
162542
|
| "ACTIVE"
|
|
162074
162543
|
| "CREATE_FAILED"
|
|
@@ -162216,6 +162685,7 @@ export type TransferUser_HomeDirectoryType = "LOGICAL" | "PATH";
|
|
|
162216
162685
|
export type TransferUser_MapType = "DIRECTORY" | "FILE";
|
|
162217
162686
|
|
|
162218
162687
|
export type TransitGatewayMeteringPolicyEntry_TransitGatewayAttachmentResourceType =
|
|
162688
|
+
| "client-vpn"
|
|
162219
162689
|
| "direct-connect-gateway"
|
|
162220
162690
|
| "network-function"
|
|
162221
162691
|
| "peering"
|