@pulumi/aws 7.2.0-alpha.1753487600 → 7.2.0-alpha.1753734409
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/alb/listener.d.ts +33 -0
- package/alb/listener.js +33 -0
- package/alb/listener.js.map +1 -1
- package/bedrock/agentAgentCollaborator.d.ts +15 -0
- package/bedrock/agentAgentCollaborator.js.map +1 -1
- package/cognito/index.d.ts +3 -0
- package/cognito/index.js +6 -1
- package/cognito/index.js.map +1 -1
- package/cognito/logDeliveryConfiguration.d.ts +212 -0
- package/cognito/logDeliveryConfiguration.js +188 -0
- package/cognito/logDeliveryConfiguration.js.map +1 -0
- package/comprehend/documentClassifier.d.ts +1 -1
- package/comprehend/documentClassifier.js +1 -1
- package/comprehend/entityRecognizer.d.ts +2 -2
- package/comprehend/entityRecognizer.js +2 -2
- package/directconnect/gatewayAssociation.d.ts +8 -0
- package/directconnect/gatewayAssociation.js +2 -0
- package/directconnect/gatewayAssociation.js.map +1 -1
- package/dms/endpoint.d.ts +12 -0
- package/dms/endpoint.js +2 -0
- package/dms/endpoint.js.map +1 -1
- package/dms/replicationInstance.d.ts +26 -0
- package/dms/replicationInstance.js +4 -0
- package/dms/replicationInstance.js.map +1 -1
- package/ecr/getImages.d.ts +86 -0
- package/ecr/getImages.js +58 -0
- package/ecr/getImages.js.map +1 -0
- package/ecr/index.d.ts +3 -0
- package/ecr/index.js +4 -1
- package/ecr/index.js.map +1 -1
- package/elasticbeanstalk/applicationVersion.d.ts +1 -1
- package/elasticbeanstalk/applicationVersion.js +1 -1
- package/iam/getPrincipalPolicySimulation.d.ts +2 -2
- package/iam/getPrincipalPolicySimulation.js +2 -2
- package/inspector2/enabler.d.ts +3 -3
- package/inspector2/organizationConfiguration.d.ts +1 -0
- package/inspector2/organizationConfiguration.js +1 -0
- package/inspector2/organizationConfiguration.js.map +1 -1
- package/lb/listener.d.ts +33 -0
- package/lb/listener.js +33 -0
- package/lb/listener.js.map +1 -1
- package/networkfirewall/firewall.d.ts +82 -10
- package/networkfirewall/firewall.js +36 -6
- package/networkfirewall/firewall.js.map +1 -1
- package/networkfirewall/firewallTransitGatewayAttachmentAccepter.d.ts +94 -0
- package/networkfirewall/firewallTransitGatewayAttachmentAccepter.js +85 -0
- package/networkfirewall/firewallTransitGatewayAttachmentAccepter.js.map +1 -0
- package/networkfirewall/getFirewall.d.ts +16 -0
- package/networkfirewall/getFirewall.js.map +1 -1
- package/networkfirewall/index.d.ts +3 -0
- package/networkfirewall/index.js +6 -1
- package/networkfirewall/index.js.map +1 -1
- package/package.json +2 -2
- package/quicksight/accountSubscription.d.ts +5 -1
- package/quicksight/accountSubscription.js +5 -1
- package/quicksight/accountSubscription.js.map +1 -1
- package/rds/cluster.d.ts +3 -3
- package/rekognition/project.d.ts +17 -3
- package/rekognition/project.js +14 -0
- package/rekognition/project.js.map +1 -1
- package/s3/bucketMetadataConfiguration.d.ts +130 -0
- package/s3/bucketMetadataConfiguration.js +104 -0
- package/s3/bucketMetadataConfiguration.js.map +1 -0
- package/s3/index.d.ts +3 -0
- package/s3/index.js +7 -2
- package/s3/index.js.map +1 -1
- package/secretsmanager/getSecretRotation.d.ts +3 -3
- package/types/input.d.ts +210 -1
- package/types/input.js.map +1 -1
- package/types/output.d.ts +265 -1
- package/types/output.js.map +1 -1
- package/wafv2/ruleGroup.d.ts +3 -0
- package/wafv2/ruleGroup.js +2 -0
- package/wafv2/ruleGroup.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -16727,6 +16727,48 @@ export declare namespace cognito {
|
|
|
16727
16727
|
*/
|
|
16728
16728
|
value: pulumi.Input<string>;
|
|
16729
16729
|
}
|
|
16730
|
+
interface LogDeliveryConfigurationLogConfiguration {
|
|
16731
|
+
/**
|
|
16732
|
+
* Configuration for CloudWatch Logs delivery. See CloudWatch Logs Configuration below.
|
|
16733
|
+
*/
|
|
16734
|
+
cloudWatchLogsConfiguration?: pulumi.Input<inputs.cognito.LogDeliveryConfigurationLogConfigurationCloudWatchLogsConfiguration>;
|
|
16735
|
+
/**
|
|
16736
|
+
* The event source to configure logging for. Valid values are `userNotification` and `userAuthEvents`.
|
|
16737
|
+
*/
|
|
16738
|
+
eventSource: pulumi.Input<string>;
|
|
16739
|
+
/**
|
|
16740
|
+
* Configuration for Kinesis Data Firehose delivery. See Firehose Configuration below.
|
|
16741
|
+
*/
|
|
16742
|
+
firehoseConfiguration?: pulumi.Input<inputs.cognito.LogDeliveryConfigurationLogConfigurationFirehoseConfiguration>;
|
|
16743
|
+
/**
|
|
16744
|
+
* The log level to set for the event source. Valid values are `ERROR` and `INFO`.
|
|
16745
|
+
*/
|
|
16746
|
+
logLevel: pulumi.Input<string>;
|
|
16747
|
+
/**
|
|
16748
|
+
* Configuration for S3 delivery. See S3 Configuration below.
|
|
16749
|
+
*
|
|
16750
|
+
* > **Note:** At least one destination configuration (`cloudWatchLogsConfiguration`, `firehoseConfiguration`, or `s3Configuration`) must be specified for each log configuration.
|
|
16751
|
+
*/
|
|
16752
|
+
s3Configuration?: pulumi.Input<inputs.cognito.LogDeliveryConfigurationLogConfigurationS3Configuration>;
|
|
16753
|
+
}
|
|
16754
|
+
interface LogDeliveryConfigurationLogConfigurationCloudWatchLogsConfiguration {
|
|
16755
|
+
/**
|
|
16756
|
+
* The ARN of the CloudWatch Logs log group to which the logs should be delivered.
|
|
16757
|
+
*/
|
|
16758
|
+
logGroupArn?: pulumi.Input<string>;
|
|
16759
|
+
}
|
|
16760
|
+
interface LogDeliveryConfigurationLogConfigurationFirehoseConfiguration {
|
|
16761
|
+
/**
|
|
16762
|
+
* The ARN of the Kinesis Data Firehose delivery stream to which the logs should be delivered.
|
|
16763
|
+
*/
|
|
16764
|
+
streamArn?: pulumi.Input<string>;
|
|
16765
|
+
}
|
|
16766
|
+
interface LogDeliveryConfigurationLogConfigurationS3Configuration {
|
|
16767
|
+
/**
|
|
16768
|
+
* The ARN of the S3 bucket to which the logs should be delivered.
|
|
16769
|
+
*/
|
|
16770
|
+
bucketArn?: pulumi.Input<string>;
|
|
16771
|
+
}
|
|
16730
16772
|
interface ManagedUserPoolClientAnalyticsConfiguration {
|
|
16731
16773
|
/**
|
|
16732
16774
|
* Application ARN for an Amazon Pinpoint application. It conflicts with `externalId` and `roleArn`.
|
|
@@ -21117,11 +21159,21 @@ export declare namespace dms {
|
|
|
21117
21159
|
*/
|
|
21118
21160
|
nestingLevel?: pulumi.Input<string>;
|
|
21119
21161
|
}
|
|
21162
|
+
interface EndpointOracleSettings {
|
|
21163
|
+
/**
|
|
21164
|
+
* Authentication mechanism to access the Oracle source endpoint. Default is `password`. Valid values are `password` and `kerberos`.
|
|
21165
|
+
*/
|
|
21166
|
+
authenticationMethod?: pulumi.Input<string>;
|
|
21167
|
+
}
|
|
21120
21168
|
interface EndpointPostgresSettings {
|
|
21121
21169
|
/**
|
|
21122
21170
|
* For use with change data capture (CDC) only, this attribute has AWS DMS bypass foreign keys and user triggers to reduce the time it takes to bulk load data.
|
|
21123
21171
|
*/
|
|
21124
21172
|
afterConnectScript?: pulumi.Input<string>;
|
|
21173
|
+
/**
|
|
21174
|
+
* Specifies the authentication method. Valid values: `password`, `iam`.
|
|
21175
|
+
*/
|
|
21176
|
+
authenticationMethod?: pulumi.Input<string>;
|
|
21125
21177
|
/**
|
|
21126
21178
|
* The Babelfish for Aurora PostgreSQL database name for the endpoint.
|
|
21127
21179
|
*/
|
|
@@ -21178,6 +21230,10 @@ export declare namespace dms {
|
|
|
21178
21230
|
* Specifies the plugin to use to create a replication slot. Valid values: `pglogical`, `testDecoding`.
|
|
21179
21231
|
*/
|
|
21180
21232
|
pluginName?: pulumi.Input<string>;
|
|
21233
|
+
/**
|
|
21234
|
+
* Specifies the IAM role to use to authenticate the connection.
|
|
21235
|
+
*/
|
|
21236
|
+
serviceAccessRoleArn?: pulumi.Input<string>;
|
|
21181
21237
|
/**
|
|
21182
21238
|
* Sets the name of a previously created logical replication slot for a CDC load of the PostgreSQL source instance.
|
|
21183
21239
|
*/
|
|
@@ -21278,6 +21334,20 @@ export declare namespace dms {
|
|
|
21278
21334
|
*/
|
|
21279
21335
|
vpcSecurityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
21280
21336
|
}
|
|
21337
|
+
interface ReplicationInstanceKerberosAuthenticationSettings {
|
|
21338
|
+
/**
|
|
21339
|
+
* ARN of the IAM role that grants AWS DMS access to the secret containing key cache file for the Kerberos authentication.
|
|
21340
|
+
*/
|
|
21341
|
+
keyCacheSecretIamArn: pulumi.Input<string>;
|
|
21342
|
+
/**
|
|
21343
|
+
* Secret ID that stores the key cache file required for Kerberos authentication.
|
|
21344
|
+
*/
|
|
21345
|
+
keyCacheSecretId: pulumi.Input<string>;
|
|
21346
|
+
/**
|
|
21347
|
+
* Contents of krb5 configuration file required for Kerberos authentication.
|
|
21348
|
+
*/
|
|
21349
|
+
krb5FileContents: pulumi.Input<string>;
|
|
21350
|
+
}
|
|
21281
21351
|
}
|
|
21282
21352
|
export declare namespace docdb {
|
|
21283
21353
|
interface ClusterMasterUserSecret {
|
|
@@ -28462,7 +28532,7 @@ export declare namespace eks {
|
|
|
28462
28532
|
*/
|
|
28463
28533
|
authenticationMode?: pulumi.Input<string>;
|
|
28464
28534
|
/**
|
|
28465
|
-
* Whether or not to bootstrap the access config values to the cluster. Default is `
|
|
28535
|
+
* Whether or not to bootstrap the access config values to the cluster. Default is `true`.
|
|
28466
28536
|
*/
|
|
28467
28537
|
bootstrapClusterCreatorAdminPermissions?: pulumi.Input<boolean>;
|
|
28468
28538
|
}
|
|
@@ -35674,6 +35744,10 @@ export declare namespace inspector2 {
|
|
|
35674
35744
|
value: pulumi.Input<string>;
|
|
35675
35745
|
}
|
|
35676
35746
|
interface OrganizationConfigurationAutoEnable {
|
|
35747
|
+
/**
|
|
35748
|
+
* Whether code repository scans are automatically enabled for new members of your Amazon Inspector organization.
|
|
35749
|
+
*/
|
|
35750
|
+
codeRepository?: pulumi.Input<boolean>;
|
|
35677
35751
|
/**
|
|
35678
35752
|
* Whether Amazon EC2 scans are automatically enabled for new members of your Amazon Inspector organization.
|
|
35679
35753
|
*/
|
|
@@ -58376,6 +58450,12 @@ export declare namespace neptunegraph {
|
|
|
58376
58450
|
}
|
|
58377
58451
|
}
|
|
58378
58452
|
export declare namespace networkfirewall {
|
|
58453
|
+
interface FirewallAvailabilityZoneMapping {
|
|
58454
|
+
/**
|
|
58455
|
+
* The ID of the Availability Zone where the firewall endpoint is located..
|
|
58456
|
+
*/
|
|
58457
|
+
availabilityZoneId: pulumi.Input<string>;
|
|
58458
|
+
}
|
|
58379
58459
|
interface FirewallEncryptionConfiguration {
|
|
58380
58460
|
/**
|
|
58381
58461
|
* The ID of the customer managed key. You can use any of the [key identifiers](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id) that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN.
|
|
@@ -58391,6 +58471,10 @@ export declare namespace networkfirewall {
|
|
|
58391
58471
|
* Set of subnets configured for use by the firewall.
|
|
58392
58472
|
*/
|
|
58393
58473
|
syncStates?: pulumi.Input<pulumi.Input<inputs.networkfirewall.FirewallFirewallStatusSyncState>[]>;
|
|
58474
|
+
/**
|
|
58475
|
+
* Set of transit gateway configured for use by the firewall.
|
|
58476
|
+
*/
|
|
58477
|
+
transitGatewayAttachmentSyncStates?: pulumi.Input<pulumi.Input<inputs.networkfirewall.FirewallFirewallStatusTransitGatewayAttachmentSyncState>[]>;
|
|
58394
58478
|
}
|
|
58395
58479
|
interface FirewallFirewallStatusSyncState {
|
|
58396
58480
|
/**
|
|
@@ -58412,6 +58496,12 @@ export declare namespace networkfirewall {
|
|
|
58412
58496
|
*/
|
|
58413
58497
|
subnetId?: pulumi.Input<string>;
|
|
58414
58498
|
}
|
|
58499
|
+
interface FirewallFirewallStatusTransitGatewayAttachmentSyncState {
|
|
58500
|
+
/**
|
|
58501
|
+
* The unique identifier of the transit gateway attachment.
|
|
58502
|
+
*/
|
|
58503
|
+
attachmentId?: pulumi.Input<string>;
|
|
58504
|
+
}
|
|
58415
58505
|
interface FirewallPolicyEncryptionConfiguration {
|
|
58416
58506
|
/**
|
|
58417
58507
|
* The ID of the customer managed key. You can use any of the [key identifiers](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id) that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN.
|
|
@@ -58575,6 +58665,16 @@ export declare namespace networkfirewall {
|
|
|
58575
58665
|
*/
|
|
58576
58666
|
subnetId: pulumi.Input<string>;
|
|
58577
58667
|
}
|
|
58668
|
+
interface FirewallTransitGatewayAttachmentAccepterTimeouts {
|
|
58669
|
+
/**
|
|
58670
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
58671
|
+
*/
|
|
58672
|
+
create?: pulumi.Input<string>;
|
|
58673
|
+
/**
|
|
58674
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
58675
|
+
*/
|
|
58676
|
+
delete?: pulumi.Input<string>;
|
|
58677
|
+
}
|
|
58578
58678
|
interface LoggingConfigurationLoggingConfiguration {
|
|
58579
58679
|
/**
|
|
58580
58680
|
* Set of configuration blocks describing the logging details for a firewall. See Log Destination Config below for details. At most, only Three blocks can be specified; one for `FLOW` logs and one for `ALERT` logs and one for `TLS` logs.
|
|
@@ -66204,6 +66304,106 @@ export declare namespace s3 {
|
|
|
66204
66304
|
}
|
|
66205
66305
|
interface BucketLoggingV2TargetObjectKeyFormatSimplePrefix {
|
|
66206
66306
|
}
|
|
66307
|
+
interface BucketMetadataConfigurationMetadataConfiguration {
|
|
66308
|
+
/**
|
|
66309
|
+
* Destination information for the S3 Metadata configuration.
|
|
66310
|
+
*/
|
|
66311
|
+
destinations?: pulumi.Input<pulumi.Input<inputs.s3.BucketMetadataConfigurationMetadataConfigurationDestination>[]>;
|
|
66312
|
+
/**
|
|
66313
|
+
* Inventory table configuration. See `inventoryTableConfiguration` Block for details.
|
|
66314
|
+
*/
|
|
66315
|
+
inventoryTableConfiguration?: pulumi.Input<inputs.s3.BucketMetadataConfigurationMetadataConfigurationInventoryTableConfiguration>;
|
|
66316
|
+
/**
|
|
66317
|
+
* Journal table configuration. See `journalTableConfiguration` Block for details.
|
|
66318
|
+
*/
|
|
66319
|
+
journalTableConfiguration?: pulumi.Input<inputs.s3.BucketMetadataConfigurationMetadataConfigurationJournalTableConfiguration>;
|
|
66320
|
+
}
|
|
66321
|
+
interface BucketMetadataConfigurationMetadataConfigurationDestination {
|
|
66322
|
+
/**
|
|
66323
|
+
* ARN of the table bucket where the metadata configuration is stored.
|
|
66324
|
+
*/
|
|
66325
|
+
tableBucketArn: pulumi.Input<string>;
|
|
66326
|
+
/**
|
|
66327
|
+
* Type of the table bucket where the metadata configuration is stored.
|
|
66328
|
+
*/
|
|
66329
|
+
tableBucketType: pulumi.Input<string>;
|
|
66330
|
+
/**
|
|
66331
|
+
* Namespace in the table bucket where the metadata tables for the metadata configuration are stored.
|
|
66332
|
+
*/
|
|
66333
|
+
tableNamespace: pulumi.Input<string>;
|
|
66334
|
+
}
|
|
66335
|
+
interface BucketMetadataConfigurationMetadataConfigurationInventoryTableConfiguration {
|
|
66336
|
+
/**
|
|
66337
|
+
* Configuration state of the inventory table, indicating whether the inventory table is enabled or disabled. Valid values: `ENABLED`, `DISABLED`.
|
|
66338
|
+
*/
|
|
66339
|
+
configurationState: pulumi.Input<string>;
|
|
66340
|
+
/**
|
|
66341
|
+
* Encryption configuration for the inventory table. See `encryptionConfiguration` Block for details.
|
|
66342
|
+
*/
|
|
66343
|
+
encryptionConfiguration?: pulumi.Input<inputs.s3.BucketMetadataConfigurationMetadataConfigurationInventoryTableConfigurationEncryptionConfiguration>;
|
|
66344
|
+
/**
|
|
66345
|
+
* Inventory table ARN.
|
|
66346
|
+
*/
|
|
66347
|
+
tableArn?: pulumi.Input<string>;
|
|
66348
|
+
/**
|
|
66349
|
+
* Inventory table name.
|
|
66350
|
+
*/
|
|
66351
|
+
tableName?: pulumi.Input<string>;
|
|
66352
|
+
}
|
|
66353
|
+
interface BucketMetadataConfigurationMetadataConfigurationInventoryTableConfigurationEncryptionConfiguration {
|
|
66354
|
+
/**
|
|
66355
|
+
* KMS key ARN when `sseAlgorithm` is `aws:kms`.
|
|
66356
|
+
*/
|
|
66357
|
+
kmsKeyArn?: pulumi.Input<string>;
|
|
66358
|
+
/**
|
|
66359
|
+
* Encryption type for the metadata table. Valid values: `aws:kms`, `AES256`.
|
|
66360
|
+
*/
|
|
66361
|
+
sseAlgorithm: pulumi.Input<string>;
|
|
66362
|
+
}
|
|
66363
|
+
interface BucketMetadataConfigurationMetadataConfigurationJournalTableConfiguration {
|
|
66364
|
+
/**
|
|
66365
|
+
* Encryption configuration for the journal table. See `encryptionConfiguration` Block for details.
|
|
66366
|
+
*/
|
|
66367
|
+
encryptionConfiguration?: pulumi.Input<inputs.s3.BucketMetadataConfigurationMetadataConfigurationJournalTableConfigurationEncryptionConfiguration>;
|
|
66368
|
+
/**
|
|
66369
|
+
* Journal table record expiration settings. See `recordExpiration` Block for details.
|
|
66370
|
+
*/
|
|
66371
|
+
recordExpiration?: pulumi.Input<inputs.s3.BucketMetadataConfigurationMetadataConfigurationJournalTableConfigurationRecordExpiration>;
|
|
66372
|
+
/**
|
|
66373
|
+
* Journal table ARN.
|
|
66374
|
+
*/
|
|
66375
|
+
tableArn?: pulumi.Input<string>;
|
|
66376
|
+
/**
|
|
66377
|
+
* Journal table name.
|
|
66378
|
+
*/
|
|
66379
|
+
tableName?: pulumi.Input<string>;
|
|
66380
|
+
}
|
|
66381
|
+
interface BucketMetadataConfigurationMetadataConfigurationJournalTableConfigurationEncryptionConfiguration {
|
|
66382
|
+
/**
|
|
66383
|
+
* KMS key ARN when `sseAlgorithm` is `aws:kms`.
|
|
66384
|
+
*/
|
|
66385
|
+
kmsKeyArn?: pulumi.Input<string>;
|
|
66386
|
+
/**
|
|
66387
|
+
* Encryption type for the metadata table. Valid values: `aws:kms`, `AES256`.
|
|
66388
|
+
*/
|
|
66389
|
+
sseAlgorithm: pulumi.Input<string>;
|
|
66390
|
+
}
|
|
66391
|
+
interface BucketMetadataConfigurationMetadataConfigurationJournalTableConfigurationRecordExpiration {
|
|
66392
|
+
/**
|
|
66393
|
+
* Number of days to retain journal table records.
|
|
66394
|
+
*/
|
|
66395
|
+
days?: pulumi.Input<number>;
|
|
66396
|
+
/**
|
|
66397
|
+
* Whether journal table record expiration is enabled or disabled. Valid values: `ENABLED`, `DISABLED`.
|
|
66398
|
+
*/
|
|
66399
|
+
expiration: pulumi.Input<string>;
|
|
66400
|
+
}
|
|
66401
|
+
interface BucketMetadataConfigurationTimeouts {
|
|
66402
|
+
/**
|
|
66403
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
66404
|
+
*/
|
|
66405
|
+
create?: pulumi.Input<string>;
|
|
66406
|
+
}
|
|
66207
66407
|
interface BucketMetricFilter {
|
|
66208
66408
|
/**
|
|
66209
66409
|
* S3 Access Point ARN for filtering (singular).
|
|
@@ -78135,6 +78335,7 @@ export declare namespace wafv2 {
|
|
|
78135
78335
|
scopeDownStatement?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatement>;
|
|
78136
78336
|
}
|
|
78137
78337
|
interface RuleGroupRuleStatementRateBasedStatementCustomKey {
|
|
78338
|
+
asn?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyAsn>;
|
|
78138
78339
|
/**
|
|
78139
78340
|
* (Optional) Use the value of a cookie in the request as an aggregate key. See RateLimit `cookie` below for details.
|
|
78140
78341
|
*/
|
|
@@ -78180,6 +78381,8 @@ export declare namespace wafv2 {
|
|
|
78180
78381
|
*/
|
|
78181
78382
|
uriPath?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyUriPath>;
|
|
78182
78383
|
}
|
|
78384
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyAsn {
|
|
78385
|
+
}
|
|
78183
78386
|
interface RuleGroupRuleStatementRateBasedStatementCustomKeyCookie {
|
|
78184
78387
|
/**
|
|
78185
78388
|
* A friendly name of the rule group.
|
|
@@ -83648,6 +83851,10 @@ export declare namespace wafv2 {
|
|
|
83648
83851
|
scopeDownStatement?: pulumi.Input<inputs.wafv2.WebAclRuleStatementRateBasedStatementScopeDownStatement>;
|
|
83649
83852
|
}
|
|
83650
83853
|
interface WebAclRuleStatementRateBasedStatementCustomKey {
|
|
83854
|
+
/**
|
|
83855
|
+
* Use an Autonomous System Number (ASN) derived from the request's originating or forwarded IP address as an aggregate key. See RateLimit `asn` below for details.
|
|
83856
|
+
*/
|
|
83857
|
+
asn?: pulumi.Input<inputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyAsn>;
|
|
83651
83858
|
/**
|
|
83652
83859
|
* Use the value of a cookie in the request as an aggregate key. See RateLimit `cookie` below for details.
|
|
83653
83860
|
*/
|
|
@@ -83693,6 +83900,8 @@ export declare namespace wafv2 {
|
|
|
83693
83900
|
*/
|
|
83694
83901
|
uriPath?: pulumi.Input<inputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyUriPath>;
|
|
83695
83902
|
}
|
|
83903
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyAsn {
|
|
83904
|
+
}
|
|
83696
83905
|
interface WebAclRuleStatementRateBasedStatementCustomKeyCookie {
|
|
83697
83906
|
/**
|
|
83698
83907
|
* The name of the cookie to use.
|
package/types/input.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAslkEjF,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}
|