@pulumi/aws 6.4.0-alpha.1696270400 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/batch/jobQueue.d.ts +6 -9
- package/batch/jobQueue.js.map +1 -1
- package/cleanrooms/configuredTable.d.ts +194 -0
- package/cleanrooms/configuredTable.js +114 -0
- package/cleanrooms/configuredTable.js.map +1 -0
- package/cleanrooms/index.d.ts +3 -0
- package/cleanrooms/index.js +6 -1
- package/cleanrooms/index.js.map +1 -1
- package/cloud9/environmentEC2.d.ts +6 -0
- package/cloud9/environmentEC2.js.map +1 -1
- package/cloudfront/distribution.d.ts +1 -1
- package/connect/getInstanceStorageConfig.d.ts +2 -2
- package/connect/instanceStorageConfig.d.ts +3 -3
- package/dms/index.d.ts +3 -0
- package/dms/index.js +6 -1
- package/dms/index.js.map +1 -1
- package/dms/replicationConfig.d.ts +239 -0
- package/dms/replicationConfig.js +132 -0
- package/dms/replicationConfig.js.map +1 -0
- package/fsx/ontapFileSystem.d.ts +3 -3
- package/fsx/ontapVolume.d.ts +57 -0
- package/fsx/ontapVolume.js +8 -0
- package/fsx/ontapVolume.js.map +1 -1
- package/fsx/openZfsVolume.d.ts +12 -0
- package/fsx/openZfsVolume.js +2 -0
- package/fsx/openZfsVolume.js.map +1 -1
- package/lex/index.d.ts +3 -0
- package/lex/index.js +6 -1
- package/lex/index.js.map +1 -1
- package/lex/v2modelsBot.d.ts +190 -0
- package/lex/v2modelsBot.js +106 -0
- package/lex/v2modelsBot.js.map +1 -0
- package/lightsail/bucket.d.ts +12 -0
- package/lightsail/bucket.js +2 -0
- package/lightsail/bucket.js.map +1 -1
- package/opensearch/outboundConnection.d.ts +37 -0
- package/opensearch/outboundConnection.js +7 -0
- package/opensearch/outboundConnection.js.map +1 -1
- package/package.json +1 -1
- package/rds/customDbEngineVersion.d.ts +345 -0
- package/rds/customDbEngineVersion.js +188 -0
- package/rds/customDbEngineVersion.js.map +1 -0
- package/rds/index.d.ts +3 -0
- package/rds/index.js +6 -1
- package/rds/index.js.map +1 -1
- package/route53/hostedZoneDnsSec.d.ts +2 -0
- package/route53/hostedZoneDnsSec.js +2 -0
- package/route53/hostedZoneDnsSec.js.map +1 -1
- package/s3/getBucketObject.d.ts +1 -1
- package/s3/getObject.d.ts +1 -1
- package/types/input.d.ts +537 -11
- package/types/output.d.ts +537 -11
- package/vpclattice/getService.d.ts +2 -2
- package/vpclattice/getServiceNetwork.d.ts +4 -4
- package/vpclattice/getServiceNetwork.js +2 -2
- package/vpclattice/listenerRule.d.ts +7 -7
- package/vpclattice/targetGroup.d.ts +22 -3
- package/vpclattice/targetGroup.js +22 -3
- package/vpclattice/targetGroup.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -10162,6 +10162,10 @@ export declare namespace cleanrooms {
|
|
|
10162
10162
|
memberAbilities: string[];
|
|
10163
10163
|
status: string;
|
|
10164
10164
|
}
|
|
10165
|
+
interface ConfiguredTableTableReference {
|
|
10166
|
+
databaseName: string;
|
|
10167
|
+
tableName: string;
|
|
10168
|
+
}
|
|
10165
10169
|
}
|
|
10166
10170
|
export declare namespace cloudformation {
|
|
10167
10171
|
interface CloudFormationTypeLoggingConfig {
|
|
@@ -10719,11 +10723,11 @@ export declare namespace cloudfront {
|
|
|
10719
10723
|
*/
|
|
10720
10724
|
originPath?: string;
|
|
10721
10725
|
/**
|
|
10722
|
-
*
|
|
10726
|
+
* CloudFront Origin Shield configuration information. Using Origin Shield can help reduce the load on your origin. For more information, see [Using Origin Shield](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html) in the Amazon CloudFront Developer Guide.
|
|
10723
10727
|
*/
|
|
10724
10728
|
originShield?: outputs.cloudfront.DistributionOriginOriginShield;
|
|
10725
10729
|
/**
|
|
10726
|
-
*
|
|
10730
|
+
* CloudFront S3 origin configuration information. If a custom origin is required, use `customOriginConfig` instead.
|
|
10727
10731
|
*/
|
|
10728
10732
|
s3OriginConfig?: outputs.cloudfront.DistributionOriginS3OriginConfig;
|
|
10729
10733
|
}
|
|
@@ -10789,9 +10793,9 @@ export declare namespace cloudfront {
|
|
|
10789
10793
|
*/
|
|
10790
10794
|
enabled: boolean;
|
|
10791
10795
|
/**
|
|
10792
|
-
* AWS Region for Origin Shield. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2
|
|
10796
|
+
* AWS Region for Origin Shield. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as `us-east-2`.
|
|
10793
10797
|
*/
|
|
10794
|
-
originShieldRegion
|
|
10798
|
+
originShieldRegion?: string;
|
|
10795
10799
|
}
|
|
10796
10800
|
interface DistributionOriginS3OriginConfig {
|
|
10797
10801
|
/**
|
|
@@ -17771,6 +17775,49 @@ export declare namespace dms {
|
|
|
17771
17775
|
useCsvNoSupValue: boolean;
|
|
17772
17776
|
useTaskStartTimeForFullLoadTimestamp: boolean;
|
|
17773
17777
|
}
|
|
17778
|
+
interface ReplicationConfigComputeConfig {
|
|
17779
|
+
/**
|
|
17780
|
+
* The Availability Zone where the DMS Serverless replication using this configuration will run. The default value is a random.
|
|
17781
|
+
*/
|
|
17782
|
+
availabilityZone: string;
|
|
17783
|
+
/**
|
|
17784
|
+
* A list of custom DNS name servers supported for the DMS Serverless replication to access your source or target database.
|
|
17785
|
+
*/
|
|
17786
|
+
dnsNameServers?: string;
|
|
17787
|
+
/**
|
|
17788
|
+
* An Key Management Service (KMS) key Amazon Resource Name (ARN) that is used to encrypt the data during DMS Serverless replication. If you don't specify a value for the KmsKeyId parameter, DMS uses your default encryption key.
|
|
17789
|
+
*/
|
|
17790
|
+
kmsKeyId: string;
|
|
17791
|
+
/**
|
|
17792
|
+
* Specifies the maximum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. A single DCU is 2GB of RAM, with 2 DCUs as the minimum value allowed. The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384.
|
|
17793
|
+
*/
|
|
17794
|
+
maxCapacityUnits?: number;
|
|
17795
|
+
/**
|
|
17796
|
+
* Specifies the minimum value of the DMS capacity units (DCUs) for which a given DMS Serverless replication can be provisioned. The list of valid DCU values includes 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384. If this value isn't set DMS scans the current activity of available source tables to identify an optimum setting for this parameter.
|
|
17797
|
+
*/
|
|
17798
|
+
minCapacityUnits?: number;
|
|
17799
|
+
/**
|
|
17800
|
+
* Specifies if the replication instance is a multi-az deployment. You cannot set the `availabilityZone` parameter if the `multiAz` parameter is set to `true`.
|
|
17801
|
+
*/
|
|
17802
|
+
multiAz: boolean;
|
|
17803
|
+
/**
|
|
17804
|
+
* The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
17805
|
+
*
|
|
17806
|
+
* - Default: A 30-minute window selected at random from an 8-hour block of time per region, occurring on a random day of the week.
|
|
17807
|
+
* - Format: `ddd:hh24:mi-ddd:hh24:mi`
|
|
17808
|
+
* - Valid Days: `mon, tue, wed, thu, fri, sat, sun`
|
|
17809
|
+
* - Constraints: Minimum 30-minute window.
|
|
17810
|
+
*/
|
|
17811
|
+
preferredMaintenanceWindow: string;
|
|
17812
|
+
/**
|
|
17813
|
+
* Specifies a subnet group identifier to associate with the DMS Serverless replication.
|
|
17814
|
+
*/
|
|
17815
|
+
replicationSubnetGroupId: string;
|
|
17816
|
+
/**
|
|
17817
|
+
* Specifies the virtual private cloud (VPC) security group to use with the DMS Serverless replication. The VPC security group must work with the VPC containing the replication.
|
|
17818
|
+
*/
|
|
17819
|
+
vpcSecurityGroupIds: string[];
|
|
17820
|
+
}
|
|
17774
17821
|
}
|
|
17775
17822
|
export declare namespace docdb {
|
|
17776
17823
|
interface ClusterParameterGroupParameter {
|
|
@@ -28067,6 +28114,86 @@ export declare namespace fsx {
|
|
|
28067
28114
|
*/
|
|
28068
28115
|
ipAddresses: string[];
|
|
28069
28116
|
}
|
|
28117
|
+
interface OntapVolumeSnaplockConfiguration {
|
|
28118
|
+
/**
|
|
28119
|
+
* Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is `false`.
|
|
28120
|
+
*/
|
|
28121
|
+
auditLogVolume?: boolean;
|
|
28122
|
+
/**
|
|
28123
|
+
* The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume. See Autocommit Period below.
|
|
28124
|
+
*/
|
|
28125
|
+
autocommitPeriod: outputs.fsx.OntapVolumeSnaplockConfigurationAutocommitPeriod;
|
|
28126
|
+
/**
|
|
28127
|
+
* Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Valid values: `DISABLED`, `ENABLED`, `PERMANENTLY_DISABLED`. The default value is `DISABLED`.
|
|
28128
|
+
*/
|
|
28129
|
+
privilegedDelete?: string;
|
|
28130
|
+
/**
|
|
28131
|
+
* The retention period of an FSx for ONTAP SnapLock volume. See SnapLock Retention Period below.
|
|
28132
|
+
*/
|
|
28133
|
+
retentionPeriod: outputs.fsx.OntapVolumeSnaplockConfigurationRetentionPeriod;
|
|
28134
|
+
/**
|
|
28135
|
+
* Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. Valid values: `COMPLIANCE`, `ENTERPRISE`.
|
|
28136
|
+
*/
|
|
28137
|
+
snaplockType: string;
|
|
28138
|
+
/**
|
|
28139
|
+
* Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. The default value is `false`.
|
|
28140
|
+
*/
|
|
28141
|
+
volumeAppendModeEnabled?: boolean;
|
|
28142
|
+
}
|
|
28143
|
+
interface OntapVolumeSnaplockConfigurationAutocommitPeriod {
|
|
28144
|
+
/**
|
|
28145
|
+
* The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to `NONE` disables autocommit. Valid values: `MINUTES`, `HOURS`, `DAYS`, `MONTHS`, `YEARS`, `NONE`.
|
|
28146
|
+
*/
|
|
28147
|
+
type: string;
|
|
28148
|
+
/**
|
|
28149
|
+
* The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
|
|
28150
|
+
*/
|
|
28151
|
+
value?: number;
|
|
28152
|
+
}
|
|
28153
|
+
interface OntapVolumeSnaplockConfigurationRetentionPeriod {
|
|
28154
|
+
/**
|
|
28155
|
+
* The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period. See Retention Period below.
|
|
28156
|
+
*/
|
|
28157
|
+
defaultRetention: outputs.fsx.OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention;
|
|
28158
|
+
/**
|
|
28159
|
+
* The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
|
|
28160
|
+
*/
|
|
28161
|
+
maximumRetention: outputs.fsx.OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention;
|
|
28162
|
+
/**
|
|
28163
|
+
* The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
|
|
28164
|
+
*/
|
|
28165
|
+
minimumRetention: outputs.fsx.OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention;
|
|
28166
|
+
}
|
|
28167
|
+
interface OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention {
|
|
28168
|
+
/**
|
|
28169
|
+
* The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to `NONE` disables autocommit. Valid values: `MINUTES`, `HOURS`, `DAYS`, `MONTHS`, `YEARS`, `NONE`.
|
|
28170
|
+
*/
|
|
28171
|
+
type: string;
|
|
28172
|
+
/**
|
|
28173
|
+
* The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
|
|
28174
|
+
*/
|
|
28175
|
+
value?: number;
|
|
28176
|
+
}
|
|
28177
|
+
interface OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention {
|
|
28178
|
+
/**
|
|
28179
|
+
* The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to `NONE` disables autocommit. Valid values: `MINUTES`, `HOURS`, `DAYS`, `MONTHS`, `YEARS`, `NONE`.
|
|
28180
|
+
*/
|
|
28181
|
+
type: string;
|
|
28182
|
+
/**
|
|
28183
|
+
* The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
|
|
28184
|
+
*/
|
|
28185
|
+
value?: number;
|
|
28186
|
+
}
|
|
28187
|
+
interface OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention {
|
|
28188
|
+
/**
|
|
28189
|
+
* The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to `NONE` disables autocommit. Valid values: `MINUTES`, `HOURS`, `DAYS`, `MONTHS`, `YEARS`, `NONE`.
|
|
28190
|
+
*/
|
|
28191
|
+
type: string;
|
|
28192
|
+
/**
|
|
28193
|
+
* The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
|
|
28194
|
+
*/
|
|
28195
|
+
value?: number;
|
|
28196
|
+
}
|
|
28070
28197
|
interface OntapVolumeTieringPolicy {
|
|
28071
28198
|
/**
|
|
28072
28199
|
* Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with `AUTO` and `SNAPSHOT_ONLY` tiering policies only. Valid values are whole numbers between 2 and 183. Default values are 31 days for `AUTO` and 2 days for `SNAPSHOT_ONLY`.
|
|
@@ -37009,6 +37136,39 @@ export declare namespace lex {
|
|
|
37009
37136
|
*/
|
|
37010
37137
|
value: string;
|
|
37011
37138
|
}
|
|
37139
|
+
interface V2modelsBotDataPrivacy {
|
|
37140
|
+
/**
|
|
37141
|
+
* (Required) - For each Amazon Lex bot created with the Amazon Lex Model Building Service, you must specify whether your use of Amazon Lex is related to a website, program, or other application that is directed or targeted, in whole or in part, to children under age 13 and subject to the Children's Online Privacy Protection Act (COPPA) by specifying true or false in the childDirected field.
|
|
37142
|
+
*/
|
|
37143
|
+
childDirected: boolean;
|
|
37144
|
+
}
|
|
37145
|
+
interface V2modelsBotMember {
|
|
37146
|
+
/**
|
|
37147
|
+
* (Required) - Alias ID of a bot that is a member of this network of bots.
|
|
37148
|
+
*/
|
|
37149
|
+
aliasId: string;
|
|
37150
|
+
/**
|
|
37151
|
+
* (Required) - Alias name of a bot that is a member of this network of bots.
|
|
37152
|
+
*/
|
|
37153
|
+
aliasName: string;
|
|
37154
|
+
/**
|
|
37155
|
+
* (Required) - Unique ID of a bot that is a member of this network of bots.
|
|
37156
|
+
*/
|
|
37157
|
+
id: string;
|
|
37158
|
+
/**
|
|
37159
|
+
* Name of the bot. The bot name must be unique in the account that creates the bot. Type String. Length Constraints: Minimum length of 1. Maximum length of 100.
|
|
37160
|
+
*/
|
|
37161
|
+
name: string;
|
|
37162
|
+
/**
|
|
37163
|
+
* (Required) - Version of a bot that is a member of this network of bots.
|
|
37164
|
+
*/
|
|
37165
|
+
version: string;
|
|
37166
|
+
}
|
|
37167
|
+
interface V2modelsBotTimeouts {
|
|
37168
|
+
create?: string;
|
|
37169
|
+
delete?: string;
|
|
37170
|
+
update?: string;
|
|
37171
|
+
}
|
|
37012
37172
|
}
|
|
37013
37173
|
export declare namespace licensemanager {
|
|
37014
37174
|
interface GetLicenseGrantsFilter {
|
|
@@ -42840,6 +43000,22 @@ export declare namespace opensearch {
|
|
|
42840
43000
|
*/
|
|
42841
43001
|
userAttribute: string;
|
|
42842
43002
|
}
|
|
43003
|
+
interface OutboundConnectionConnectionProperties {
|
|
43004
|
+
/**
|
|
43005
|
+
* Configuration block for cross cluster search.
|
|
43006
|
+
*/
|
|
43007
|
+
crossClusterSearch?: outputs.opensearch.OutboundConnectionConnectionPropertiesCrossClusterSearch;
|
|
43008
|
+
/**
|
|
43009
|
+
* The endpoint of the remote domain, is only set when `connectionMode` is `VPC_ENDPOINT` and `acceptConnection` is `TRUE`.
|
|
43010
|
+
*/
|
|
43011
|
+
endpoint: string;
|
|
43012
|
+
}
|
|
43013
|
+
interface OutboundConnectionConnectionPropertiesCrossClusterSearch {
|
|
43014
|
+
/**
|
|
43015
|
+
* Skips unavailable clusters and can only be used for cross-cluster searches. Accepted values are `ENABLED` or `DISABLED`.
|
|
43016
|
+
*/
|
|
43017
|
+
skipUnavailable?: string;
|
|
43018
|
+
}
|
|
42843
43019
|
interface OutboundConnectionLocalDomainInfo {
|
|
42844
43020
|
/**
|
|
42845
43021
|
* The name of the local domain.
|
|
@@ -54461,13 +54637,11 @@ export declare namespace sesv2 {
|
|
|
54461
54637
|
export declare namespace sfn {
|
|
54462
54638
|
interface AliasRoutingConfiguration {
|
|
54463
54639
|
/**
|
|
54464
|
-
*
|
|
54640
|
+
* The Amazon Resource Name (ARN) of the state machine version.
|
|
54465
54641
|
*/
|
|
54466
54642
|
stateMachineVersionArn: string;
|
|
54467
54643
|
/**
|
|
54468
54644
|
* Percentage of traffic routed to the state machine version.
|
|
54469
|
-
*
|
|
54470
|
-
* The following arguments are optional:
|
|
54471
54645
|
*/
|
|
54472
54646
|
weight: number;
|
|
54473
54647
|
}
|
|
@@ -56329,7 +56503,7 @@ export declare namespace vpclattice {
|
|
|
56329
56503
|
*/
|
|
56330
56504
|
id: string;
|
|
56331
56505
|
/**
|
|
56332
|
-
*
|
|
56506
|
+
* This port is used for routing traffic to the target, and defaults to the target group port. However, you can override the default and specify a custom port.
|
|
56333
56507
|
*/
|
|
56334
56508
|
port: number;
|
|
56335
56509
|
}
|
|
@@ -57535,9 +57709,13 @@ export declare namespace wafv2 {
|
|
|
57535
57709
|
}
|
|
57536
57710
|
interface RuleGroupRuleStatementRateBasedStatement {
|
|
57537
57711
|
/**
|
|
57538
|
-
* Setting that indicates how to aggregate the request counts. Valid values include: `CONSTANT`, `FORWARDED_IP` or `IP`. Default: `IP`.
|
|
57712
|
+
* Setting that indicates how to aggregate the request counts. Valid values include: `CONSTANT`, `CUSTOM_KEYS`, `FORWARDED_IP` or `IP`. Default: `IP`.
|
|
57539
57713
|
*/
|
|
57540
57714
|
aggregateKeyType?: string;
|
|
57715
|
+
/**
|
|
57716
|
+
* Aggregate the request counts using one or more web request components as the aggregate keys. See `customKey` below for details.
|
|
57717
|
+
*/
|
|
57718
|
+
customKeys?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKey[];
|
|
57541
57719
|
/**
|
|
57542
57720
|
* The configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that's reported by the web request origin. If `aggregateKeyType` is set to `FORWARDED_IP`, this block is required. See Forwarded IP Config below for details.
|
|
57543
57721
|
*/
|
|
@@ -57551,6 +57729,208 @@ export declare namespace wafv2 {
|
|
|
57551
57729
|
*/
|
|
57552
57730
|
scopeDownStatement?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatement;
|
|
57553
57731
|
}
|
|
57732
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKey {
|
|
57733
|
+
/**
|
|
57734
|
+
* (Optional) Use the value of a cookie in the request as an aggregate key. See RateLimit `cookie` below for details.
|
|
57735
|
+
*/
|
|
57736
|
+
cookie?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyCookie;
|
|
57737
|
+
/**
|
|
57738
|
+
* (Optional) Use the first IP address in an HTTP header as an aggregate key. See `forwardedIp` below for details.
|
|
57739
|
+
*/
|
|
57740
|
+
forwardedIp?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyForwardedIp;
|
|
57741
|
+
/**
|
|
57742
|
+
* (Optional) Use the value of a header in the request as an aggregate key. See RateLimit `header` below for details.
|
|
57743
|
+
*/
|
|
57744
|
+
header?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyHeader;
|
|
57745
|
+
/**
|
|
57746
|
+
* (Optional) Use the request's HTTP method as an aggregate key. See RateLimit `httpMethod` below for details.
|
|
57747
|
+
*/
|
|
57748
|
+
httpMethod?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyHttpMethod;
|
|
57749
|
+
/**
|
|
57750
|
+
* (Optional) Use the request's originating IP address as an aggregate key. See `RateLimit ip` below for details.
|
|
57751
|
+
*/
|
|
57752
|
+
ip?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyIp;
|
|
57753
|
+
/**
|
|
57754
|
+
* (Optional) Use the specified label namespace as an aggregate key. See RateLimit `labelNamespace` below for details.
|
|
57755
|
+
*/
|
|
57756
|
+
labelNamespace?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace;
|
|
57757
|
+
/**
|
|
57758
|
+
* (Optional) Use the specified query argument as an aggregate key. See RateLimit `queryArgument` below for details.
|
|
57759
|
+
*/
|
|
57760
|
+
queryArgument?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyQueryArgument;
|
|
57761
|
+
/**
|
|
57762
|
+
* Inspect the query string. This is the part of a URL that appears after a `?` character, if any.
|
|
57763
|
+
*/
|
|
57764
|
+
queryString?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyQueryString;
|
|
57765
|
+
/**
|
|
57766
|
+
* Inspect the request URI path. This is the part of a web request that identifies a resource, for example, `/images/daily-ad.jpg`.
|
|
57767
|
+
*/
|
|
57768
|
+
uriPath?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyUriPath;
|
|
57769
|
+
}
|
|
57770
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyCookie {
|
|
57771
|
+
/**
|
|
57772
|
+
* A friendly name of the rule group.
|
|
57773
|
+
*/
|
|
57774
|
+
name: string;
|
|
57775
|
+
/**
|
|
57776
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
|
|
57777
|
+
* At least one required.
|
|
57778
|
+
* See Text Transformation below for details.
|
|
57779
|
+
* At least one required.
|
|
57780
|
+
* See Text Transformation below for details.
|
|
57781
|
+
* At least one required.
|
|
57782
|
+
* See Text Transformation below for details.
|
|
57783
|
+
* At least one required.
|
|
57784
|
+
* See Text Transformation below for details.
|
|
57785
|
+
* At least one required.
|
|
57786
|
+
* See Text Transformation below for details.
|
|
57787
|
+
* At least one required.
|
|
57788
|
+
* See Text Transformation below for details.
|
|
57789
|
+
*/
|
|
57790
|
+
textTransformations: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyCookieTextTransformation[];
|
|
57791
|
+
}
|
|
57792
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyCookieTextTransformation {
|
|
57793
|
+
/**
|
|
57794
|
+
* The relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
57795
|
+
*/
|
|
57796
|
+
priority: number;
|
|
57797
|
+
/**
|
|
57798
|
+
* The transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
57799
|
+
*/
|
|
57800
|
+
type: string;
|
|
57801
|
+
}
|
|
57802
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyForwardedIp {
|
|
57803
|
+
}
|
|
57804
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyHeader {
|
|
57805
|
+
/**
|
|
57806
|
+
* A friendly name of the rule group.
|
|
57807
|
+
*/
|
|
57808
|
+
name: string;
|
|
57809
|
+
/**
|
|
57810
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
|
|
57811
|
+
* At least one required.
|
|
57812
|
+
* See Text Transformation below for details.
|
|
57813
|
+
* At least one required.
|
|
57814
|
+
* See Text Transformation below for details.
|
|
57815
|
+
* At least one required.
|
|
57816
|
+
* See Text Transformation below for details.
|
|
57817
|
+
* At least one required.
|
|
57818
|
+
* See Text Transformation below for details.
|
|
57819
|
+
* At least one required.
|
|
57820
|
+
* See Text Transformation below for details.
|
|
57821
|
+
* At least one required.
|
|
57822
|
+
* See Text Transformation below for details.
|
|
57823
|
+
*/
|
|
57824
|
+
textTransformations: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyHeaderTextTransformation[];
|
|
57825
|
+
}
|
|
57826
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyHeaderTextTransformation {
|
|
57827
|
+
/**
|
|
57828
|
+
* The relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
57829
|
+
*/
|
|
57830
|
+
priority: number;
|
|
57831
|
+
/**
|
|
57832
|
+
* The transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
57833
|
+
*/
|
|
57834
|
+
type: string;
|
|
57835
|
+
}
|
|
57836
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyHttpMethod {
|
|
57837
|
+
}
|
|
57838
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyIp {
|
|
57839
|
+
}
|
|
57840
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace {
|
|
57841
|
+
/**
|
|
57842
|
+
* The namespace to use for aggregation
|
|
57843
|
+
*/
|
|
57844
|
+
namespace: string;
|
|
57845
|
+
}
|
|
57846
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyQueryArgument {
|
|
57847
|
+
/**
|
|
57848
|
+
* A friendly name of the rule group.
|
|
57849
|
+
*/
|
|
57850
|
+
name: string;
|
|
57851
|
+
/**
|
|
57852
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
|
|
57853
|
+
* At least one required.
|
|
57854
|
+
* See Text Transformation below for details.
|
|
57855
|
+
* At least one required.
|
|
57856
|
+
* See Text Transformation below for details.
|
|
57857
|
+
* At least one required.
|
|
57858
|
+
* See Text Transformation below for details.
|
|
57859
|
+
* At least one required.
|
|
57860
|
+
* See Text Transformation below for details.
|
|
57861
|
+
* At least one required.
|
|
57862
|
+
* See Text Transformation below for details.
|
|
57863
|
+
* At least one required.
|
|
57864
|
+
* See Text Transformation below for details.
|
|
57865
|
+
*/
|
|
57866
|
+
textTransformations: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyQueryArgumentTextTransformation[];
|
|
57867
|
+
}
|
|
57868
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyQueryArgumentTextTransformation {
|
|
57869
|
+
/**
|
|
57870
|
+
* The relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
57871
|
+
*/
|
|
57872
|
+
priority: number;
|
|
57873
|
+
/**
|
|
57874
|
+
* The transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
57875
|
+
*/
|
|
57876
|
+
type: string;
|
|
57877
|
+
}
|
|
57878
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyQueryString {
|
|
57879
|
+
/**
|
|
57880
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
|
|
57881
|
+
* At least one required.
|
|
57882
|
+
* See Text Transformation below for details.
|
|
57883
|
+
* At least one required.
|
|
57884
|
+
* See Text Transformation below for details.
|
|
57885
|
+
* At least one required.
|
|
57886
|
+
* See Text Transformation below for details.
|
|
57887
|
+
* At least one required.
|
|
57888
|
+
* See Text Transformation below for details.
|
|
57889
|
+
* At least one required.
|
|
57890
|
+
* See Text Transformation below for details.
|
|
57891
|
+
* At least one required.
|
|
57892
|
+
* See Text Transformation below for details.
|
|
57893
|
+
*/
|
|
57894
|
+
textTransformations: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyQueryStringTextTransformation[];
|
|
57895
|
+
}
|
|
57896
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyQueryStringTextTransformation {
|
|
57897
|
+
/**
|
|
57898
|
+
* The relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
57899
|
+
*/
|
|
57900
|
+
priority: number;
|
|
57901
|
+
/**
|
|
57902
|
+
* The transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
57903
|
+
*/
|
|
57904
|
+
type: string;
|
|
57905
|
+
}
|
|
57906
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyUriPath {
|
|
57907
|
+
/**
|
|
57908
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.
|
|
57909
|
+
* At least one required.
|
|
57910
|
+
* See Text Transformation below for details.
|
|
57911
|
+
* At least one required.
|
|
57912
|
+
* See Text Transformation below for details.
|
|
57913
|
+
* At least one required.
|
|
57914
|
+
* See Text Transformation below for details.
|
|
57915
|
+
* At least one required.
|
|
57916
|
+
* See Text Transformation below for details.
|
|
57917
|
+
* At least one required.
|
|
57918
|
+
* See Text Transformation below for details.
|
|
57919
|
+
* At least one required.
|
|
57920
|
+
* See Text Transformation below for details.
|
|
57921
|
+
*/
|
|
57922
|
+
textTransformations: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementCustomKeyUriPathTextTransformation[];
|
|
57923
|
+
}
|
|
57924
|
+
interface RuleGroupRuleStatementRateBasedStatementCustomKeyUriPathTextTransformation {
|
|
57925
|
+
/**
|
|
57926
|
+
* The relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
57927
|
+
*/
|
|
57928
|
+
priority: number;
|
|
57929
|
+
/**
|
|
57930
|
+
* The transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
57931
|
+
*/
|
|
57932
|
+
type: string;
|
|
57933
|
+
}
|
|
57554
57934
|
interface RuleGroupRuleStatementRateBasedStatementForwardedIpConfig {
|
|
57555
57935
|
/**
|
|
57556
57936
|
* The match status to assign to the web request if the request doesn't have a valid IP address in the specified position. Valid values include: `MATCH` or `NO_MATCH`.
|
|
@@ -60449,7 +60829,7 @@ export declare namespace wafv2 {
|
|
|
60449
60829
|
*/
|
|
60450
60830
|
failureValues: string[];
|
|
60451
60831
|
/**
|
|
60452
|
-
* The name of the header to
|
|
60832
|
+
* The name of the header to use.
|
|
60453
60833
|
*/
|
|
60454
60834
|
name: string;
|
|
60455
60835
|
/**
|
|
@@ -61823,9 +62203,13 @@ export declare namespace wafv2 {
|
|
|
61823
62203
|
}
|
|
61824
62204
|
interface WebAclRuleStatementRateBasedStatement {
|
|
61825
62205
|
/**
|
|
61826
|
-
* Setting that indicates how to aggregate the request counts. Valid values include: `CONSTANT`, `FORWARDED_IP
|
|
62206
|
+
* Setting that indicates how to aggregate the request counts. Valid values include: `CONSTANT`, `CUSTOM_KEYS`, `FORWARDED_IP`, or `IP`. Default: `IP`.
|
|
61827
62207
|
*/
|
|
61828
62208
|
aggregateKeyType?: string;
|
|
62209
|
+
/**
|
|
62210
|
+
* Aggregate the request counts using one or more web request components as the aggregate keys. See `customKey` below for details.
|
|
62211
|
+
*/
|
|
62212
|
+
customKeys?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKey[];
|
|
61829
62213
|
/**
|
|
61830
62214
|
* Configuration for inspecting IP addresses in an HTTP header that you specify, instead of using the IP address that's reported by the web request origin. If `aggregateKeyType` is set to `FORWARDED_IP`, this block is required. See `forwardedIpConfig` below for details.
|
|
61831
62215
|
*/
|
|
@@ -61839,6 +62223,148 @@ export declare namespace wafv2 {
|
|
|
61839
62223
|
*/
|
|
61840
62224
|
scopeDownStatement?: outputs.wafv2.WebAclRuleStatementRateBasedStatementScopeDownStatement;
|
|
61841
62225
|
}
|
|
62226
|
+
interface WebAclRuleStatementRateBasedStatementCustomKey {
|
|
62227
|
+
/**
|
|
62228
|
+
* Use the value of a cookie in the request as an aggregate key. See RateLimit `cookie` below for details.
|
|
62229
|
+
*/
|
|
62230
|
+
cookie?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyCookie;
|
|
62231
|
+
/**
|
|
62232
|
+
* Use the first IP address in an HTTP header as an aggregate key. See `forwardedIp` below for details.
|
|
62233
|
+
*/
|
|
62234
|
+
forwardedIp?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyForwardedIp;
|
|
62235
|
+
/**
|
|
62236
|
+
* Use the value of a header in the request as an aggregate key. See RateLimit `header` below for details.
|
|
62237
|
+
*/
|
|
62238
|
+
header?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyHeader;
|
|
62239
|
+
/**
|
|
62240
|
+
* Use the request's HTTP method as an aggregate key. See RateLimit `httpMethod` below for details.
|
|
62241
|
+
*/
|
|
62242
|
+
httpMethod?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyHttpMethod;
|
|
62243
|
+
/**
|
|
62244
|
+
* Use the request's originating IP address as an aggregate key. See `RateLimit ip` below for details.
|
|
62245
|
+
*/
|
|
62246
|
+
ip?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyIp;
|
|
62247
|
+
/**
|
|
62248
|
+
* Use the specified label namespace as an aggregate key. See RateLimit `labelNamespace` below for details.
|
|
62249
|
+
*/
|
|
62250
|
+
labelNamespace?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyLabelNamespace;
|
|
62251
|
+
/**
|
|
62252
|
+
* Use the specified query argument as an aggregate key. See RateLimit `queryArgument` below for details.
|
|
62253
|
+
*/
|
|
62254
|
+
queryArgument?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyQueryArgument;
|
|
62255
|
+
/**
|
|
62256
|
+
* Use the request's query string as an aggregate key. See RateLimit `queryString` below for details.
|
|
62257
|
+
*/
|
|
62258
|
+
queryString?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyQueryString;
|
|
62259
|
+
/**
|
|
62260
|
+
* Use the request's URI path as an aggregate key. See RateLimit `uriPath` below for details.
|
|
62261
|
+
*/
|
|
62262
|
+
uriPath?: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyUriPath;
|
|
62263
|
+
}
|
|
62264
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyCookie {
|
|
62265
|
+
/**
|
|
62266
|
+
* The name of the cookie to use.
|
|
62267
|
+
*/
|
|
62268
|
+
name: string;
|
|
62269
|
+
/**
|
|
62270
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. They are used in rate-based rule statements, to transform request components before using them as custom aggregation keys. Atleast one transformation is required. See `textTransformation` above for details.
|
|
62271
|
+
*/
|
|
62272
|
+
textTransformations: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyCookieTextTransformation[];
|
|
62273
|
+
}
|
|
62274
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyCookieTextTransformation {
|
|
62275
|
+
/**
|
|
62276
|
+
* Relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
62277
|
+
*/
|
|
62278
|
+
priority: number;
|
|
62279
|
+
/**
|
|
62280
|
+
* Transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
62281
|
+
*/
|
|
62282
|
+
type: string;
|
|
62283
|
+
}
|
|
62284
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyForwardedIp {
|
|
62285
|
+
}
|
|
62286
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyHeader {
|
|
62287
|
+
/**
|
|
62288
|
+
* The name of the header to use.
|
|
62289
|
+
*/
|
|
62290
|
+
name: string;
|
|
62291
|
+
/**
|
|
62292
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. They are used in rate-based rule statements, to transform request components before using them as custom aggregation keys. Atleast one transformation is required. See `textTransformation` above for details.
|
|
62293
|
+
*/
|
|
62294
|
+
textTransformations: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyHeaderTextTransformation[];
|
|
62295
|
+
}
|
|
62296
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyHeaderTextTransformation {
|
|
62297
|
+
/**
|
|
62298
|
+
* Relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
62299
|
+
*/
|
|
62300
|
+
priority: number;
|
|
62301
|
+
/**
|
|
62302
|
+
* Transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
62303
|
+
*/
|
|
62304
|
+
type: string;
|
|
62305
|
+
}
|
|
62306
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyHttpMethod {
|
|
62307
|
+
}
|
|
62308
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyIp {
|
|
62309
|
+
}
|
|
62310
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyLabelNamespace {
|
|
62311
|
+
/**
|
|
62312
|
+
* The namespace to use for aggregation
|
|
62313
|
+
*/
|
|
62314
|
+
namespace: string;
|
|
62315
|
+
}
|
|
62316
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyQueryArgument {
|
|
62317
|
+
/**
|
|
62318
|
+
* The name of the query argument to use.
|
|
62319
|
+
*/
|
|
62320
|
+
name: string;
|
|
62321
|
+
/**
|
|
62322
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. They are used in rate-based rule statements, to transform request components before using them as custom aggregation keys. Atleast one transformation is required. See `textTransformation` above for details.
|
|
62323
|
+
*/
|
|
62324
|
+
textTransformations: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyQueryArgumentTextTransformation[];
|
|
62325
|
+
}
|
|
62326
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyQueryArgumentTextTransformation {
|
|
62327
|
+
/**
|
|
62328
|
+
* Relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
62329
|
+
*/
|
|
62330
|
+
priority: number;
|
|
62331
|
+
/**
|
|
62332
|
+
* Transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
62333
|
+
*/
|
|
62334
|
+
type: string;
|
|
62335
|
+
}
|
|
62336
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyQueryString {
|
|
62337
|
+
/**
|
|
62338
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. They are used in rate-based rule statements, to transform request components before using them as custom aggregation keys. Atleast one transformation is required. See `textTransformation` above for details.
|
|
62339
|
+
*/
|
|
62340
|
+
textTransformations: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyQueryStringTextTransformation[];
|
|
62341
|
+
}
|
|
62342
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyQueryStringTextTransformation {
|
|
62343
|
+
/**
|
|
62344
|
+
* Relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
62345
|
+
*/
|
|
62346
|
+
priority: number;
|
|
62347
|
+
/**
|
|
62348
|
+
* Transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
62349
|
+
*/
|
|
62350
|
+
type: string;
|
|
62351
|
+
}
|
|
62352
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyUriPath {
|
|
62353
|
+
/**
|
|
62354
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. They are used in rate-based rule statements, to transform request components before using them as custom aggregation keys. Atleast one transformation is required. See `textTransformation` above for details.
|
|
62355
|
+
*/
|
|
62356
|
+
textTransformations: outputs.wafv2.WebAclRuleStatementRateBasedStatementCustomKeyUriPathTextTransformation[];
|
|
62357
|
+
}
|
|
62358
|
+
interface WebAclRuleStatementRateBasedStatementCustomKeyUriPathTextTransformation {
|
|
62359
|
+
/**
|
|
62360
|
+
* Relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
|
|
62361
|
+
*/
|
|
62362
|
+
priority: number;
|
|
62363
|
+
/**
|
|
62364
|
+
* Transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
|
|
62365
|
+
*/
|
|
62366
|
+
type: string;
|
|
62367
|
+
}
|
|
61842
62368
|
interface WebAclRuleStatementRateBasedStatementForwardedIpConfig {
|
|
61843
62369
|
/**
|
|
61844
62370
|
* Match status to assign to the web request if the request doesn't have a valid IP address in the specified position. Valid values include: `MATCH` or `NO_MATCH`.
|
|
@@ -25,7 +25,7 @@ export interface GetServiceArgs {
|
|
|
25
25
|
*/
|
|
26
26
|
name?: string;
|
|
27
27
|
/**
|
|
28
|
-
* ID or Amazon Resource Name (ARN) of the service
|
|
28
|
+
* ID or Amazon Resource Name (ARN) of the service.
|
|
29
29
|
*/
|
|
30
30
|
serviceIdentifier?: string;
|
|
31
31
|
/**
|
|
@@ -101,7 +101,7 @@ export interface GetServiceOutputArgs {
|
|
|
101
101
|
*/
|
|
102
102
|
name?: pulumi.Input<string>;
|
|
103
103
|
/**
|
|
104
|
-
* ID or Amazon Resource Name (ARN) of the service
|
|
104
|
+
* ID or Amazon Resource Name (ARN) of the service.
|
|
105
105
|
*/
|
|
106
106
|
serviceIdentifier?: pulumi.Input<string>;
|
|
107
107
|
/**
|