@pulumi/aws 6.69.0-alpha.1739293705 → 6.69.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.
Files changed (80) hide show
  1. package/apigateway/method.d.ts +1 -1
  2. package/apigateway/method.js +1 -1
  3. package/batch/getComputeEnvironment.d.ts +2 -2
  4. package/batch/getComputeEnvironment.js +2 -2
  5. package/batch/getJobQueue.d.ts +2 -2
  6. package/batch/getJobQueue.js +2 -2
  7. package/cloudtrail/trail.d.ts +9 -9
  8. package/cloudtrail/trail.js +6 -6
  9. package/cloudwatch/logResourcePolicy.d.ts +2 -2
  10. package/cloudwatch/logResourcePolicy.js +2 -2
  11. package/controltower/getControls.d.ts +2 -2
  12. package/controltower/getControls.js +2 -2
  13. package/directoryservice/logService.d.ts +1 -1
  14. package/directoryservice/logService.js +1 -1
  15. package/directoryservice/serviceRegion.d.ts +1 -1
  16. package/directoryservice/serviceRegion.js +1 -1
  17. package/ec2/getInternetGateway.d.ts +2 -2
  18. package/ec2/getInternetGateway.js +2 -2
  19. package/ec2/getLaunchTemplate.d.ts +2 -2
  20. package/ec2/getLaunchTemplate.js +2 -2
  21. package/ec2/getNatGateway.d.ts +4 -4
  22. package/ec2/getNatGateway.js +4 -4
  23. package/ec2/getRoute.d.ts +2 -2
  24. package/ec2/getRoute.js +2 -2
  25. package/ec2/getSpotDatafeedSubscription.d.ts +2 -2
  26. package/ec2/getSpotDatafeedSubscription.js +2 -2
  27. package/ec2/instance.d.ts +2 -2
  28. package/ec2/instance.js +2 -2
  29. package/ec2/securityGroup.d.ts +1 -1
  30. package/ec2/securityGroup.js +1 -1
  31. package/ecs/getCluster.d.ts +2 -2
  32. package/ecs/getCluster.js +2 -2
  33. package/ecs/getContainerDefinition.d.ts +2 -2
  34. package/ecs/getContainerDefinition.js +2 -2
  35. package/eks/getAddonVersion.d.ts +2 -2
  36. package/eks/getAddonVersion.js +2 -2
  37. package/fms/policy.d.ts +9 -9
  38. package/glue/resourcePolicy.d.ts +1 -1
  39. package/glue/resourcePolicy.js +1 -1
  40. package/iam/getServerCertificate.d.ts +2 -2
  41. package/iam/getServerCertificate.js +2 -2
  42. package/kinesis/firehoseDeliveryStream.d.ts +1 -1
  43. package/kinesis/firehoseDeliveryStream.js +1 -1
  44. package/lightsail/containerService.d.ts +1 -1
  45. package/lightsail/containerService.js +1 -1
  46. package/package.json +2 -2
  47. package/rds/cluster.d.ts +24 -0
  48. package/rds/cluster.js +4 -0
  49. package/rds/cluster.js.map +1 -1
  50. package/rds/getCluster.d.ts +2 -0
  51. package/rds/getCluster.js.map +1 -1
  52. package/rds/instance.d.ts +3 -3
  53. package/rds/instance.js +3 -3
  54. package/route53/queryLog.d.ts +1 -1
  55. package/route53/queryLog.js +1 -1
  56. package/route53/record.d.ts +23 -0
  57. package/route53/record.js +23 -0
  58. package/route53/record.js.map +1 -1
  59. package/s3/bucketLifecycleConfigurationV2.d.ts +7 -4
  60. package/s3/bucketLifecycleConfigurationV2.js +3 -4
  61. package/s3/bucketLifecycleConfigurationV2.js.map +1 -1
  62. package/secretsmanager/getSecret.d.ts +4 -4
  63. package/secretsmanager/getSecret.js +4 -4
  64. package/secretsmanager/getSecretVersion.d.ts +4 -4
  65. package/secretsmanager/getSecretVersion.js +4 -4
  66. package/sesv2/configurationSetEventDestination.d.ts +1 -1
  67. package/sesv2/configurationSetEventDestination.js +1 -1
  68. package/sns/topicSubscription.d.ts +2 -2
  69. package/sns/topicSubscription.js +2 -2
  70. package/sqs/queue.d.ts +50 -46
  71. package/sqs/queue.js +4 -0
  72. package/sqs/queue.js.map +1 -1
  73. package/sqs/queuePolicy.d.ts +40 -14
  74. package/sqs/queuePolicy.js +37 -2
  75. package/sqs/queuePolicy.js.map +1 -1
  76. package/types/input.d.ts +148 -10
  77. package/types/input.js.map +1 -1
  78. package/types/output.d.ts +157 -19
  79. package/types/output.js.map +1 -1
  80. package/wafv2/webAcl.d.ts +3 -3
