@pulumi/aws 7.0.0-alpha.3 → 7.0.0-rc.2
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/amp/index.d.ts +3 -0
- package/amp/index.js +6 -1
- package/amp/index.js.map +1 -1
- package/amp/queryLoggingConfiguration.d.ts +107 -0
- package/amp/queryLoggingConfiguration.js +82 -0
- package/amp/queryLoggingConfiguration.js.map +1 -0
- package/amplify/branch.d.ts +12 -0
- package/amplify/branch.js +2 -0
- package/amplify/branch.js.map +1 -1
- package/cloudfront/distribution.d.ts +12 -0
- package/cloudfront/distribution.js +2 -0
- package/cloudfront/distribution.js.map +1 -1
- package/cloudfront/getDistribution.d.ts +4 -0
- package/cloudfront/getDistribution.js.map +1 -1
- package/dynamodb/table.d.ts +35 -0
- package/dynamodb/table.js +35 -0
- package/dynamodb/table.js.map +1 -1
- package/eks/cluster.d.ts +2 -4
- package/eks/cluster.js +0 -2
- package/eks/cluster.js.map +1 -1
- package/iam/rolePolicy.d.ts +21 -15
- package/iam/rolePolicy.js.map +1 -1
- package/kinesis/getStreamConsumer.d.ts +9 -0
- package/kinesis/getStreamConsumer.js +2 -0
- package/kinesis/getStreamConsumer.js.map +1 -1
- package/kinesis/streamConsumer.d.ts +15 -0
- package/kinesis/streamConsumer.js +4 -0
- package/kinesis/streamConsumer.js.map +1 -1
- package/package.json +2 -2
- package/rbin/rule.d.ts +52 -17
- package/rbin/rule.js +26 -1
- package/rbin/rule.js.map +1 -1
- package/route53/profilesResourceAssociation.d.ts +1 -1
- package/s3/directoryBucket.d.ts +30 -0
- package/s3/directoryBucket.js +4 -0
- package/s3/directoryBucket.js.map +1 -1
- package/ssoadmin/applicationAccessScope.d.ts +1 -1
- package/ssoadmin/applicationAccessScope.js +1 -1
- package/ssoadmin/applicationAssignment.d.ts +2 -2
- package/ssoadmin/applicationAssignment.js +2 -2
- package/ssoadmin/applicationAssignmentConfiguration.d.ts +1 -1
- package/ssoadmin/applicationAssignmentConfiguration.js +1 -1
- package/ssoadmin/getApplicationAssignments.d.ts +2 -2
- package/ssoadmin/getApplicationAssignments.js +2 -2
- package/types/input.d.ts +80 -6
- package/types/input.js.map +1 -1
- package/types/output.d.ts +72 -6
- package/types/output.js.map +1 -1
|
@@ -17,7 +17,7 @@ const utilities = require("../utilities");
|
|
|
17
17
|
* import * as aws from "@pulumi/aws";
|
|
18
18
|
*
|
|
19
19
|
* const example = new aws.ssoadmin.ApplicationAssignment("example", {
|
|
20
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
20
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
21
21
|
* principalId: exampleAwsIdentitystoreUser.userId,
|
|
22
22
|
* principalType: "USER",
|
|
23
23
|
* });
|
|
@@ -30,7 +30,7 @@ const utilities = require("../utilities");
|
|
|
30
30
|
* import * as aws from "@pulumi/aws";
|
|
31
31
|
*
|
|
32
32
|
* const example = new aws.ssoadmin.ApplicationAssignment("example", {
|
|
33
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
33
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
34
34
|
* principalId: exampleAwsIdentitystoreGroup.groupId,
|
|
35
35
|
* principalType: "GROUP",
|
|
36
36
|
* });
|
|
@@ -16,7 +16,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
16
16
|
* import * as aws from "@pulumi/aws";
|
|
17
17
|
*
|
|
18
18
|
* const example = new aws.ssoadmin.ApplicationAssignmentConfiguration("example", {
|
|
19
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
19
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
20
20
|
* assignmentRequired: true,
|
|
21
21
|
* });
|
|
22
22
|
* ```
|
|
@@ -22,7 +22,7 @@ const utilities = require("../utilities");
|
|
|
22
22
|
* import * as aws from "@pulumi/aws";
|
|
23
23
|
*
|
|
24
24
|
* const example = new aws.ssoadmin.ApplicationAssignmentConfiguration("example", {
|
|
25
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
25
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
26
26
|
* assignmentRequired: true,
|
|
27
27
|
* });
|
|
28
28
|
* ```
|
|
@@ -12,7 +12,7 @@ import * as outputs from "../types/output";
|
|
|
12
12
|
* import * as aws from "@pulumi/aws";
|
|
13
13
|
*
|
|
14
14
|
* const example = aws.ssoadmin.getApplicationAssignments({
|
|
15
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
15
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
16
16
|
* });
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
@@ -57,7 +57,7 @@ export interface GetApplicationAssignmentsResult {
|
|
|
57
57
|
* import * as aws from "@pulumi/aws";
|
|
58
58
|
*
|
|
59
59
|
* const example = aws.ssoadmin.getApplicationAssignments({
|
|
60
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
60
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
61
61
|
* });
|
|
62
62
|
* ```
|
|
63
63
|
*/
|
|
@@ -17,7 +17,7 @@ const utilities = require("../utilities");
|
|
|
17
17
|
* import * as aws from "@pulumi/aws";
|
|
18
18
|
*
|
|
19
19
|
* const example = aws.ssoadmin.getApplicationAssignments({
|
|
20
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
20
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
21
21
|
* });
|
|
22
22
|
* ```
|
|
23
23
|
*/
|
|
@@ -41,7 +41,7 @@ exports.getApplicationAssignments = getApplicationAssignments;
|
|
|
41
41
|
* import * as aws from "@pulumi/aws";
|
|
42
42
|
*
|
|
43
43
|
* const example = aws.ssoadmin.getApplicationAssignments({
|
|
44
|
-
* applicationArn: exampleAwsSsoadminApplication.
|
|
44
|
+
* applicationArn: exampleAwsSsoadminApplication.arn,
|
|
45
45
|
* });
|
|
46
46
|
* ```
|
|
47
47
|
*/
|
package/types/input.d.ts
CHANGED
|
@@ -2252,6 +2252,42 @@ export declare namespace alb {
|
|
|
2252
2252
|
}
|
|
2253
2253
|
}
|
|
2254
2254
|
export declare namespace amp {
|
|
2255
|
+
interface QueryLoggingConfigurationDestination {
|
|
2256
|
+
/**
|
|
2257
|
+
* Configuration block for CloudWatch Logs destination. See `cloudwatchLogs`.
|
|
2258
|
+
*/
|
|
2259
|
+
cloudwatchLogs?: pulumi.Input<inputs.amp.QueryLoggingConfigurationDestinationCloudwatchLogs>;
|
|
2260
|
+
/**
|
|
2261
|
+
* A list of filter configurations that specify which logs should be sent to the destination. See `filters`.
|
|
2262
|
+
*/
|
|
2263
|
+
filters?: pulumi.Input<inputs.amp.QueryLoggingConfigurationDestinationFilters>;
|
|
2264
|
+
}
|
|
2265
|
+
interface QueryLoggingConfigurationDestinationCloudwatchLogs {
|
|
2266
|
+
/**
|
|
2267
|
+
* The ARN of the CloudWatch log group to which query logs will be sent.
|
|
2268
|
+
*/
|
|
2269
|
+
logGroupArn: pulumi.Input<string>;
|
|
2270
|
+
}
|
|
2271
|
+
interface QueryLoggingConfigurationDestinationFilters {
|
|
2272
|
+
/**
|
|
2273
|
+
* The Query Samples Processed (QSP) threshold above which queries will be logged. Queries processing more samples than this threshold will be captured in logs.
|
|
2274
|
+
*/
|
|
2275
|
+
qspThreshold: pulumi.Input<number>;
|
|
2276
|
+
}
|
|
2277
|
+
interface QueryLoggingConfigurationTimeouts {
|
|
2278
|
+
/**
|
|
2279
|
+
* 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).
|
|
2280
|
+
*/
|
|
2281
|
+
create?: pulumi.Input<string>;
|
|
2282
|
+
/**
|
|
2283
|
+
* 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.
|
|
2284
|
+
*/
|
|
2285
|
+
delete?: pulumi.Input<string>;
|
|
2286
|
+
/**
|
|
2287
|
+
* 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).
|
|
2288
|
+
*/
|
|
2289
|
+
update?: pulumi.Input<string>;
|
|
2290
|
+
}
|
|
2255
2291
|
interface ScraperDestination {
|
|
2256
2292
|
/**
|
|
2257
2293
|
* Configuration block for an Amazon Managed Prometheus workspace destination. See `amp`.
|
|
@@ -21064,6 +21100,10 @@ export declare namespace dynamodb {
|
|
|
21064
21100
|
* ARN of the table
|
|
21065
21101
|
*/
|
|
21066
21102
|
arn?: pulumi.Input<string>;
|
|
21103
|
+
/**
|
|
21104
|
+
* Whether this global table will be using `STRONG` consistency mode or `EVENTUAL` consistency mode. Default value is `EVENTUAL`.
|
|
21105
|
+
*/
|
|
21106
|
+
consistencyMode?: pulumi.Input<string>;
|
|
21067
21107
|
/**
|
|
21068
21108
|
* ARN of the CMK that should be used for the AWS KMS encryption.
|
|
21069
21109
|
* This argument should only be used if the key is different from the default KMS-managed DynamoDB key, `alias/aws/dynamodb`.
|
|
@@ -58632,6 +58672,10 @@ export declare namespace networkmanager {
|
|
|
58632
58672
|
* List of strings containing Autonomous System Numbers (ASNs) to assign to Core Network Edges. By default, the core network automatically assigns an ASN for each Core Network Edge but you can optionally define the ASN in the edge-locations for each Region. The ASN uses an array of integer ranges only from `64512` to `65534` and `4200000000` to `4294967294` expressed as a string like `"64512-65534"`. No other ASN ranges can be used.
|
|
58633
58673
|
*/
|
|
58634
58674
|
asnRanges: string[];
|
|
58675
|
+
/**
|
|
58676
|
+
* Indicates whether DNS resolution is enabled for the core network. The value can be either `true` or `false`. When set to `true`, DNS resolution is enabled for VPCs attached to the core network, allowing resources in different VPCs to resolve each other's domain names. The default is `true`.
|
|
58677
|
+
*/
|
|
58678
|
+
dnsSupport?: boolean;
|
|
58635
58679
|
/**
|
|
58636
58680
|
* A block value of AWS Region locations where you're creating Core Network Edges. Detailed below.
|
|
58637
58681
|
*/
|
|
@@ -58640,6 +58684,10 @@ export declare namespace networkmanager {
|
|
|
58640
58684
|
* The Classless Inter-Domain Routing (CIDR) block range used to create tunnels for AWS Transit Gateway Connect. The format is standard AWS CIDR range (for example, `10.0.1.0/24`). You can optionally define the inside CIDR in the Core Network Edges section per Region. The minimum is a `/24` for IPv4 or `/64` for IPv6. You can provide multiple `/24` subnets or a larger CIDR range. If you define a larger CIDR range, new Core Network Edges will be automatically assigned `/24` and `/64` subnets from the larger CIDR. an Inside CIDR block is required for attaching Connect attachments to a Core Network Edge.
|
|
58641
58685
|
*/
|
|
58642
58686
|
insideCidrBlocks?: string[];
|
|
58687
|
+
/**
|
|
58688
|
+
* — (Optional) Indicates whether security group referencing is enabled for the core network. The value can be either `true` or `false`. When set to `true`, security groups in one VPC can reference security groups in another VPC attached to the core network, enabling more flexible security configurations across your network. The default is `false`.
|
|
58689
|
+
*/
|
|
58690
|
+
securityGroupReferencingSupport?: boolean;
|
|
58643
58691
|
/**
|
|
58644
58692
|
* Indicates whether the core network forwards traffic over multiple equal-cost routes using VPN. The value can be either `true` or `false`. The default is `true`.
|
|
58645
58693
|
*/
|
|
@@ -58650,6 +58698,10 @@ export declare namespace networkmanager {
|
|
|
58650
58698
|
* List of strings containing Autonomous System Numbers (ASNs) to assign to Core Network Edges. By default, the core network automatically assigns an ASN for each Core Network Edge but you can optionally define the ASN in the edge-locations for each Region. The ASN uses an array of integer ranges only from `64512` to `65534` and `4200000000` to `4294967294` expressed as a string like `"64512-65534"`. No other ASN ranges can be used.
|
|
58651
58699
|
*/
|
|
58652
58700
|
asnRanges: pulumi.Input<pulumi.Input<string>[]>;
|
|
58701
|
+
/**
|
|
58702
|
+
* Indicates whether DNS resolution is enabled for the core network. The value can be either `true` or `false`. When set to `true`, DNS resolution is enabled for VPCs attached to the core network, allowing resources in different VPCs to resolve each other's domain names. The default is `true`.
|
|
58703
|
+
*/
|
|
58704
|
+
dnsSupport?: pulumi.Input<boolean>;
|
|
58653
58705
|
/**
|
|
58654
58706
|
* A block value of AWS Region locations where you're creating Core Network Edges. Detailed below.
|
|
58655
58707
|
*/
|
|
@@ -58658,6 +58710,10 @@ export declare namespace networkmanager {
|
|
|
58658
58710
|
* The Classless Inter-Domain Routing (CIDR) block range used to create tunnels for AWS Transit Gateway Connect. The format is standard AWS CIDR range (for example, `10.0.1.0/24`). You can optionally define the inside CIDR in the Core Network Edges section per Region. The minimum is a `/24` for IPv4 or `/64` for IPv6. You can provide multiple `/24` subnets or a larger CIDR range. If you define a larger CIDR range, new Core Network Edges will be automatically assigned `/24` and `/64` subnets from the larger CIDR. an Inside CIDR block is required for attaching Connect attachments to a Core Network Edge.
|
|
58659
58711
|
*/
|
|
58660
58712
|
insideCidrBlocks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
58713
|
+
/**
|
|
58714
|
+
* — (Optional) Indicates whether security group referencing is enabled for the core network. The value can be either `true` or `false`. When set to `true`, security groups in one VPC can reference security groups in another VPC attached to the core network, enabling more flexible security configurations across your network. The default is `false`.
|
|
58715
|
+
*/
|
|
58716
|
+
securityGroupReferencingSupport?: pulumi.Input<boolean>;
|
|
58661
58717
|
/**
|
|
58662
58718
|
* Indicates whether the core network forwards traffic over multiple equal-cost routes using VPN. The value can be either `true` or `false`. The default is `true`.
|
|
58663
58719
|
*/
|
|
@@ -62281,6 +62337,18 @@ export declare namespace ram {
|
|
|
62281
62337
|
}
|
|
62282
62338
|
}
|
|
62283
62339
|
export declare namespace rbin {
|
|
62340
|
+
interface RuleExcludeResourceTag {
|
|
62341
|
+
/**
|
|
62342
|
+
* Tag key.
|
|
62343
|
+
*
|
|
62344
|
+
* The following argument is optional:
|
|
62345
|
+
*/
|
|
62346
|
+
resourceTagKey: pulumi.Input<string>;
|
|
62347
|
+
/**
|
|
62348
|
+
* Tag value.
|
|
62349
|
+
*/
|
|
62350
|
+
resourceTagValue?: pulumi.Input<string>;
|
|
62351
|
+
}
|
|
62284
62352
|
interface RuleLockConfiguration {
|
|
62285
62353
|
/**
|
|
62286
62354
|
* Information about the retention rule unlock delay. See `unlockDelay` below.
|
|
@@ -62289,33 +62357,33 @@ export declare namespace rbin {
|
|
|
62289
62357
|
}
|
|
62290
62358
|
interface RuleLockConfigurationUnlockDelay {
|
|
62291
62359
|
/**
|
|
62292
|
-
*
|
|
62360
|
+
* Unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.
|
|
62293
62361
|
*/
|
|
62294
62362
|
unlockDelayUnit: pulumi.Input<string>;
|
|
62295
62363
|
/**
|
|
62296
|
-
*
|
|
62364
|
+
* Unlock delay period, measured in the unit specified for UnlockDelayUnit.
|
|
62297
62365
|
*/
|
|
62298
62366
|
unlockDelayValue: pulumi.Input<number>;
|
|
62299
62367
|
}
|
|
62300
62368
|
interface RuleResourceTag {
|
|
62301
62369
|
/**
|
|
62302
|
-
*
|
|
62370
|
+
* Tag key.
|
|
62303
62371
|
*
|
|
62304
62372
|
* The following argument is optional:
|
|
62305
62373
|
*/
|
|
62306
62374
|
resourceTagKey: pulumi.Input<string>;
|
|
62307
62375
|
/**
|
|
62308
|
-
*
|
|
62376
|
+
* Tag value.
|
|
62309
62377
|
*/
|
|
62310
62378
|
resourceTagValue?: pulumi.Input<string>;
|
|
62311
62379
|
}
|
|
62312
62380
|
interface RuleRetentionPeriod {
|
|
62313
62381
|
/**
|
|
62314
|
-
*
|
|
62382
|
+
* Unit of time in which the retention period is measured. Currently, only DAYS is supported.
|
|
62315
62383
|
*/
|
|
62316
62384
|
retentionPeriodUnit: pulumi.Input<string>;
|
|
62317
62385
|
/**
|
|
62318
|
-
*
|
|
62386
|
+
* Period value for which the retention rule is to retain resources. The period is measured using the unit specified for RetentionPeriodUnit.
|
|
62319
62387
|
*/
|
|
62320
62388
|
retentionPeriodValue: pulumi.Input<number>;
|
|
62321
62389
|
}
|
|
@@ -81199,6 +81267,9 @@ export declare namespace wafv2 {
|
|
|
81199
81267
|
challenge: pulumi.Input<inputs.wafv2.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallenge>;
|
|
81200
81268
|
}
|
|
81201
81269
|
interface WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallenge {
|
|
81270
|
+
/**
|
|
81271
|
+
* Block for the list of the regular expressions to match against the web request URI, used to identify requests that can't handle a silent browser challenge.
|
|
81272
|
+
*/
|
|
81202
81273
|
exemptUriRegularExpressions?: pulumi.Input<pulumi.Input<inputs.wafv2.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallengeExemptUriRegularExpression>[]>;
|
|
81203
81274
|
/**
|
|
81204
81275
|
* Sensitivity that the rule group rule ChallengeDDoSRequests uses when matching against the DDoS suspicion labeling on a request. Valid values are `LOW`, `MEDIUM` and `HIGH` (Default).
|
|
@@ -81210,6 +81281,9 @@ export declare namespace wafv2 {
|
|
|
81210
81281
|
usageOfAction: pulumi.Input<string>;
|
|
81211
81282
|
}
|
|
81212
81283
|
interface WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallengeExemptUriRegularExpression {
|
|
81284
|
+
/**
|
|
81285
|
+
* Regular expression string.
|
|
81286
|
+
*/
|
|
81213
81287
|
regexString?: pulumi.Input<string>;
|
|
81214
81288
|
}
|
|
81215
81289
|
interface WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAtpRuleSet {
|
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;;;AAsvsBjF,IAAiB,GAAG,CAqhKnB;AArhKD,WAAiB,GAAG;IAgmIhB;;OAEG;IACH,SAAgB,kCAAkC,CAAC,GAAwB;;QACvE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,sCAAkC,qCAKjD,CAAA;IA4CD;;OAEG;IACH,SAAgB,mCAAmC,CAAC,GAAyB;;QACzE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,uCAAmC,sCAKlD,CAAA;AAy3BL,CAAC,EArhKgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAqhKnB;AAojsCD,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"}
|
package/types/output.d.ts
CHANGED
|
@@ -1098,6 +1098,42 @@ export declare namespace alb {
|
|
|
1098
1098
|
}
|
|
1099
1099
|
}
|
|
1100
1100
|
export declare namespace amp {
|
|
1101
|
+
interface QueryLoggingConfigurationDestination {
|
|
1102
|
+
/**
|
|
1103
|
+
* Configuration block for CloudWatch Logs destination. See `cloudwatchLogs`.
|
|
1104
|
+
*/
|
|
1105
|
+
cloudwatchLogs?: outputs.amp.QueryLoggingConfigurationDestinationCloudwatchLogs;
|
|
1106
|
+
/**
|
|
1107
|
+
* A list of filter configurations that specify which logs should be sent to the destination. See `filters`.
|
|
1108
|
+
*/
|
|
1109
|
+
filters?: outputs.amp.QueryLoggingConfigurationDestinationFilters;
|
|
1110
|
+
}
|
|
1111
|
+
interface QueryLoggingConfigurationDestinationCloudwatchLogs {
|
|
1112
|
+
/**
|
|
1113
|
+
* The ARN of the CloudWatch log group to which query logs will be sent.
|
|
1114
|
+
*/
|
|
1115
|
+
logGroupArn: string;
|
|
1116
|
+
}
|
|
1117
|
+
interface QueryLoggingConfigurationDestinationFilters {
|
|
1118
|
+
/**
|
|
1119
|
+
* The Query Samples Processed (QSP) threshold above which queries will be logged. Queries processing more samples than this threshold will be captured in logs.
|
|
1120
|
+
*/
|
|
1121
|
+
qspThreshold: number;
|
|
1122
|
+
}
|
|
1123
|
+
interface QueryLoggingConfigurationTimeouts {
|
|
1124
|
+
/**
|
|
1125
|
+
* 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).
|
|
1126
|
+
*/
|
|
1127
|
+
create?: string;
|
|
1128
|
+
/**
|
|
1129
|
+
* 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.
|
|
1130
|
+
*/
|
|
1131
|
+
delete?: string;
|
|
1132
|
+
/**
|
|
1133
|
+
* 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).
|
|
1134
|
+
*/
|
|
1135
|
+
update?: string;
|
|
1136
|
+
}
|
|
1101
1137
|
interface ScraperDestination {
|
|
1102
1138
|
/**
|
|
1103
1139
|
* Configuration block for an Amazon Managed Prometheus workspace destination. See `amp`.
|
|
@@ -25625,6 +25661,10 @@ export declare namespace dynamodb {
|
|
|
25625
25661
|
* ARN of the table
|
|
25626
25662
|
*/
|
|
25627
25663
|
arn: string;
|
|
25664
|
+
/**
|
|
25665
|
+
* Whether this global table will be using `STRONG` consistency mode or `EVENTUAL` consistency mode. Default value is `EVENTUAL`.
|
|
25666
|
+
*/
|
|
25667
|
+
consistencyMode?: string;
|
|
25628
25668
|
/**
|
|
25629
25669
|
* ARN of the CMK that should be used for the AWS KMS encryption.
|
|
25630
25670
|
* This argument should only be used if the key is different from the default KMS-managed DynamoDB key, `alias/aws/dynamodb`.
|
|
@@ -66317,6 +66357,10 @@ export declare namespace networkmanager {
|
|
|
66317
66357
|
* List of strings containing Autonomous System Numbers (ASNs) to assign to Core Network Edges. By default, the core network automatically assigns an ASN for each Core Network Edge but you can optionally define the ASN in the edge-locations for each Region. The ASN uses an array of integer ranges only from `64512` to `65534` and `4200000000` to `4294967294` expressed as a string like `"64512-65534"`. No other ASN ranges can be used.
|
|
66318
66358
|
*/
|
|
66319
66359
|
asnRanges: string[];
|
|
66360
|
+
/**
|
|
66361
|
+
* Indicates whether DNS resolution is enabled for the core network. The value can be either `true` or `false`. When set to `true`, DNS resolution is enabled for VPCs attached to the core network, allowing resources in different VPCs to resolve each other's domain names. The default is `true`.
|
|
66362
|
+
*/
|
|
66363
|
+
dnsSupport?: boolean;
|
|
66320
66364
|
/**
|
|
66321
66365
|
* A block value of AWS Region locations where you're creating Core Network Edges. Detailed below.
|
|
66322
66366
|
*/
|
|
@@ -66325,6 +66369,10 @@ export declare namespace networkmanager {
|
|
|
66325
66369
|
* The Classless Inter-Domain Routing (CIDR) block range used to create tunnels for AWS Transit Gateway Connect. The format is standard AWS CIDR range (for example, `10.0.1.0/24`). You can optionally define the inside CIDR in the Core Network Edges section per Region. The minimum is a `/24` for IPv4 or `/64` for IPv6. You can provide multiple `/24` subnets or a larger CIDR range. If you define a larger CIDR range, new Core Network Edges will be automatically assigned `/24` and `/64` subnets from the larger CIDR. an Inside CIDR block is required for attaching Connect attachments to a Core Network Edge.
|
|
66326
66370
|
*/
|
|
66327
66371
|
insideCidrBlocks?: string[];
|
|
66372
|
+
/**
|
|
66373
|
+
* — (Optional) Indicates whether security group referencing is enabled for the core network. The value can be either `true` or `false`. When set to `true`, security groups in one VPC can reference security groups in another VPC attached to the core network, enabling more flexible security configurations across your network. The default is `false`.
|
|
66374
|
+
*/
|
|
66375
|
+
securityGroupReferencingSupport?: boolean;
|
|
66328
66376
|
/**
|
|
66329
66377
|
* Indicates whether the core network forwards traffic over multiple equal-cost routes using VPN. The value can be either `true` or `false`. The default is `true`.
|
|
66330
66378
|
*/
|
|
@@ -70551,6 +70599,18 @@ export declare namespace ram {
|
|
|
70551
70599
|
}
|
|
70552
70600
|
}
|
|
70553
70601
|
export declare namespace rbin {
|
|
70602
|
+
interface RuleExcludeResourceTag {
|
|
70603
|
+
/**
|
|
70604
|
+
* Tag key.
|
|
70605
|
+
*
|
|
70606
|
+
* The following argument is optional:
|
|
70607
|
+
*/
|
|
70608
|
+
resourceTagKey: string;
|
|
70609
|
+
/**
|
|
70610
|
+
* Tag value.
|
|
70611
|
+
*/
|
|
70612
|
+
resourceTagValue?: string;
|
|
70613
|
+
}
|
|
70554
70614
|
interface RuleLockConfiguration {
|
|
70555
70615
|
/**
|
|
70556
70616
|
* Information about the retention rule unlock delay. See `unlockDelay` below.
|
|
@@ -70559,33 +70619,33 @@ export declare namespace rbin {
|
|
|
70559
70619
|
}
|
|
70560
70620
|
interface RuleLockConfigurationUnlockDelay {
|
|
70561
70621
|
/**
|
|
70562
|
-
*
|
|
70622
|
+
* Unit of time in which to measure the unlock delay. Currently, the unlock delay can be measure only in days.
|
|
70563
70623
|
*/
|
|
70564
70624
|
unlockDelayUnit: string;
|
|
70565
70625
|
/**
|
|
70566
|
-
*
|
|
70626
|
+
* Unlock delay period, measured in the unit specified for UnlockDelayUnit.
|
|
70567
70627
|
*/
|
|
70568
70628
|
unlockDelayValue: number;
|
|
70569
70629
|
}
|
|
70570
70630
|
interface RuleResourceTag {
|
|
70571
70631
|
/**
|
|
70572
|
-
*
|
|
70632
|
+
* Tag key.
|
|
70573
70633
|
*
|
|
70574
70634
|
* The following argument is optional:
|
|
70575
70635
|
*/
|
|
70576
70636
|
resourceTagKey: string;
|
|
70577
70637
|
/**
|
|
70578
|
-
*
|
|
70638
|
+
* Tag value.
|
|
70579
70639
|
*/
|
|
70580
70640
|
resourceTagValue?: string;
|
|
70581
70641
|
}
|
|
70582
70642
|
interface RuleRetentionPeriod {
|
|
70583
70643
|
/**
|
|
70584
|
-
*
|
|
70644
|
+
* Unit of time in which the retention period is measured. Currently, only DAYS is supported.
|
|
70585
70645
|
*/
|
|
70586
70646
|
retentionPeriodUnit: string;
|
|
70587
70647
|
/**
|
|
70588
|
-
*
|
|
70648
|
+
* Period value for which the retention rule is to retain resources. The period is measured using the unit specified for RetentionPeriodUnit.
|
|
70589
70649
|
*/
|
|
70590
70650
|
retentionPeriodValue: number;
|
|
70591
70651
|
}
|
|
@@ -90504,6 +90564,9 @@ export declare namespace wafv2 {
|
|
|
90504
90564
|
challenge: outputs.wafv2.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallenge;
|
|
90505
90565
|
}
|
|
90506
90566
|
interface WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallenge {
|
|
90567
|
+
/**
|
|
90568
|
+
* Block for the list of the regular expressions to match against the web request URI, used to identify requests that can't handle a silent browser challenge.
|
|
90569
|
+
*/
|
|
90507
90570
|
exemptUriRegularExpressions?: outputs.wafv2.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallengeExemptUriRegularExpression[];
|
|
90508
90571
|
/**
|
|
90509
90572
|
* Sensitivity that the rule group rule ChallengeDDoSRequests uses when matching against the DDoS suspicion labeling on a request. Valid values are `LOW`, `MEDIUM` and `HIGH` (Default).
|
|
@@ -90515,6 +90578,9 @@ export declare namespace wafv2 {
|
|
|
90515
90578
|
usageOfAction: string;
|
|
90516
90579
|
}
|
|
90517
90580
|
interface WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAntiDdosRuleSetClientSideActionConfigChallengeExemptUriRegularExpression {
|
|
90581
|
+
/**
|
|
90582
|
+
* Regular expression string.
|
|
90583
|
+
*/
|
|
90518
90584
|
regexString?: string;
|
|
90519
90585
|
}
|
|
90520
90586
|
interface WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAtpRuleSet {
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA+p2BjF,IAAiB,GAAG,CA0rMnB;AA1rMD,WAAiB,GAAG;IAowKhB;;OAEG;IACH,SAAgB,kCAAkC,CAAC,GAAwB;;QACvE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,sCAAkC,qCAKjD,CAAA;IA4CD;;OAEG;IACH,SAAgB,mCAAmC,CAAC,GAAyB;;QACzE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,uCAAmC,sCAKlD,CAAA;AA03BL,CAAC,EA1rMgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA0rMnB;AAm8xCD,IAAiB,GAAG,CA4cnB;AA5cD,WAAiB,GAAG;IA4XhB;;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;AAwEL,CAAC,EA5cgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA4cnB"}
|