@intentius/chant-lexicon-aws 0.40.0 → 0.41.3
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/components/capability-plugin.d.ts +1 -1
- package/dist/components/capability-plugin.d.ts.map +1 -1
- package/dist/generated/index.d.ts +37 -3
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +324 -31
- package/dist/spec/fetch.d.ts +27 -1
- package/dist/spec/fetch.d.ts.map +1 -1
- package/dist/spec/pin.d.ts.map +1 -1
- package/dist/spec/pinned-types.json +3 -0
- package/dist/types/index.d.ts +450 -25
- package/package.json +2 -2
- package/src/components/capability-plugin.test.ts +19 -0
- package/src/components/capability-plugin.ts +5 -2
- package/src/generated/index.d.ts +450 -25
- package/src/generated/index.ts +41 -7
- package/src/generated/lexicon-aws.json +324 -31
- package/src/spec/fetch.test.ts +101 -1
- package/src/spec/fetch.ts +144 -4
- package/src/spec/pin.test.ts +33 -18
- package/src/spec/pin.ts +19 -12
- package/src/spec/pinned-types.json +3 -0
package/src/generated/index.d.ts
CHANGED
|
@@ -4425,8 +4425,12 @@ export declare class Canary {
|
|
|
4425
4425
|
FailureRetentionPeriod?: number;
|
|
4426
4426
|
/** Id of the canary */
|
|
4427
4427
|
Id?: string;
|
|
4428
|
+
/** KMS key ARN for encrypting the canary's Lambda function environment variables at rest. If omitted, Lambda uses an AWS-managed key. */
|
|
4429
|
+
KmsKeyArn?: string;
|
|
4428
4430
|
/** Setting to control if provisioned resources created by Synthetics are deleted alongside the canary. Default is AUTOMATIC. */
|
|
4429
4431
|
ProvisionedResourceCleanup?: "AUTOMATIC" | "OFF";
|
|
4432
|
+
/** List of replica locations for multi-location canary execution */
|
|
4433
|
+
Replicas?: Canary_Replica[];
|
|
4430
4434
|
/** List of resources which canary tags should be replicated to. */
|
|
4431
4435
|
ResourcesToReplicateTags?: Canary_ResourceToTag[];
|
|
4432
4436
|
/** Provide canary run configuration */
|
|
@@ -4447,6 +4451,10 @@ export declare class Canary {
|
|
|
4447
4451
|
}, attributes?: CFResourceAttributes);
|
|
4448
4452
|
readonly Code_SourceLocationArn: string;
|
|
4449
4453
|
readonly Id: string;
|
|
4454
|
+
readonly Replicas_Item_CanaryState: string;
|
|
4455
|
+
readonly Replicas_Item_LastModified: string;
|
|
4456
|
+
readonly Replicas_Item_ReplicationStatus: string;
|
|
4457
|
+
readonly Replicas_Item_VpcConfig_VpcId: string;
|
|
4450
4458
|
readonly State: string;
|
|
4451
4459
|
}
|
|
4452
4460
|
|
|
@@ -10879,14 +10887,20 @@ export declare class DevOpsAgentService {
|
|
|
10879
10887
|
AdditionalServiceDetails?: Record<string, unknown>;
|
|
10880
10888
|
/** The Amazon Resource Name (ARN) of the Service. */
|
|
10881
10889
|
Arn?: string;
|
|
10890
|
+
/** The name of the private connection to use for OAuth token exchange requests only. Cannot be specified when PrivateConnectionName is provided. */
|
|
10891
|
+
ExchangeUrlPrivateConnectionName?: string;
|
|
10882
10892
|
/** The ARN of the KMS key to use for encryption. */
|
|
10883
10893
|
KmsKeyArn?: string;
|
|
10894
|
+
/** The name of the private connection to use for VPC connectivity. */
|
|
10895
|
+
PrivateConnectionName?: string;
|
|
10884
10896
|
/** Service-specific configuration details for create operation */
|
|
10885
10897
|
ServiceDetails?: Record<string, unknown>;
|
|
10886
10898
|
/** The unique identifier of the service */
|
|
10887
10899
|
ServiceId?: string;
|
|
10888
10900
|
/** An array of key-value pairs to apply to this resource. */
|
|
10889
10901
|
Tags?: DevOpsAgentService_Tag[];
|
|
10902
|
+
/** The name of the private connection to use for API calls (target URL) only. Cannot be specified when PrivateConnectionName is provided. */
|
|
10903
|
+
TargetUrlPrivateConnectionName?: string;
|
|
10890
10904
|
}, attributes?: CFResourceAttributes);
|
|
10891
10905
|
readonly AccessibleResources: Record<string, unknown>[];
|
|
10892
10906
|
readonly AdditionalServiceDetails: Record<string, unknown>;
|
|
@@ -11389,16 +11403,27 @@ export declare class DMSEndpoint {
|
|
|
11389
11403
|
|
|
11390
11404
|
export declare class DMSEventSubscription {
|
|
11391
11405
|
constructor(props: {
|
|
11406
|
+
/** The Amazon Resource Name (ARN) of the Amazon SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
|
|
11407
|
+
|
|
11408
|
+
*/
|
|
11392
11409
|
SnsTopicArn: string;
|
|
11410
|
+
/** Indicates whether to activate the subscription. If you don't specify this property, CloudFormation activates the subscription. */
|
|
11393
11411
|
Enabled?: boolean;
|
|
11412
|
+
/** A list of event categories for a source type that you want to subscribe to. If you don't specify this property, you are notified about all event categories. */
|
|
11394
11413
|
EventCategories?: string[];
|
|
11395
|
-
|
|
11414
|
+
/** A list of identifiers for which AWS DMS provides notification events.
|
|
11415
|
+
|
|
11416
|
+
If you don't specify a value, notifications are provided for all sources.
|
|
11417
|
+
|
|
11418
|
+
If you specify multiple values, they must be of the same type. For example, if you specify a database instance ID, then all of the other values must be database instance IDs. */
|
|
11396
11419
|
SourceIds?: string[];
|
|
11420
|
+
/** The type of AWS DMS resource that generates the events. For example, if you want to be notified of events generated by a replication instance, you set this parameter to replication-instance. If this value isn't specified, all events are returned. */
|
|
11397
11421
|
SourceType?: string;
|
|
11422
|
+
/** The name of the AWS DMS event notification subscription. This name must be less than 255 characters. */
|
|
11398
11423
|
SubscriptionName?: string;
|
|
11424
|
+
/** One or more tags to be assigned to the event subscription. */
|
|
11399
11425
|
Tags?: DMSEventSubscription_Tag[];
|
|
11400
11426
|
}, attributes?: CFResourceAttributes);
|
|
11401
|
-
readonly Id: string;
|
|
11402
11427
|
}
|
|
11403
11428
|
|
|
11404
11429
|
export declare class DMSInstanceProfile {
|
|
@@ -20029,6 +20054,22 @@ export declare class License {
|
|
|
20029
20054
|
readonly Version: string;
|
|
20030
20055
|
}
|
|
20031
20056
|
|
|
20057
|
+
export declare class LicenseAssetRuleSet {
|
|
20058
|
+
constructor(props: {
|
|
20059
|
+
/** License asset ruleset name. */
|
|
20060
|
+
Name: string;
|
|
20061
|
+
/** License asset rules. */
|
|
20062
|
+
Rules: LicenseAssetRuleSet_LicenseAssetRule[];
|
|
20063
|
+
/** License asset ruleset description. */
|
|
20064
|
+
Description?: string;
|
|
20065
|
+
/** Amazon Resource Name (ARN) of the license asset ruleset. */
|
|
20066
|
+
LicenseAssetRulesetArn?: string;
|
|
20067
|
+
/** Tags to add to the license asset ruleset. */
|
|
20068
|
+
Tags?: LicenseAssetRuleSet_Tag[];
|
|
20069
|
+
}, attributes?: CFResourceAttributes);
|
|
20070
|
+
readonly LicenseAssetRulesetArn: string;
|
|
20071
|
+
}
|
|
20072
|
+
|
|
20032
20073
|
export declare class LicenseEndpoint {
|
|
20033
20074
|
constructor(props: {
|
|
20034
20075
|
SecurityGroupIds: string[];
|
|
@@ -24506,6 +24547,8 @@ export declare class OAuth2CredentialProvider {
|
|
|
24506
24547
|
Oauth2ProviderConfigInput?: OAuth2CredentialProvider_Oauth2ProviderConfigInput;
|
|
24507
24548
|
/** The output configuration for the OAuth2 provider */
|
|
24508
24549
|
Oauth2ProviderConfigOutput?: OAuth2CredentialProvider_Oauth2ProviderConfigOutput;
|
|
24550
|
+
/** The current status of the OAuth2 credential provider */
|
|
24551
|
+
Status?: "CREATE_FAILED" | "CREATING" | "DELETE_FAILED" | "DELETING" | "READY" | "UPDATE_FAILED" | "UPDATING";
|
|
24509
24552
|
/** Tags to assign to the OAuth2 credential provider */
|
|
24510
24553
|
Tags?: OAuth2CredentialProvider_Tag[];
|
|
24511
24554
|
}, attributes?: CFResourceAttributes);
|
|
@@ -24517,6 +24560,7 @@ export declare class OAuth2CredentialProvider {
|
|
|
24517
24560
|
readonly CredentialProviderArn: string;
|
|
24518
24561
|
readonly LastUpdatedTime: string;
|
|
24519
24562
|
readonly Oauth2ProviderConfigOutput: OAuth2CredentialProvider_Oauth2ProviderConfigOutput;
|
|
24563
|
+
readonly Status: "CREATE_FAILED" | "CREATING" | "DELETE_FAILED" | "DELETING" | "READY" | "UPDATE_FAILED" | "UPDATING";
|
|
24520
24564
|
}
|
|
24521
24565
|
|
|
24522
24566
|
export declare class OAuthClientApplication {
|
|
@@ -33415,6 +33459,25 @@ export declare class SnapshotBlockPublicAccess {
|
|
|
33415
33459
|
readonly AccountId: string;
|
|
33416
33460
|
}
|
|
33417
33461
|
|
|
33462
|
+
export declare class SnapshotSchedule {
|
|
33463
|
+
constructor(props: {
|
|
33464
|
+
/** The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)". */
|
|
33465
|
+
ScheduleDefinitions: string[];
|
|
33466
|
+
/** A unique identifier for the snapshot schedule. Only alphanumeric characters are allowed. */
|
|
33467
|
+
ScheduleIdentifier: string;
|
|
33468
|
+
/** The Amazon Resource Name (ARN) of the snapshot schedule. */
|
|
33469
|
+
Arn?: string;
|
|
33470
|
+
/** The number of clusters associated with the schedule. */
|
|
33471
|
+
AssociatedClusterCount?: number;
|
|
33472
|
+
/** The description of the snapshot schedule. */
|
|
33473
|
+
ScheduleDescription?: string;
|
|
33474
|
+
/** An optional set of tags for the snapshot schedule. */
|
|
33475
|
+
Tags?: SnapshotSchedule_Tag[];
|
|
33476
|
+
}, attributes?: CFResourceAttributes);
|
|
33477
|
+
readonly Arn: string;
|
|
33478
|
+
readonly AssociatedClusterCount: number;
|
|
33479
|
+
}
|
|
33480
|
+
|
|
33418
33481
|
export declare class SoftwarePackage {
|
|
33419
33482
|
constructor(props: {
|
|
33420
33483
|
Description?: string;
|
|
@@ -33784,11 +33847,11 @@ export declare class Stack {
|
|
|
33784
33847
|
|
|
33785
33848
|
export declare class StackFleetAssociation {
|
|
33786
33849
|
constructor(props: {
|
|
33787
|
-
/** The name of the fleet. To associate a fleet with a stack, you must specify a dependency on the fleet resource. */
|
|
33788
33850
|
FleetName: string;
|
|
33789
|
-
/** The name of the stack. To associate a fleet with a stack, you must specify a dependency on the stack resource. */
|
|
33790
33851
|
StackName: string;
|
|
33852
|
+
Id?: string;
|
|
33791
33853
|
}, attributes?: CFResourceAttributes);
|
|
33854
|
+
readonly Id: string;
|
|
33792
33855
|
}
|
|
33793
33856
|
|
|
33794
33857
|
export declare class StackSet {
|
|
@@ -35476,6 +35539,23 @@ export declare class TopicRuleDestination {
|
|
|
35476
35539
|
readonly StatusReason: string;
|
|
35477
35540
|
}
|
|
35478
35541
|
|
|
35542
|
+
export declare class TopicV2 {
|
|
35543
|
+
constructor(props: {
|
|
35544
|
+
Arn?: string;
|
|
35545
|
+
AwsAccountId?: string;
|
|
35546
|
+
CustomInstructions?: TopicV2_CustomInstructions;
|
|
35547
|
+
DataSetRelations?: TopicV2_DataSetRelation[];
|
|
35548
|
+
DataSets?: TopicV2_DataSetReference[];
|
|
35549
|
+
Description?: string;
|
|
35550
|
+
FolderArns?: string[];
|
|
35551
|
+
Name?: string;
|
|
35552
|
+
Permissions?: TopicV2_ResourcePermission[];
|
|
35553
|
+
Tags?: TopicV2_Tag[];
|
|
35554
|
+
TopicId?: string;
|
|
35555
|
+
}, attributes?: CFResourceAttributes);
|
|
35556
|
+
readonly Arn: string;
|
|
35557
|
+
}
|
|
35558
|
+
|
|
35479
35559
|
export declare class Tracker {
|
|
35480
35560
|
constructor(props: {
|
|
35481
35561
|
TrackerName: string;
|
|
@@ -50353,6 +50433,34 @@ export declare class Canary_Dependency {
|
|
|
50353
50433
|
});
|
|
50354
50434
|
}
|
|
50355
50435
|
|
|
50436
|
+
export declare class Canary_Replica {
|
|
50437
|
+
constructor(props: {
|
|
50438
|
+
/** AWS region for the replica (e.g., us-east-1) */
|
|
50439
|
+
Location: string;
|
|
50440
|
+
/** State of the replica canary (CREATING, READY, RUNNING, etc.) */
|
|
50441
|
+
CanaryState?: string;
|
|
50442
|
+
/** ARN of the KMS key used to encrypt the replica canary's Lambda function environment variables */
|
|
50443
|
+
KmsKeyArn?: string;
|
|
50444
|
+
/** Last modified timestamp of the replica */
|
|
50445
|
+
LastModified?: number;
|
|
50446
|
+
/** Replication status for this replica */
|
|
50447
|
+
ReplicationStatus?: Canary_ReplicaReplicationStatus;
|
|
50448
|
+
/** Resources to replicate tags to for this replica (e.g., lambda-function) */
|
|
50449
|
+
ResourcesToReplicateTags?: Canary_ResourceToTag[];
|
|
50450
|
+
/** Tags to apply to this replica canary and optionally its Lambda function */
|
|
50451
|
+
Tags?: Canary_Tag[];
|
|
50452
|
+
/** VPC configuration for this replica location */
|
|
50453
|
+
VpcConfig?: Canary_VPCConfig;
|
|
50454
|
+
});
|
|
50455
|
+
}
|
|
50456
|
+
|
|
50457
|
+
export declare class Canary_ReplicaReplicationStatus {
|
|
50458
|
+
constructor(props: {
|
|
50459
|
+
/** Replication state: InProgress, InSync, or Inconsistent */
|
|
50460
|
+
State?: string;
|
|
50461
|
+
});
|
|
50462
|
+
}
|
|
50463
|
+
|
|
50356
50464
|
export declare class Canary_RetryConfig {
|
|
50357
50465
|
constructor(props: {
|
|
50358
50466
|
/** maximum times the canary will be retried upon the scheduled run failure */
|
|
@@ -58967,12 +59075,6 @@ export declare class CustomInstruction {
|
|
|
58967
59075
|
});
|
|
58968
59076
|
}
|
|
58969
59077
|
|
|
58970
|
-
export declare class CustomInstructions {
|
|
58971
|
-
constructor(props: {
|
|
58972
|
-
CustomInstructionsString: string;
|
|
58973
|
-
});
|
|
58974
|
-
}
|
|
58975
|
-
|
|
58976
59078
|
export declare class CustomizationConfiguration {
|
|
58977
59079
|
constructor(props: {
|
|
58978
59080
|
CustomCSSUrl?: string;
|
|
@@ -59093,7 +59195,7 @@ export declare class CustomOauth2ProviderConfigInput {
|
|
|
59093
59195
|
constructor(props: {
|
|
59094
59196
|
OauthDiscovery: OAuth2CredentialProvider_Oauth2Discovery;
|
|
59095
59197
|
/** The client authentication method to use when authenticating with the token endpoint */
|
|
59096
|
-
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST";
|
|
59198
|
+
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "PRIVATE_KEY_JWT";
|
|
59097
59199
|
/** The client ID for the custom OAuth2 provider */
|
|
59098
59200
|
ClientId?: string;
|
|
59099
59201
|
/** The client secret for the custom OAuth2 provider */
|
|
@@ -59102,6 +59204,10 @@ export declare class CustomOauth2ProviderConfigInput {
|
|
|
59102
59204
|
/** The source of the client secret */
|
|
59103
59205
|
ClientSecretSource?: "EXTERNAL" | "MANAGED";
|
|
59104
59206
|
OnBehalfOfTokenExchangeConfig?: OAuth2CredentialProvider_OnBehalfOfTokenExchangeConfig;
|
|
59207
|
+
PrivateEndpoint?: OAuth2CredentialProvider_PrivateEndpoint;
|
|
59208
|
+
/** A list of private endpoint overrides. Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations. */
|
|
59209
|
+
PrivateEndpointOverrides?: OAuth2CredentialProvider_PrivateEndpointOverride[];
|
|
59210
|
+
PrivateKeyJwtConfig?: OAuth2CredentialProvider_PrivateKeyJwtConfig;
|
|
59105
59211
|
});
|
|
59106
59212
|
}
|
|
59107
59213
|
|
|
@@ -62382,6 +62488,20 @@ export declare class DataSetRefreshProperties {
|
|
|
62382
62488
|
});
|
|
62383
62489
|
}
|
|
62384
62490
|
|
|
62491
|
+
export declare class DataSetRelation {
|
|
62492
|
+
constructor(props: {
|
|
62493
|
+
Left: TopicV2_DataSetRelationEndpoint;
|
|
62494
|
+
Right: TopicV2_DataSetRelationEndpoint;
|
|
62495
|
+
});
|
|
62496
|
+
}
|
|
62497
|
+
|
|
62498
|
+
export declare class DataSetRelationEndpoint {
|
|
62499
|
+
constructor(props: {
|
|
62500
|
+
ColumnNames: string[];
|
|
62501
|
+
DataSetArn: string;
|
|
62502
|
+
});
|
|
62503
|
+
}
|
|
62504
|
+
|
|
62385
62505
|
export declare class DataSetSchema {
|
|
62386
62506
|
constructor(props: {
|
|
62387
62507
|
/** <p>A structure containing the list of column schemas.</p> */
|
|
@@ -80912,6 +81032,14 @@ export declare class InstanceReusePolicy {
|
|
|
80912
81032
|
});
|
|
80913
81033
|
}
|
|
80914
81034
|
|
|
81035
|
+
export declare class InstanceRuleStatement {
|
|
81036
|
+
constructor(props: {
|
|
81037
|
+
AndRuleStatement?: Record<string, unknown>;
|
|
81038
|
+
MatchingRuleStatement?: Record<string, unknown>;
|
|
81039
|
+
OrRuleStatement?: Record<string, unknown>;
|
|
81040
|
+
});
|
|
81041
|
+
}
|
|
81042
|
+
|
|
80915
81043
|
export declare class InstancesDistribution {
|
|
80916
81044
|
constructor(props: {
|
|
80917
81045
|
/** The allocation strategy to apply to your On-Demand Instances when they are launched. Possible instance types are determined by the launch template overrides that you specify.
|
|
@@ -86072,6 +86200,65 @@ export declare class License_ValidityDateFormat {
|
|
|
86072
86200
|
});
|
|
86073
86201
|
}
|
|
86074
86202
|
|
|
86203
|
+
export declare class LicenseAssetRule {
|
|
86204
|
+
constructor(props: {
|
|
86205
|
+
RuleStatement: LicenseAssetRuleSet_RuleStatement;
|
|
86206
|
+
});
|
|
86207
|
+
}
|
|
86208
|
+
|
|
86209
|
+
export declare class LicenseAssetRuleSet_InstanceRuleStatement {
|
|
86210
|
+
constructor(props: {
|
|
86211
|
+
AndRuleStatement?: Record<string, unknown>;
|
|
86212
|
+
MatchingRuleStatement?: Record<string, unknown>;
|
|
86213
|
+
OrRuleStatement?: Record<string, unknown>;
|
|
86214
|
+
});
|
|
86215
|
+
}
|
|
86216
|
+
|
|
86217
|
+
export declare class LicenseAssetRuleSet_LicenseAssetRule {
|
|
86218
|
+
constructor(props: {
|
|
86219
|
+
RuleStatement: LicenseAssetRuleSet_RuleStatement;
|
|
86220
|
+
});
|
|
86221
|
+
}
|
|
86222
|
+
|
|
86223
|
+
export declare class LicenseAssetRuleSet_LicenseConfigurationRuleStatement {
|
|
86224
|
+
constructor(props: {
|
|
86225
|
+
AndRuleStatement?: Record<string, unknown>;
|
|
86226
|
+
MatchingRuleStatement?: Record<string, unknown>;
|
|
86227
|
+
OrRuleStatement?: Record<string, unknown>;
|
|
86228
|
+
});
|
|
86229
|
+
}
|
|
86230
|
+
|
|
86231
|
+
export declare class LicenseAssetRuleSet_LicenseRuleStatement {
|
|
86232
|
+
constructor(props: {
|
|
86233
|
+
AndRuleStatement?: Record<string, unknown>;
|
|
86234
|
+
MatchingRuleStatement?: Record<string, unknown>;
|
|
86235
|
+
OrRuleStatement?: Record<string, unknown>;
|
|
86236
|
+
});
|
|
86237
|
+
}
|
|
86238
|
+
|
|
86239
|
+
export declare class LicenseAssetRuleSet_RuleStatement {
|
|
86240
|
+
constructor(props: {
|
|
86241
|
+
InstanceRuleStatement?: LicenseAssetRuleSet_InstanceRuleStatement;
|
|
86242
|
+
LicenseConfigurationRuleStatement?: LicenseAssetRuleSet_LicenseConfigurationRuleStatement;
|
|
86243
|
+
LicenseRuleStatement?: LicenseAssetRuleSet_LicenseRuleStatement;
|
|
86244
|
+
});
|
|
86245
|
+
}
|
|
86246
|
+
|
|
86247
|
+
export declare class LicenseAssetRuleSet_Tag {
|
|
86248
|
+
constructor(props: {
|
|
86249
|
+
Key: string;
|
|
86250
|
+
Value: string;
|
|
86251
|
+
});
|
|
86252
|
+
}
|
|
86253
|
+
|
|
86254
|
+
export declare class LicenseConfigurationRuleStatement {
|
|
86255
|
+
constructor(props: {
|
|
86256
|
+
AndRuleStatement?: Record<string, unknown>;
|
|
86257
|
+
MatchingRuleStatement?: Record<string, unknown>;
|
|
86258
|
+
OrRuleStatement?: Record<string, unknown>;
|
|
86259
|
+
});
|
|
86260
|
+
}
|
|
86261
|
+
|
|
86075
86262
|
export declare class LicenseEndpoint_Tag {
|
|
86076
86263
|
constructor(props: {
|
|
86077
86264
|
/** 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 -. */
|
|
@@ -86081,6 +86268,14 @@ export declare class LicenseEndpoint_Tag {
|
|
|
86081
86268
|
});
|
|
86082
86269
|
}
|
|
86083
86270
|
|
|
86271
|
+
export declare class LicenseRuleStatement {
|
|
86272
|
+
constructor(props: {
|
|
86273
|
+
AndRuleStatement?: Record<string, unknown>;
|
|
86274
|
+
MatchingRuleStatement?: Record<string, unknown>;
|
|
86275
|
+
OrRuleStatement?: Record<string, unknown>;
|
|
86276
|
+
});
|
|
86277
|
+
}
|
|
86278
|
+
|
|
86084
86279
|
export declare class LifecycleHookSpecification {
|
|
86085
86280
|
constructor(props: {
|
|
86086
86281
|
/** The name of the lifecycle hook. */
|
|
@@ -88814,6 +89009,23 @@ export declare class ManagedStorageEncryptionConfiguration {
|
|
|
88814
89009
|
});
|
|
88815
89010
|
}
|
|
88816
89011
|
|
|
89012
|
+
export declare class ManagedVpcResource {
|
|
89013
|
+
constructor(props: {
|
|
89014
|
+
/** The IP address type for the resource configuration endpoint */
|
|
89015
|
+
EndpointIpAddressType: "IPV4" | "IPV6";
|
|
89016
|
+
/** The subnet IDs within the VPC where the VPC Lattice resource gateway is placed */
|
|
89017
|
+
SubnetIds: string[];
|
|
89018
|
+
/** The ID of the VPC that contains your private resource */
|
|
89019
|
+
VpcIdentifier: string;
|
|
89020
|
+
/** An intermediate publicly resolvable domain used as the VPC Lattice resource configuration endpoint */
|
|
89021
|
+
RoutingDomain?: string;
|
|
89022
|
+
/** The security group IDs to associate with the VPC Lattice resource gateway */
|
|
89023
|
+
SecurityGroupIds?: string[];
|
|
89024
|
+
/** Tags to apply to the managed VPC Lattice resource gateway */
|
|
89025
|
+
Tags?: Record<string, unknown>;
|
|
89026
|
+
});
|
|
89027
|
+
}
|
|
89028
|
+
|
|
88817
89029
|
export declare class ManagedWordsConfig {
|
|
88818
89030
|
constructor(props: {
|
|
88819
89031
|
Type: Guardrail_ManagedWordsType;
|
|
@@ -96001,7 +96213,7 @@ export declare class OAuth2CredentialProvider_CustomOauth2ProviderConfigInput {
|
|
|
96001
96213
|
constructor(props: {
|
|
96002
96214
|
OauthDiscovery: OAuth2CredentialProvider_Oauth2Discovery;
|
|
96003
96215
|
/** The client authentication method to use when authenticating with the token endpoint */
|
|
96004
|
-
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST";
|
|
96216
|
+
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "PRIVATE_KEY_JWT";
|
|
96005
96217
|
/** The client ID for the custom OAuth2 provider */
|
|
96006
96218
|
ClientId?: string;
|
|
96007
96219
|
/** The client secret for the custom OAuth2 provider */
|
|
@@ -96010,6 +96222,10 @@ export declare class OAuth2CredentialProvider_CustomOauth2ProviderConfigInput {
|
|
|
96010
96222
|
/** The source of the client secret */
|
|
96011
96223
|
ClientSecretSource?: "EXTERNAL" | "MANAGED";
|
|
96012
96224
|
OnBehalfOfTokenExchangeConfig?: OAuth2CredentialProvider_OnBehalfOfTokenExchangeConfig;
|
|
96225
|
+
PrivateEndpoint?: OAuth2CredentialProvider_PrivateEndpoint;
|
|
96226
|
+
/** A list of private endpoint overrides. Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations. */
|
|
96227
|
+
PrivateEndpointOverrides?: OAuth2CredentialProvider_PrivateEndpointOverride[];
|
|
96228
|
+
PrivateKeyJwtConfig?: OAuth2CredentialProvider_PrivateKeyJwtConfig;
|
|
96013
96229
|
});
|
|
96014
96230
|
}
|
|
96015
96231
|
|
|
@@ -96055,6 +96271,23 @@ export declare class OAuth2CredentialProvider_LinkedinOauth2ProviderConfigInput
|
|
|
96055
96271
|
});
|
|
96056
96272
|
}
|
|
96057
96273
|
|
|
96274
|
+
export declare class OAuth2CredentialProvider_ManagedVpcResource {
|
|
96275
|
+
constructor(props: {
|
|
96276
|
+
/** The IP address type for the resource configuration endpoint */
|
|
96277
|
+
EndpointIpAddressType: "IPV4" | "IPV6";
|
|
96278
|
+
/** The subnet IDs within the VPC where the VPC Lattice resource gateway is placed */
|
|
96279
|
+
SubnetIds: string[];
|
|
96280
|
+
/** The ID of the VPC that contains your private resource */
|
|
96281
|
+
VpcIdentifier: string;
|
|
96282
|
+
/** An intermediate publicly resolvable domain used as the VPC Lattice resource configuration endpoint */
|
|
96283
|
+
RoutingDomain?: string;
|
|
96284
|
+
/** The security group IDs to associate with the VPC Lattice resource gateway */
|
|
96285
|
+
SecurityGroupIds?: string[];
|
|
96286
|
+
/** Tags to apply to the managed VPC Lattice resource gateway */
|
|
96287
|
+
Tags?: Record<string, unknown>;
|
|
96288
|
+
});
|
|
96289
|
+
}
|
|
96290
|
+
|
|
96058
96291
|
export declare class OAuth2CredentialProvider_MicrosoftOauth2ProviderConfigInput {
|
|
96059
96292
|
constructor(props: {
|
|
96060
96293
|
ClientId: string;
|
|
@@ -96104,10 +96337,14 @@ export declare class OAuth2CredentialProvider_Oauth2ProviderConfigInput {
|
|
|
96104
96337
|
export declare class OAuth2CredentialProvider_Oauth2ProviderConfigOutput {
|
|
96105
96338
|
constructor(props: {
|
|
96106
96339
|
/** The client authentication method used when authenticating with the token endpoint */
|
|
96107
|
-
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST";
|
|
96340
|
+
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "PRIVATE_KEY_JWT";
|
|
96108
96341
|
ClientId?: string;
|
|
96109
96342
|
OauthDiscovery?: OAuth2CredentialProvider_Oauth2Discovery;
|
|
96110
96343
|
OnBehalfOfTokenExchangeConfig?: OAuth2CredentialProvider_OnBehalfOfTokenExchangeConfig;
|
|
96344
|
+
PrivateEndpoint?: OAuth2CredentialProvider_PrivateEndpoint;
|
|
96345
|
+
/** The list of private endpoint overrides for the OAuth2 provider. Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations. */
|
|
96346
|
+
PrivateEndpointOverrides?: OAuth2CredentialProvider_PrivateEndpointOverride[];
|
|
96347
|
+
PrivateKeyJwtConfig?: OAuth2CredentialProvider_PrivateKeyJwtConfig;
|
|
96111
96348
|
});
|
|
96112
96349
|
}
|
|
96113
96350
|
|
|
@@ -96119,6 +96356,37 @@ export declare class OAuth2CredentialProvider_OnBehalfOfTokenExchangeConfig {
|
|
|
96119
96356
|
});
|
|
96120
96357
|
}
|
|
96121
96358
|
|
|
96359
|
+
export declare class OAuth2CredentialProvider_PrivateEndpoint {
|
|
96360
|
+
constructor(props: {
|
|
96361
|
+
ManagedVpcResource?: OAuth2CredentialProvider_ManagedVpcResource;
|
|
96362
|
+
SelfManagedLatticeResource?: OAuth2CredentialProvider_SelfManagedLatticeResource;
|
|
96363
|
+
});
|
|
96364
|
+
}
|
|
96365
|
+
|
|
96366
|
+
export declare class OAuth2CredentialProvider_PrivateEndpointOverride {
|
|
96367
|
+
constructor(props: {
|
|
96368
|
+
/** The domain to override with a private endpoint */
|
|
96369
|
+
Domain: string;
|
|
96370
|
+
PrivateEndpoint: OAuth2CredentialProvider_PrivateEndpoint;
|
|
96371
|
+
});
|
|
96372
|
+
}
|
|
96373
|
+
|
|
96374
|
+
export declare class OAuth2CredentialProvider_PrivateKeyJwtConfig {
|
|
96375
|
+
constructor(props: {
|
|
96376
|
+
AdditionalHeaderClaims?: Record<string, unknown>;
|
|
96377
|
+
AdditionalPayloadClaims?: Record<string, unknown>;
|
|
96378
|
+
PrivateKeySource?: OAuth2CredentialProvider_PrivateKeySource;
|
|
96379
|
+
/** The algorithm used to sign the JWT client assertion */
|
|
96380
|
+
SigningAlgorithm?: "ES256" | "PS256" | "RS256";
|
|
96381
|
+
});
|
|
96382
|
+
}
|
|
96383
|
+
|
|
96384
|
+
export declare class OAuth2CredentialProvider_PrivateKeySource {
|
|
96385
|
+
constructor(props: {
|
|
96386
|
+
KmsKeySource?: Record<string, unknown>;
|
|
96387
|
+
});
|
|
96388
|
+
}
|
|
96389
|
+
|
|
96122
96390
|
export declare class OAuth2CredentialProvider_SalesforceOauth2ProviderConfigInput {
|
|
96123
96391
|
constructor(props: {
|
|
96124
96392
|
ClientId: string;
|
|
@@ -96137,6 +96405,13 @@ export declare class OAuth2CredentialProvider_SecretReference {
|
|
|
96137
96405
|
});
|
|
96138
96406
|
}
|
|
96139
96407
|
|
|
96408
|
+
export declare class OAuth2CredentialProvider_SelfManagedLatticeResource {
|
|
96409
|
+
constructor(props: {
|
|
96410
|
+
/** The ARN or ID of the VPC Lattice resource configuration */
|
|
96411
|
+
ResourceConfigurationIdentifier: string;
|
|
96412
|
+
});
|
|
96413
|
+
}
|
|
96414
|
+
|
|
96140
96415
|
export declare class OAuth2CredentialProvider_SlackOauth2ProviderConfigInput {
|
|
96141
96416
|
constructor(props: {
|
|
96142
96417
|
ClientId: string;
|
|
@@ -96198,10 +96473,14 @@ export declare class Oauth2ProviderConfigInput {
|
|
|
96198
96473
|
export declare class Oauth2ProviderConfigOutput {
|
|
96199
96474
|
constructor(props: {
|
|
96200
96475
|
/** The client authentication method used when authenticating with the token endpoint */
|
|
96201
|
-
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST";
|
|
96476
|
+
ClientAuthenticationMethod?: "AWS_IAM_ID_TOKEN_JWT" | "CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "PRIVATE_KEY_JWT";
|
|
96202
96477
|
ClientId?: string;
|
|
96203
96478
|
OauthDiscovery?: OAuth2CredentialProvider_Oauth2Discovery;
|
|
96204
96479
|
OnBehalfOfTokenExchangeConfig?: OAuth2CredentialProvider_OnBehalfOfTokenExchangeConfig;
|
|
96480
|
+
PrivateEndpoint?: OAuth2CredentialProvider_PrivateEndpoint;
|
|
96481
|
+
/** The list of private endpoint overrides for the OAuth2 provider. Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations. */
|
|
96482
|
+
PrivateEndpointOverrides?: OAuth2CredentialProvider_PrivateEndpointOverride[];
|
|
96483
|
+
PrivateKeyJwtConfig?: OAuth2CredentialProvider_PrivateKeyJwtConfig;
|
|
96205
96484
|
});
|
|
96206
96485
|
}
|
|
96207
96486
|
|
|
@@ -101553,26 +101832,28 @@ export declare class PrivateDnsPropertiesMutable {
|
|
|
101553
101832
|
});
|
|
101554
101833
|
}
|
|
101555
101834
|
|
|
101556
|
-
export declare class
|
|
101835
|
+
export declare class PrivateIpAdd {
|
|
101557
101836
|
constructor(props: {
|
|
101558
|
-
|
|
101559
|
-
|
|
101837
|
+
/** Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary. */
|
|
101838
|
+
Primary?: boolean;
|
|
101839
|
+
/** The private IPv4 address. */
|
|
101840
|
+
PrivateIpAddress?: string;
|
|
101560
101841
|
});
|
|
101561
101842
|
}
|
|
101562
101843
|
|
|
101563
|
-
export declare class
|
|
101844
|
+
export declare class PrivateKeyJwtConfig {
|
|
101564
101845
|
constructor(props: {
|
|
101565
|
-
|
|
101566
|
-
|
|
101846
|
+
AdditionalHeaderClaims?: Record<string, unknown>;
|
|
101847
|
+
AdditionalPayloadClaims?: Record<string, unknown>;
|
|
101848
|
+
PrivateKeySource?: OAuth2CredentialProvider_PrivateKeySource;
|
|
101849
|
+
/** The algorithm used to sign the JWT client assertion */
|
|
101850
|
+
SigningAlgorithm?: "ES256" | "PS256" | "RS256";
|
|
101567
101851
|
});
|
|
101568
101852
|
}
|
|
101569
101853
|
|
|
101570
|
-
export declare class
|
|
101854
|
+
export declare class PrivateKeySource {
|
|
101571
101855
|
constructor(props: {
|
|
101572
|
-
|
|
101573
|
-
Primary?: boolean;
|
|
101574
|
-
/** The private IPv4 address. */
|
|
101575
|
-
PrivateIpAddress?: string;
|
|
101856
|
+
KmsKeySource?: Record<string, unknown>;
|
|
101576
101857
|
});
|
|
101577
101858
|
}
|
|
101578
101859
|
|
|
@@ -104697,6 +104978,7 @@ export declare class QuickSightTopic_ComparativeOrder {
|
|
|
104697
104978
|
|
|
104698
104979
|
export declare class QuickSightTopic_CustomInstructions {
|
|
104699
104980
|
constructor(props: {
|
|
104981
|
+
/** <p>A text field for providing additional guidance or context for response generation.</p> */
|
|
104700
104982
|
CustomInstructionsString: string;
|
|
104701
104983
|
});
|
|
104702
104984
|
}
|
|
@@ -106427,6 +106709,27 @@ export declare class ReplaceDefaultPolicyVersionParams {
|
|
|
106427
106709
|
});
|
|
106428
106710
|
}
|
|
106429
106711
|
|
|
106712
|
+
export declare class Replica {
|
|
106713
|
+
constructor(props: {
|
|
106714
|
+
/** AWS region for the replica (e.g., us-east-1) */
|
|
106715
|
+
Location: string;
|
|
106716
|
+
/** State of the replica canary (CREATING, READY, RUNNING, etc.) */
|
|
106717
|
+
CanaryState?: string;
|
|
106718
|
+
/** ARN of the KMS key used to encrypt the replica canary's Lambda function environment variables */
|
|
106719
|
+
KmsKeyArn?: string;
|
|
106720
|
+
/** Last modified timestamp of the replica */
|
|
106721
|
+
LastModified?: number;
|
|
106722
|
+
/** Replication status for this replica */
|
|
106723
|
+
ReplicationStatus?: Canary_ReplicaReplicationStatus;
|
|
106724
|
+
/** Resources to replicate tags to for this replica (e.g., lambda-function) */
|
|
106725
|
+
ResourcesToReplicateTags?: Canary_ResourceToTag[];
|
|
106726
|
+
/** Tags to apply to this replica canary and optionally its Lambda function */
|
|
106727
|
+
Tags?: Canary_Tag[];
|
|
106728
|
+
/** VPC configuration for this replica location */
|
|
106729
|
+
VpcConfig?: Canary_VPCConfig;
|
|
106730
|
+
});
|
|
106731
|
+
}
|
|
106732
|
+
|
|
106430
106733
|
export declare class ReplicaGlobalSecondaryIndexSpecification {
|
|
106431
106734
|
constructor(props: {
|
|
106432
106735
|
IndexName: string;
|
|
@@ -106454,6 +106757,13 @@ export declare class ReplicaRegion {
|
|
|
106454
106757
|
});
|
|
106455
106758
|
}
|
|
106456
106759
|
|
|
106760
|
+
export declare class ReplicaReplicationStatus {
|
|
106761
|
+
constructor(props: {
|
|
106762
|
+
/** Replication state: InProgress, InSync, or Inconsistent */
|
|
106763
|
+
State?: string;
|
|
106764
|
+
});
|
|
106765
|
+
}
|
|
106766
|
+
|
|
106457
106767
|
export declare class ReplicaSSESpecification {
|
|
106458
106768
|
constructor(props: {
|
|
106459
106769
|
KMSMasterKeyId: any;
|
|
@@ -109142,6 +109452,14 @@ export declare class RulesSourceList {
|
|
|
109142
109452
|
});
|
|
109143
109453
|
}
|
|
109144
109454
|
|
|
109455
|
+
export declare class RuleStatement {
|
|
109456
|
+
constructor(props: {
|
|
109457
|
+
InstanceRuleStatement?: LicenseAssetRuleSet_InstanceRuleStatement;
|
|
109458
|
+
LicenseConfigurationRuleStatement?: LicenseAssetRuleSet_LicenseConfigurationRuleStatement;
|
|
109459
|
+
LicenseRuleStatement?: LicenseAssetRuleSet_LicenseRuleStatement;
|
|
109460
|
+
});
|
|
109461
|
+
}
|
|
109462
|
+
|
|
109145
109463
|
export declare class RuleTriggerEventSource {
|
|
109146
109464
|
constructor(props: {
|
|
109147
109465
|
/** The name of the event source. */
|
|
@@ -113195,6 +113513,13 @@ export declare class SelfManagedKafkaEventSourceConfig {
|
|
|
113195
113513
|
});
|
|
113196
113514
|
}
|
|
113197
113515
|
|
|
113516
|
+
export declare class SelfManagedLatticeResource {
|
|
113517
|
+
constructor(props: {
|
|
113518
|
+
/** The ARN or ID of the VPC Lattice resource configuration */
|
|
113519
|
+
ResourceConfigurationIdentifier: string;
|
|
113520
|
+
});
|
|
113521
|
+
}
|
|
113522
|
+
|
|
113198
113523
|
export declare class SemanticChunkingConfiguration {
|
|
113199
113524
|
constructor(props: {
|
|
113200
113525
|
/** The dissimilarity threshold for splitting chunks. */
|
|
@@ -115179,6 +115504,15 @@ export declare class SnapshotManagement {
|
|
|
115179
115504
|
});
|
|
115180
115505
|
}
|
|
115181
115506
|
|
|
115507
|
+
export declare class SnapshotSchedule_Tag {
|
|
115508
|
+
constructor(props: {
|
|
115509
|
+
/** The key, or name, for the resource tag. */
|
|
115510
|
+
Key: string;
|
|
115511
|
+
/** The value for the resource tag. */
|
|
115512
|
+
Value: string;
|
|
115513
|
+
});
|
|
115514
|
+
}
|
|
115515
|
+
|
|
115182
115516
|
export declare class SnapStart {
|
|
115183
115517
|
constructor(props: {
|
|
115184
115518
|
/** Set ``ApplyOn`` to ``PublishedVersions`` to create a snapshot of the initialized execution environment when you publish a function version. */
|
|
@@ -120773,6 +121107,49 @@ export declare class TopicRulePayload {
|
|
|
120773
121107
|
});
|
|
120774
121108
|
}
|
|
120775
121109
|
|
|
121110
|
+
export declare class TopicV2_CustomInstructions {
|
|
121111
|
+
constructor(props: {
|
|
121112
|
+
CustomInstructionsString: string;
|
|
121113
|
+
});
|
|
121114
|
+
}
|
|
121115
|
+
|
|
121116
|
+
export declare class TopicV2_DataSetReference {
|
|
121117
|
+
constructor(props: {
|
|
121118
|
+
DataSetArn: string;
|
|
121119
|
+
DataSetName?: string;
|
|
121120
|
+
});
|
|
121121
|
+
}
|
|
121122
|
+
|
|
121123
|
+
export declare class TopicV2_DataSetRelation {
|
|
121124
|
+
constructor(props: {
|
|
121125
|
+
Left: TopicV2_DataSetRelationEndpoint;
|
|
121126
|
+
Right: TopicV2_DataSetRelationEndpoint;
|
|
121127
|
+
});
|
|
121128
|
+
}
|
|
121129
|
+
|
|
121130
|
+
export declare class TopicV2_DataSetRelationEndpoint {
|
|
121131
|
+
constructor(props: {
|
|
121132
|
+
ColumnNames: string[];
|
|
121133
|
+
DataSetArn: string;
|
|
121134
|
+
});
|
|
121135
|
+
}
|
|
121136
|
+
|
|
121137
|
+
export declare class TopicV2_ResourcePermission {
|
|
121138
|
+
constructor(props: {
|
|
121139
|
+
Actions: string[];
|
|
121140
|
+
Principal: string;
|
|
121141
|
+
});
|
|
121142
|
+
}
|
|
121143
|
+
|
|
121144
|
+
export declare class TopicV2_Tag {
|
|
121145
|
+
constructor(props: {
|
|
121146
|
+
/** <p>Tag key.</p> */
|
|
121147
|
+
Key: string;
|
|
121148
|
+
/** <p>Tag value.</p> */
|
|
121149
|
+
Value: string;
|
|
121150
|
+
});
|
|
121151
|
+
}
|
|
121152
|
+
|
|
120776
121153
|
export declare class TotalLocalStorageGB {
|
|
120777
121154
|
constructor(props: {
|
|
120778
121155
|
/** The maximum amount of total local storage, in GB. To specify no maximum limit, omit this parameter. */
|
|
@@ -124980,6 +125357,7 @@ export declare class WAFv2RuleGroup_ByteMatchStatement {
|
|
|
124980
125357
|
FieldToMatch: Record<string, unknown>;
|
|
124981
125358
|
PositionalConstraint: WAFv2RuleGroup_PositionalConstraint;
|
|
124982
125359
|
TextTransformations: Record<string, unknown>[];
|
|
125360
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
124983
125361
|
SearchString?: string;
|
|
124984
125362
|
SearchStringBase64?: string;
|
|
124985
125363
|
});
|
|
@@ -125102,6 +125480,7 @@ export declare class WAFv2RuleGroup_RegexMatchStatement {
|
|
|
125102
125480
|
FieldToMatch: Record<string, unknown>;
|
|
125103
125481
|
RegexString: string;
|
|
125104
125482
|
TextTransformations: Record<string, unknown>[];
|
|
125483
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125105
125484
|
});
|
|
125106
125485
|
}
|
|
125107
125486
|
|
|
@@ -125110,6 +125489,7 @@ export declare class WAFv2RuleGroup_RegexPatternSetReferenceStatement {
|
|
|
125110
125489
|
Arn: string;
|
|
125111
125490
|
FieldToMatch: Record<string, unknown>;
|
|
125112
125491
|
TextTransformations: Record<string, unknown>[];
|
|
125492
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125113
125493
|
});
|
|
125114
125494
|
}
|
|
125115
125495
|
|
|
@@ -125144,6 +125524,7 @@ export declare class WAFv2RuleGroup_SizeConstraintStatement {
|
|
|
125144
125524
|
FieldToMatch: Record<string, unknown>;
|
|
125145
125525
|
Size: number;
|
|
125146
125526
|
TextTransformations: Record<string, unknown>[];
|
|
125527
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125147
125528
|
});
|
|
125148
125529
|
}
|
|
125149
125530
|
|
|
@@ -125151,6 +125532,7 @@ export declare class WAFv2RuleGroup_SqliMatchStatement {
|
|
|
125151
125532
|
constructor(props: {
|
|
125152
125533
|
FieldToMatch: Record<string, unknown>;
|
|
125153
125534
|
TextTransformations: Record<string, unknown>[];
|
|
125535
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125154
125536
|
SensitivityLevel?: WAFv2RuleGroup_SensitivityLevel;
|
|
125155
125537
|
});
|
|
125156
125538
|
}
|
|
@@ -125193,6 +125575,7 @@ export declare class WAFv2RuleGroup_XssMatchStatement {
|
|
|
125193
125575
|
constructor(props: {
|
|
125194
125576
|
FieldToMatch: Record<string, unknown>;
|
|
125195
125577
|
TextTransformations: Record<string, unknown>[];
|
|
125578
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125196
125579
|
});
|
|
125197
125580
|
}
|
|
125198
125581
|
|
|
@@ -125238,6 +125621,7 @@ export declare class WAFv2WebACL_ByteMatchStatement {
|
|
|
125238
125621
|
FieldToMatch: Record<string, unknown>;
|
|
125239
125622
|
PositionalConstraint: WAFv2WebACL_PositionalConstraint;
|
|
125240
125623
|
TextTransformations: Record<string, unknown>[];
|
|
125624
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125241
125625
|
SearchString?: string;
|
|
125242
125626
|
SearchStringBase64?: string;
|
|
125243
125627
|
});
|
|
@@ -125413,6 +125797,7 @@ export declare class WAFv2WebACL_RegexMatchStatement {
|
|
|
125413
125797
|
FieldToMatch: Record<string, unknown>;
|
|
125414
125798
|
RegexString: string;
|
|
125415
125799
|
TextTransformations: Record<string, unknown>[];
|
|
125800
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125416
125801
|
});
|
|
125417
125802
|
}
|
|
125418
125803
|
|
|
@@ -125421,6 +125806,7 @@ export declare class WAFv2WebACL_RegexPatternSetReferenceStatement {
|
|
|
125421
125806
|
Arn: string;
|
|
125422
125807
|
FieldToMatch: Record<string, unknown>;
|
|
125423
125808
|
TextTransformations: Record<string, unknown>[];
|
|
125809
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125424
125810
|
});
|
|
125425
125811
|
}
|
|
125426
125812
|
|
|
@@ -125465,6 +125851,7 @@ export declare class WAFv2WebACL_SizeConstraintStatement {
|
|
|
125465
125851
|
FieldToMatch: Record<string, unknown>;
|
|
125466
125852
|
Size: number;
|
|
125467
125853
|
TextTransformations: Record<string, unknown>[];
|
|
125854
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125468
125855
|
});
|
|
125469
125856
|
}
|
|
125470
125857
|
|
|
@@ -125472,6 +125859,7 @@ export declare class WAFv2WebACL_SqliMatchStatement {
|
|
|
125472
125859
|
constructor(props: {
|
|
125473
125860
|
FieldToMatch: Record<string, unknown>;
|
|
125474
125861
|
TextTransformations: Record<string, unknown>[];
|
|
125862
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125475
125863
|
SensitivityLevel?: WAFv2WebACL_SensitivityLevel;
|
|
125476
125864
|
});
|
|
125477
125865
|
}
|
|
@@ -125516,6 +125904,7 @@ export declare class WAFv2WebACL_XssMatchStatement {
|
|
|
125516
125904
|
constructor(props: {
|
|
125517
125905
|
FieldToMatch: Record<string, unknown>;
|
|
125518
125906
|
TextTransformations: Record<string, unknown>[];
|
|
125907
|
+
PreParseTextTransformations?: Record<string, unknown>[];
|
|
125519
125908
|
});
|
|
125520
125909
|
}
|
|
125521
125910
|
|
|
@@ -133139,6 +133528,7 @@ export type QuickSightTopic_DisplayFormat =
|
|
|
133139
133528
|
|
|
133140
133529
|
export type QuickSightTopic_FilterClass =
|
|
133141
133530
|
| "CONDITIONAL_VALUE_FILTER"
|
|
133531
|
+
| "DASHBOARD_DEFAULT_FILTER"
|
|
133142
133532
|
| "ENFORCED_VALUE_FILTER"
|
|
133143
133533
|
| "NAMED_VALUE_FILTER";
|
|
133144
133534
|
|
|
@@ -133174,6 +133564,7 @@ export type QuickSightTopic_NamedFilterAggType =
|
|
|
133174
133564
|
export type QuickSightTopic_NamedFilterType =
|
|
133175
133565
|
| "CATEGORY_FILTER"
|
|
133176
133566
|
| "DATE_RANGE_FILTER"
|
|
133567
|
+
| "NULL_FILTER"
|
|
133177
133568
|
| "NUMERIC_EQUALITY_FILTER"
|
|
133178
133569
|
| "NUMERIC_RANGE_FILTER"
|
|
133179
133570
|
| "RELATIVE_DATE_FILTER";
|
|
@@ -134540,6 +134931,13 @@ export type WAFv2RuleGroup_PositionalConstraint =
|
|
|
134540
134931
|
| "EXACTLY"
|
|
134541
134932
|
| "STARTS_WITH";
|
|
134542
134933
|
|
|
134934
|
+
export type WAFv2RuleGroup_PreParseTextTransformationType =
|
|
134935
|
+
| "COMBINE_DUPLICATE_QUERY_ARGS_BY_COMMA"
|
|
134936
|
+
| "NONE"
|
|
134937
|
+
| "REPLACE_SEMICOLONS_WITH_AMPERSANDS"
|
|
134938
|
+
| "URL_DECODE"
|
|
134939
|
+
| "URL_DECODE_UNI";
|
|
134940
|
+
|
|
134543
134941
|
export type WAFv2RuleGroup_ResponseContentType = "APPLICATION_JSON" | "TEXT_HTML" | "TEXT_PLAIN";
|
|
134544
134942
|
|
|
134545
134943
|
export type WAFv2RuleGroup_Scope = "CLOUDFRONT" | "REGIONAL";
|
|
@@ -134550,21 +134948,31 @@ export type WAFv2RuleGroup_TextTransformationType =
|
|
|
134550
134948
|
| "BASE64_DECODE"
|
|
134551
134949
|
| "BASE64_DECODE_EXT"
|
|
134552
134950
|
| "CMD_LINE"
|
|
134951
|
+
| "CMD_LINE_UNIX"
|
|
134952
|
+
| "CMD_LINE_WIN"
|
|
134553
134953
|
| "COMPRESS_WHITE_SPACE"
|
|
134554
134954
|
| "CSS_DECODE"
|
|
134555
134955
|
| "ESCAPE_SEQ_DECODE"
|
|
134556
134956
|
| "HEX_DECODE"
|
|
134557
134957
|
| "HTML_ENTITY_DECODE"
|
|
134558
134958
|
| "JS_DECODE"
|
|
134959
|
+
| "JS_DECODE_EXT"
|
|
134559
134960
|
| "LOWERCASE"
|
|
134560
134961
|
| "MD5"
|
|
134561
134962
|
| "NONE"
|
|
134562
134963
|
| "NORMALIZE_PATH"
|
|
134563
134964
|
| "NORMALIZE_PATH_WIN"
|
|
134965
|
+
| "REMOVE_COMMENTS_CHAR"
|
|
134564
134966
|
| "REMOVE_NULLS"
|
|
134967
|
+
| "REMOVE_WHITESPACE"
|
|
134565
134968
|
| "REPLACE_COMMENTS"
|
|
134566
134969
|
| "REPLACE_NULLS"
|
|
134970
|
+
| "SHA256"
|
|
134567
134971
|
| "SQL_HEX_DECODE"
|
|
134972
|
+
| "TRIM"
|
|
134973
|
+
| "TRIM_LEFT"
|
|
134974
|
+
| "TRIM_RIGHT"
|
|
134975
|
+
| "UPPERCASE"
|
|
134568
134976
|
| "URL_DECODE"
|
|
134569
134977
|
| "URL_DECODE_UNI"
|
|
134570
134978
|
| "UTF8_TO_UNICODE";
|
|
@@ -134596,6 +135004,13 @@ export type WAFv2WebACL_PositionalConstraint =
|
|
|
134596
135004
|
| "EXACTLY"
|
|
134597
135005
|
| "STARTS_WITH";
|
|
134598
135006
|
|
|
135007
|
+
export type WAFv2WebACL_PreParseTextTransformationType =
|
|
135008
|
+
| "COMBINE_DUPLICATE_QUERY_ARGS_BY_COMMA"
|
|
135009
|
+
| "NONE"
|
|
135010
|
+
| "REPLACE_SEMICOLONS_WITH_AMPERSANDS"
|
|
135011
|
+
| "URL_DECODE"
|
|
135012
|
+
| "URL_DECODE_UNI";
|
|
135013
|
+
|
|
134599
135014
|
export type WAFv2WebACL_ResponseContentType = "APPLICATION_JSON" | "TEXT_HTML" | "TEXT_PLAIN";
|
|
134600
135015
|
|
|
134601
135016
|
export type WAFv2WebACL_Scope = "CLOUDFRONT" | "REGIONAL";
|
|
@@ -134610,21 +135025,31 @@ export type WAFv2WebACL_TextTransformationType =
|
|
|
134610
135025
|
| "BASE64_DECODE"
|
|
134611
135026
|
| "BASE64_DECODE_EXT"
|
|
134612
135027
|
| "CMD_LINE"
|
|
135028
|
+
| "CMD_LINE_UNIX"
|
|
135029
|
+
| "CMD_LINE_WIN"
|
|
134613
135030
|
| "COMPRESS_WHITE_SPACE"
|
|
134614
135031
|
| "CSS_DECODE"
|
|
134615
135032
|
| "ESCAPE_SEQ_DECODE"
|
|
134616
135033
|
| "HEX_DECODE"
|
|
134617
135034
|
| "HTML_ENTITY_DECODE"
|
|
134618
135035
|
| "JS_DECODE"
|
|
135036
|
+
| "JS_DECODE_EXT"
|
|
134619
135037
|
| "LOWERCASE"
|
|
134620
135038
|
| "MD5"
|
|
134621
135039
|
| "NONE"
|
|
134622
135040
|
| "NORMALIZE_PATH"
|
|
134623
135041
|
| "NORMALIZE_PATH_WIN"
|
|
135042
|
+
| "REMOVE_COMMENTS_CHAR"
|
|
134624
135043
|
| "REMOVE_NULLS"
|
|
135044
|
+
| "REMOVE_WHITESPACE"
|
|
134625
135045
|
| "REPLACE_COMMENTS"
|
|
134626
135046
|
| "REPLACE_NULLS"
|
|
135047
|
+
| "SHA256"
|
|
134627
135048
|
| "SQL_HEX_DECODE"
|
|
135049
|
+
| "TRIM"
|
|
135050
|
+
| "TRIM_LEFT"
|
|
135051
|
+
| "TRIM_RIGHT"
|
|
135052
|
+
| "UPPERCASE"
|
|
134628
135053
|
| "URL_DECODE"
|
|
134629
135054
|
| "URL_DECODE_UNI"
|
|
134630
135055
|
| "UTF8_TO_UNICODE";
|