@@ -1,11 +1,14 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import { PolicyDocument } from "../iam";
3
3
  /**
4
- * Allows you to set a policy of an SQS Queue
5
- * while referencing ARN of the queue within the policy.
4
+ * Allows you to set a policy of an SQS Queue while referencing the ARN of the queue within the policy.
5
+ *
6
+ * !> AWS will hang indefinitely when creating or updating an `aws.sqs.Queue` with an associated policy if `Version = "2012-10-17"` is not explicitly set in the policy. See below for an example of how to avoid this issue.
6
7
  *
7
8
  * ## Example Usage
8
9
  *
10
+ * ### Basic Usage
11
+ *
9
12
  * ```typescript
10
13
  * import * as pulumi from "@pulumi/pulumi";
11
14
  * import * as aws from "@pulumi/aws";
@@ -34,6 +37,38 @@ import { PolicyDocument } from "../iam";
34
37
  * });
35
38
  * ```
36
39
  *
40
+ * ### Timeout Problems Creating/Updating
41
+ *
42
+ * If `Version = "2012-10-17"` is not explicitly set in the policy, AWS may hang, causing the AWS provider to time out. To avoid this, make sure to include `Version` as shown in the example below.
43
+ *
44
+ * ```typescript
45
+ * import * as pulumi from "@pulumi/pulumi";
46
+ * import * as aws from "@pulumi/aws";
47
+ *
48
+ * const example = new aws.s3.BucketV2("example", {bucket: "brodobaggins"});
49
+ * const exampleQueue = new aws.sqs.Queue("example", {name: "be-giant"});
50
+ * const exampleQueuePolicy = new aws.sqs.QueuePolicy("example", {
51
+ * queueUrl: exampleQueue.id,
52
+ * policy: pulumi.jsonStringify({
53
+ * Version: "2012-10-17",
54
+ * Statement: [{
55
+ * Sid: "Cejuwdam",
56
+ * Effect: "Allow",
57
+ * Principal: {
58
+ * Service: "s3.amazonaws.com",
59
+ * },
60
+ * Action: "SQS:SendMessage",
61
+ * Resource: exampleQueue.arn,
62
+ * Condition: {
63
+ * ArnLike: {
64
+ * "aws:SourceArn": example.arn,
65
+ * },
66
+ * },
67
+ * }],
68
+ * }),
69
+ * });
70
+ * ```
71
+ *
37
72
  * ## Import
38
73
  *
39
74
  * Using `pulumi import`, import SQS Queue Policies using the queue URL. For example:
@@ -58,12 +93,9 @@ export declare class QueuePolicy extends pulumi.CustomResource {
58
93
  * when multiple copies of the Pulumi SDK have been loaded into the same process.
59
94
  */
60
95
  static isInstance(obj: any): obj is QueuePolicy;
61
- /**
62
- * The JSON policy for the SQS queue.
63
- */
64
96
  readonly policy: pulumi.Output<string>;
65
97
  /**
66
- * The URL of the SQS Queue to which to attach the policy
98
+ * URL of the SQS Queue to which to attach the policy.
67
99
  */
68
100
  readonly queueUrl: pulumi.Output<string>;
69
101
  /**
@@ -79,12 +111,9 @@ export declare class QueuePolicy extends pulumi.CustomResource {
79
111
  * Input properties used for looking up and filtering QueuePolicy resources.
80
112
  */
81
113
  export interface QueuePolicyState {
82
- /**
83
- * The JSON policy for the SQS queue.
84
- */
85
114
  policy?: pulumi.Input<string | PolicyDocument>;
86
115
  /**
87
- * The URL of the SQS Queue to which to attach the policy
116
+ * URL of the SQS Queue to which to attach the policy.
88
117
  */
89
118
  queueUrl?: pulumi.Input<string>;
90
119
  }
@@ -92,12 +121,9 @@ export interface QueuePolicyState {
92
121
  * The set of arguments for constructing a QueuePolicy resource.
93
122
  */
94
123
  export interface QueuePolicyArgs {
95
- /**
96
- * The JSON policy for the SQS queue.
97
- */
98
124
  policy: pulumi.Input<string | PolicyDocument>;
99
125
  /**
100
- * The URL of the SQS Queue to which to attach the policy
126
+ * URL of the SQS Queue to which to attach the policy.
101
127
  */
102
128
  queueUrl: pulumi.Input<string>;
103
129
  }
@@ -6,11 +6,14 @@ exports.QueuePolicy = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * Allows you to set a policy of an SQS Queue
10
- * while referencing ARN of the queue within the policy.
9
+ * Allows you to set a policy of an SQS Queue while referencing the ARN of the queue within the policy.
10
+ *
11
+ * !> AWS will hang indefinitely when creating or updating an `aws.sqs.Queue` with an associated policy if `Version = "2012-10-17"` is not explicitly set in the policy. See below for an example of how to avoid this issue.
11
12
  *
12
13
  * ## Example Usage
13
14
  *
15
+ * ### Basic Usage
16
+ *
14
17
  * ```typescript
15
18
  * import * as pulumi from "@pulumi/pulumi";
16
19
  * import * as aws from "@pulumi/aws";
@@ -39,6 +42,38 @@ const utilities = require("../utilities");
39
42
  * });
40
43
  * ```
41
44
  *
45
+ * ### Timeout Problems Creating/Updating
46
+ *
47
+ * If `Version = "2012-10-17"` is not explicitly set in the policy, AWS may hang, causing the AWS provider to time out. To avoid this, make sure to include `Version` as shown in the example below.
48
+ *
49
+ * ```typescript
50
+ * import * as pulumi from "@pulumi/pulumi";
51
+ * import * as aws from "@pulumi/aws";
52
+ *
53
+ * const example = new aws.s3.BucketV2("example", {bucket: "brodobaggins"});
54
+ * const exampleQueue = new aws.sqs.Queue("example", {name: "be-giant"});
55
+ * const exampleQueuePolicy = new aws.sqs.QueuePolicy("example", {
56
+ * queueUrl: exampleQueue.id,
57
+ * policy: pulumi.jsonStringify({
58
+ * Version: "2012-10-17",
59
+ * Statement: [{
60
+ * Sid: "Cejuwdam",
61
+ * Effect: "Allow",
62
+ * Principal: {
63
+ * Service: "s3.amazonaws.com",
64
+ * },
65
+ * Action: "SQS:SendMessage",
66
+ * Resource: exampleQueue.arn,
67
+ * Condition: {
68
+ * ArnLike: {
69
+ * "aws:SourceArn": example.arn,
70
+ * },
71
+ * },
72
+ * }],
73
+ * }),
74
+ * });
75
+ * ```
76
+ *
42
77
  * ## Import
43
78
  *
44
79
  * Using `pulumi import`, import SQS Queue Policies using the queue URL. For example:
@@ -1 +1 @@
1
- {"version":3,"file":"queuePolicy.js","sourceRoot":"","sources":["../../sqs/queuePolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAjEL,kCAkEC;AApDG,gBAAgB;AACO,wBAAY,GAAG,iCAAiC,CAAC"}
1
+ {"version":3,"file":"queuePolicy.js","sourceRoot":"","sources":["../../sqs/queuePolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4EG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAgBD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AA9DL,kCA+DC;AAjDG,gBAAgB;AACO,wBAAY,GAAG,iCAAiC,CAAC"}
package/types/input.d.ts CHANGED
@@ -9069,7 +9069,7 @@ export declare namespace backup {
9069
9069
  */
9070
9070
  key: pulumi.Input<string>;
9071
9071
  /**
9072
- * An operation, such as `StringEquals`, that is applied to a key-value pair used to filter resources in a selection.
9072
+ * An operation, such as `STRINGEQUALS`, that is applied to a key-value pair used to filter resources in a selection.
9073
9073
  */
9074
9074
  type: pulumi.Input<string>;
9075
9075
  /**
@@ -29517,21 +29517,149 @@ export declare namespace fms {
29517
29517
  */
29518
29518
  managedServiceData?: pulumi.Input<string>;
29519
29519
  /**
29520
- * Contains the Network Firewall firewall policy options to configure a centralized deployment model. Documented below.
29520
+ * Contains the Network Firewall firewall policy options to configure a centralized deployment model. See the `policyOption` block.
29521
29521
  */
29522
29522
  policyOption?: pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOption>;
29523
29523
  /**
29524
- * The service that the policy is using to protect the resources. For the current list of supported types, please refer to the [AWS Firewall Manager SecurityServicePolicyData API Type Reference](https://docs.aws.amazon.com/fms/2018-01-01/APIReference/API_SecurityServicePolicyData.html#fms-Type-SecurityServicePolicyData-Type).
29524
+ * An integer value containing ICMP type.
29525
29525
  */
29526
29526
  type: pulumi.Input<string>;
29527
29527
  }
29528
29528
  interface PolicySecurityServicePolicyDataPolicyOption {
29529
29529
  /**
29530
- * Defines the deployment model to use for the firewall policy. Documented below.
29530
+ * Defines NACL rules across accounts in their AWS Organization. See the `networkAclCommonPolicy` block.
29531
+ */
29532
+ networkAclCommonPolicy?: pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicy>;
29533
+ /**
29534
+ * Defines the deployment model to use for the firewall policy. See the `networkFirewallPolicy` block.
29531
29535
  */
29532
29536
  networkFirewallPolicy?: pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkFirewallPolicy>;
29533
29537
  thirdPartyFirewallPolicy?: pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionThirdPartyFirewallPolicy>;
29534
29538
  }
29539
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicy {
29540
+ /**
29541
+ * Defines NACL entries for Network ACL policy. See the `networkAclEntrySet` block.
29542
+ */
29543
+ networkAclEntrySet?: pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySet>;
29544
+ }
29545
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySet {
29546
+ /**
29547
+ * The rules that you want to run first in the Firewall Manager managed network ACLs. Firewall manager creates entries with ID value between 1 and 5000. See the `firstEntry` block.
29548
+ */
29549
+ firstEntries?: pulumi.Input<pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetFirstEntry>[]>;
29550
+ /**
29551
+ * A boolean value, if true Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If false Firewall Manager marks the network ACL as noncompliant and does not try to remediate.
29552
+ */
29553
+ forceRemediateForFirstEntries: pulumi.Input<boolean>;
29554
+ /**
29555
+ * A boolean value, if true Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If false Firewall Manager marks the network ACL as noncompliant and does not try to remediate.
29556
+ */
29557
+ forceRemediateForLastEntries: pulumi.Input<boolean>;
29558
+ /**
29559
+ * The rules that you want to run last in the Firewall Manager managed network ACLs. Firewall manager creates entries with ID value between 32000 and 32766. See the `lastEntry` block.
29560
+ */
29561
+ lastEntries?: pulumi.Input<pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetLastEntry>[]>;
29562
+ }
29563
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetFirstEntry {
29564
+ /**
29565
+ * A string value containing the IPv4 network range to allow or deny, in CIDR notation.
29566
+ */
29567
+ cidrBlock?: pulumi.Input<string>;
29568
+ /**
29569
+ * A boolean value, if true Firewall Manager creates egress rule. If false Firewall Manager creates ingress rule.
29570
+ */
29571
+ egress: pulumi.Input<boolean>;
29572
+ /**
29573
+ * A configuration block for ICMP protocol: The ICMP type and code. See the `icmpTypeCode` block.
29574
+ */
29575
+ icmpTypeCodes?: pulumi.Input<pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetFirstEntryIcmpTypeCode>[]>;
29576
+ /**
29577
+ * A string value containing the IPv6 network range to allow or deny, in CIDR notation.
29578
+ */
29579
+ ipv6CidrBlock?: pulumi.Input<string>;
29580
+ /**
29581
+ * A configuration block for PortRange. See the `portRange` block.
29582
+ */
29583
+ portRanges?: pulumi.Input<pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetFirstEntryPortRange>[]>;
29584
+ /**
29585
+ * The protocol number. A value of "-1" means all protocols.
29586
+ */
29587
+ protocol: pulumi.Input<string>;
29588
+ /**
29589
+ * A string value that indicates whether to allow or deny the traffic that matches the rule. Valid values: `allow`, `deny`.
29590
+ */
29591
+ ruleAction: pulumi.Input<string>;
29592
+ }
29593
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetFirstEntryIcmpTypeCode {
29594
+ /**
29595
+ * An integer value containing ICMP code.
29596
+ */
29597
+ code?: pulumi.Input<number>;
29598
+ /**
29599
+ * An integer value containing ICMP type.
29600
+ */
29601
+ type?: pulumi.Input<number>;
29602
+ }
29603
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetFirstEntryPortRange {
29604
+ /**
29605
+ * The beginning port number of the range.
29606
+ */
29607
+ from?: pulumi.Input<number>;
29608
+ /**
29609
+ * The ending port number of the range.
29610
+ */
29611
+ to?: pulumi.Input<number>;
29612
+ }
29613
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetLastEntry {
29614
+ /**
29615
+ * A string value containing the IPv4 network range to allow or deny, in CIDR notation.
29616
+ */
29617
+ cidrBlock?: pulumi.Input<string>;
29618
+ /**
29619
+ * A boolean value, if true Firewall Manager creates egress rule. If false Firewall Manager creates ingress rule.
29620
+ */
29621
+ egress: pulumi.Input<boolean>;
29622
+ /**
29623
+ * A configuration block for ICMP protocol: The ICMP type and code. See the `icmpTypeCode` block.
29624
+ */
29625
+ icmpTypeCodes?: pulumi.Input<pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetLastEntryIcmpTypeCode>[]>;
29626
+ /**
29627
+ * A string value containing the IPv6 network range to allow or deny, in CIDR notation.
29628
+ */
29629
+ ipv6CidrBlock?: pulumi.Input<string>;
29630
+ /**
29631
+ * A configuration block for PortRange. See the `portRange` block.
29632
+ */
29633
+ portRanges?: pulumi.Input<pulumi.Input<inputs.fms.PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetLastEntryPortRange>[]>;
29634
+ /**
29635
+ * The protocol number. A value of "-1" means all protocols.
29636
+ */
29637
+ protocol: pulumi.Input<string>;
29638
+ /**
29639
+ * A string value that indicates whether to allow or deny the traffic that matches the rule. Valid values: `allow`, `deny`.
29640
+ */
29641
+ ruleAction: pulumi.Input<string>;
29642
+ }
29643
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetLastEntryIcmpTypeCode {
29644
+ /**
29645
+ * An integer value containing ICMP code.
29646
+ */
29647
+ code?: pulumi.Input<number>;
29648
+ /**
29649
+ * An integer value containing ICMP type.
29650
+ */
29651
+ type?: pulumi.Input<number>;
29652
+ }
29653
+ interface PolicySecurityServicePolicyDataPolicyOptionNetworkAclCommonPolicyNetworkAclEntrySetLastEntryPortRange {
29654
+ /**
29655
+ * The beginning port number of the range.
29656
+ */
29657
+ from?: pulumi.Input<number>;
29658
+ /**
29659
+ * The ending port number of the range.
29660
+ */
29661
+ to?: pulumi.Input<number>;
29662
+ }
29535
29663
  interface PolicySecurityServicePolicyDataPolicyOptionNetworkFirewallPolicy {
29536
29664
  /**
29537
29665
  * Defines the deployment model to use for the third-party firewall policy. Valid values are `CENTRALIZED` and `DISTRIBUTED`.
@@ -62381,11 +62509,11 @@ export declare namespace route53 {
62381
62509
  */
62382
62510
  evaluateTargetHealth: pulumi.Input<boolean>;
62383
62511
  /**
62384
- * DNS domain name for a CloudFront distribution, S3 bucket, ELB, or another resource record set in this hosted zone.
62512
+ * DNS domain name for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or another resource record set in this hosted zone.
62385
62513
  */
62386
62514
  name: pulumi.Input<string>;
62387
62515
  /**
62388
- * Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, or Route 53 hosted zone. See `resource_elb.zone_id` for example.
62516
+ * Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See `resource_elb.zone_id` for example.
62389
62517
  */
62390
62518
  zoneId: pulumi.Input<string>;
62391
62519
  }
@@ -63497,11 +63625,11 @@ export declare namespace s3 {
63497
63625
  /**
63498
63626
  * Minimum object size (in bytes) to which the rule applies.
63499
63627
  */
63500
- objectSizeGreaterThan?: pulumi.Input<string>;
63628
+ objectSizeGreaterThan?: pulumi.Input<number>;
63501
63629
  /**
63502
63630
  * Maximum object size (in bytes) to which the rule applies.
63503
63631
  */
63504
- objectSizeLessThan?: pulumi.Input<string>;
63632
+ objectSizeLessThan?: pulumi.Input<number>;
63505
63633
  /**
63506
63634
  * Prefix identifying one or more objects to which the rule applies. Defaults to an empty string (`""`) if not specified.
63507
63635
  */
@@ -63545,7 +63673,7 @@ export declare namespace s3 {
63545
63673
  /**
63546
63674
  * Number of noncurrent versions Amazon S3 will retain. Must be a non-zero positive integer.
63547
63675
  */
63548
- newerNoncurrentVersions?: pulumi.Input<string>;
63676
+ newerNoncurrentVersions?: pulumi.Input<number>;
63549
63677
  /**
63550
63678
  * Number of days an object is noncurrent before Amazon S3 can perform the associated action. Must be a positive integer.
63551
63679
  */
@@ -63555,7 +63683,7 @@ export declare namespace s3 {
63555
63683
  /**
63556
63684
  * Number of noncurrent versions Amazon S3 will retain. Must be a non-zero positive integer.
63557
63685
  */
63558
- newerNoncurrentVersions?: pulumi.Input<string>;
63686
+ newerNoncurrentVersions?: pulumi.Input<number>;
63559
63687
  /**
63560
63688
  * Number of days an object is noncurrent before Amazon S3 can perform the associated action.
63561
63689
  */
@@ -63579,6 +63707,16 @@ export declare namespace s3 {
63579
63707
  */
63580
63708
  storageClass: pulumi.Input<string>;
63581
63709
  }
63710
+ interface BucketLifecycleConfigurationV2Timeouts {
63711
+ /**
63712
+ * 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).
63713
+ */
63714
+ create?: pulumi.Input<string>;
63715
+ /**
63716
+ * 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).
63717
+ */
63718
+ update?: pulumi.Input<string>;
63719
+ }
63582
63720
  interface BucketLifecycleRule {
63583
63721
  /**
63584
63722
  * Specifies the number of days after initiating a multipart upload when the multipart upload must be completed.
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AA6x/DjF,IAAiB,GAAG,CAybnB;AAzbD,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;AAwDL,CAAC,EAzbgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAybnB"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAq6/DjF,IAAiB,GAAG,CAybnB;AAzbD,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;AAwDL,CAAC,EAzbgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAybnB"}