diff --git a/4.x/_gen/data/auditmanager_framework.libsonnet b/4.x/_gen/data/auditmanager_framework.libsonnet new file mode 100644 index 00000000..78c66048 --- /dev/null +++ b/4.x/_gen/data/auditmanager_framework.libsonnet @@ -0,0 +1,82 @@ +local tf = (import 'github.com/tf-libsonnet/core/main.libsonnet'); +local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); +{ + '#':: d.pkg(name='auditmanager_framework', url='', help='`auditmanager_framework` represents the `aws_auditmanager_framework` Terraform data source.\n\n\n\nThis package contains functions and utilities for setting up the data source using Jsonnet code.\n'), + control_sets:: { + controls:: { + '#new':: d.fn(help='\n`aws.auditmanager_framework.control_sets.controls.new` constructs a new object with attributes and blocks configured for the `controls`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `controls` sub block.\n', args=[]), + new( + + ):: std.prune(a={}), + }, + '#new':: d.fn(help='\n`aws.auditmanager_framework.control_sets.new` constructs a new object with attributes and blocks configured for the `control_sets`\nTerraform sub block.\n\n\n\n**Args**:\n - `controls` (`list[obj]`): Set the `controls` field on the resulting object. When `null`, the `controls` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.auditmanager_framework.control_sets.controls.new](#fn-control_setscontrolsnew) constructor.\n\n**Returns**:\n - An attribute object that represents the `control_sets` sub block.\n', args=[]), + new( + controls=null + ):: std.prune(a={ + controls: controls, + }), + }, + '#new':: d.fn(help="\n`aws.data.auditmanager_framework.new` injects a new `data_aws_auditmanager_framework` Terraform `data source`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n aws.data.auditmanager_framework.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.auditmanager_framework` using the reference:\n\n $._ref.data_aws_auditmanager_framework.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_auditmanager_framework.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block.\n - `framework_type` (`string`): Set the `framework_type` field on the resulting data source block.\n - `name` (`string`): Set the `name` field on the resulting data source block.\n - `control_sets` (`list[obj]`): Set the `control_sets` field on the resulting data source block. When `null`, the `control_sets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.data.auditmanager_framework.control_sets.new](#fn-control_setsnew) constructor.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]), + new( + dataSrcLabel, + framework_type, + name, + control_sets=null, + _meta={} + ):: tf.withData( + type='aws_auditmanager_framework', + label=dataSrcLabel, + attrs=self.newAttrs(control_sets=control_sets, framework_type=framework_type, name=name), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.data.auditmanager_framework.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_framework`\nTerraform data source.\n\nUnlike [aws.data.auditmanager_framework.new](#fn-new), this function will not inject the `data source`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `framework_type` (`string`): Set the `framework_type` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `control_sets` (`list[obj]`): Set the `control_sets` field on the resulting object. When `null`, the `control_sets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.data.auditmanager_framework.control_sets.new](#fn-control_setsnew) constructor.\n\n**Returns**:\n - An attribute object that can be used with [tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) to construct a new `auditmanager_framework` data source into the root Terraform configuration.\n', args=[]), + newAttrs( + framework_type, + name, + control_sets=null + ):: std.prune(a={ + control_sets: control_sets, + framework_type: framework_type, + name: name, + }), + '#withControlSets':: d.fn(help='`aws.list[obj].withControlSets` constructs a mixin object that can be merged into the `list[obj]`\nTerraform data source block to set or update the control_sets field.\n\nThis function will replace the array with the passed in `value`. If you wish to instead append the\npassed in value to the existing array, use the [aws.list[obj].withControlSetsMixin](TODO) function.\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `control_sets` field.\n', args=[]), + withControlSets(dataSrcLabel, value): { + data+: { + aws_auditmanager_framework+: { + [dataSrcLabel]+: { + control_sets: value, + }, + }, + }, + }, + '#withControlSetsMixin':: d.fn(help='`aws.list[obj].withControlSetsMixin` constructs a mixin object that can be merged into the `list[obj]`\nTerraform data source block to set or update the control_sets field.\n\nThis function will append the passed in array or object to the existing array. If you wish\nto instead replace the array with the passed in `value`, use the [aws.list[obj].withControlSets](TODO)\nfunction.\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`list[obj]`): The value to set for the `control_sets` field.\n', args=[]), + withControlSetsMixin(dataSrcLabel, value): { + data+: { + aws_auditmanager_framework+: { + [dataSrcLabel]+: { + control_sets+: if std.isArray(v=value) then value else [value], + }, + }, + }, + }, + '#withFrameworkType':: d.fn(help='`aws.string.withFrameworkType` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the framework_type field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `framework_type` field.\n', args=[]), + withFrameworkType(dataSrcLabel, value): { + data+: { + aws_auditmanager_framework+: { + [dataSrcLabel]+: { + framework_type: value, + }, + }, + }, + }, + '#withName':: d.fn(help='`aws.string.withName` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the name field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `name` field.\n', args=[]), + withName(dataSrcLabel, value): { + data+: { + aws_auditmanager_framework+: { + [dataSrcLabel]+: { + name: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/data/main.libsonnet b/4.x/_gen/data/main.libsonnet index 5e16e4ff..e7eeb7ae 100644 --- a/4.x/_gen/data/main.libsonnet +++ b/4.x/_gen/data/main.libsonnet @@ -27,6 +27,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); appmesh_virtual_service: (import 'appmesh_virtual_service.libsonnet'), arn: (import 'arn.libsonnet'), auditmanager_control: (import 'auditmanager_control.libsonnet'), + auditmanager_framework: (import 'auditmanager_framework.libsonnet'), autoscaling_group: (import 'autoscaling_group.libsonnet'), autoscaling_groups: (import 'autoscaling_groups.libsonnet'), availability_zone: (import 'availability_zone.libsonnet'), diff --git a/4.x/_gen/main.libsonnet b/4.x/_gen/main.libsonnet index 54096142..26c0aa9d 100644 --- a/4.x/_gen/main.libsonnet +++ b/4.x/_gen/main.libsonnet @@ -115,9 +115,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); athena_workgroup: (import 'resources/athena_workgroup.libsonnet'), auditmanager_account_registration: (import 'resources/auditmanager_account_registration.libsonnet'), auditmanager_assessment: (import 'resources/auditmanager_assessment.libsonnet'), + auditmanager_assessment_delegation: (import 'resources/auditmanager_assessment_delegation.libsonnet'), auditmanager_assessment_report: (import 'resources/auditmanager_assessment_report.libsonnet'), auditmanager_control: (import 'resources/auditmanager_control.libsonnet'), auditmanager_framework: (import 'resources/auditmanager_framework.libsonnet'), + auditmanager_framework_share: (import 'resources/auditmanager_framework_share.libsonnet'), + auditmanager_organization_admin_account_registration: (import 'resources/auditmanager_organization_admin_account_registration.libsonnet'), autoscaling_attachment: (import 'resources/autoscaling_attachment.libsonnet'), autoscaling_group: (import 'resources/autoscaling_group.libsonnet'), autoscaling_group_tag: (import 'resources/autoscaling_group_tag.libsonnet'), diff --git a/4.x/_gen/resources/auditmanager_assessment_delegation.libsonnet b/4.x/_gen/resources/auditmanager_assessment_delegation.libsonnet new file mode 100644 index 00000000..ec6e1c28 --- /dev/null +++ b/4.x/_gen/resources/auditmanager_assessment_delegation.libsonnet @@ -0,0 +1,90 @@ +local tf = (import 'github.com/tf-libsonnet/core/main.libsonnet'); +local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); +{ + '#':: d.pkg(name='auditmanager_assessment_delegation', url='', help='`auditmanager_assessment_delegation` represents the `aws_auditmanager_assessment_delegation` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), + '#new':: d.fn(help="\n`aws.auditmanager_assessment_delegation.new` injects a new `aws_auditmanager_assessment_delegation` Terraform `resource`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n aws.auditmanager_assessment_delegation.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.auditmanager_assessment_delegation` using the reference:\n\n $._ref.aws_auditmanager_assessment_delegation.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_auditmanager_assessment_delegation.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block.\n - `assessment_id` (`string`): Set the `assessment_id` field on the resulting resource block.\n - `comment` (`string`): Set the `comment` field on the resulting resource block. When `null`, the `comment` field will be omitted from the resulting object.\n - `control_set_id` (`string`): Set the `control_set_id` field on the resulting resource block.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting resource block.\n - `role_type` (`string`): Set the `role_type` field on the resulting resource block.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), + new( + resourceLabel, + assessment_id, + control_set_id, + role_arn, + role_type, + comment=null, + _meta={} + ):: tf.withResource( + type='aws_auditmanager_assessment_delegation', + label=resourceLabel, + attrs=self.newAttrs( + assessment_id=assessment_id, + comment=comment, + control_set_id=control_set_id, + role_arn=role_arn, + role_type=role_type + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.auditmanager_assessment_delegation.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_assessment_delegation`\nTerraform resource.\n\nUnlike [aws.auditmanager_assessment_delegation.new](#fn-new), this function will not inject the `resource`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `assessment_id` (`string`): Set the `assessment_id` field on the resulting object.\n - `comment` (`string`): Set the `comment` field on the resulting object. When `null`, the `comment` field will be omitted from the resulting object.\n - `control_set_id` (`string`): Set the `control_set_id` field on the resulting object.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting object.\n - `role_type` (`string`): Set the `role_type` field on the resulting object.\n\n**Returns**:\n - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `auditmanager_assessment_delegation` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + assessment_id, + control_set_id, + role_arn, + role_type, + comment=null + ):: std.prune(a={ + assessment_id: assessment_id, + comment: comment, + control_set_id: control_set_id, + role_arn: role_arn, + role_type: role_type, + }), + '#withAssessmentId':: d.fn(help='`aws.string.withAssessmentId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the assessment_id field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `assessment_id` field.\n', args=[]), + withAssessmentId(resourceLabel, value): { + resource+: { + aws_auditmanager_assessment_delegation+: { + [resourceLabel]+: { + assessment_id: value, + }, + }, + }, + }, + '#withComment':: d.fn(help='`aws.string.withComment` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the comment field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `comment` field.\n', args=[]), + withComment(resourceLabel, value): { + resource+: { + aws_auditmanager_assessment_delegation+: { + [resourceLabel]+: { + comment: value, + }, + }, + }, + }, + '#withControlSetId':: d.fn(help='`aws.string.withControlSetId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the control_set_id field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `control_set_id` field.\n', args=[]), + withControlSetId(resourceLabel, value): { + resource+: { + aws_auditmanager_assessment_delegation+: { + [resourceLabel]+: { + control_set_id: value, + }, + }, + }, + }, + '#withRoleArn':: d.fn(help='`aws.string.withRoleArn` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the role_arn field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `role_arn` field.\n', args=[]), + withRoleArn(resourceLabel, value): { + resource+: { + aws_auditmanager_assessment_delegation+: { + [resourceLabel]+: { + role_arn: value, + }, + }, + }, + }, + '#withRoleType':: d.fn(help='`aws.string.withRoleType` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the role_type field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `role_type` field.\n', args=[]), + withRoleType(resourceLabel, value): { + resource+: { + aws_auditmanager_assessment_delegation+: { + [resourceLabel]+: { + role_type: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/resources/auditmanager_framework_share.libsonnet b/4.x/_gen/resources/auditmanager_framework_share.libsonnet new file mode 100644 index 00000000..3f105c00 --- /dev/null +++ b/4.x/_gen/resources/auditmanager_framework_share.libsonnet @@ -0,0 +1,76 @@ +local tf = (import 'github.com/tf-libsonnet/core/main.libsonnet'); +local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); +{ + '#':: d.pkg(name='auditmanager_framework_share', url='', help='`auditmanager_framework_share` represents the `aws_auditmanager_framework_share` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), + '#new':: d.fn(help="\n`aws.auditmanager_framework_share.new` injects a new `aws_auditmanager_framework_share` Terraform `resource`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n aws.auditmanager_framework_share.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.auditmanager_framework_share` using the reference:\n\n $._ref.aws_auditmanager_framework_share.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_auditmanager_framework_share.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block.\n - `comment` (`string`): Set the `comment` field on the resulting resource block. When `null`, the `comment` field will be omitted from the resulting object.\n - `destination_account` (`string`): Set the `destination_account` field on the resulting resource block.\n - `destination_region` (`string`): Set the `destination_region` field on the resulting resource block.\n - `framework_id` (`string`): Set the `framework_id` field on the resulting resource block.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), + new( + resourceLabel, + destination_account, + destination_region, + framework_id, + comment=null, + _meta={} + ):: tf.withResource( + type='aws_auditmanager_framework_share', + label=resourceLabel, + attrs=self.newAttrs( + comment=comment, + destination_account=destination_account, + destination_region=destination_region, + framework_id=framework_id + ), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.auditmanager_framework_share.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_framework_share`\nTerraform resource.\n\nUnlike [aws.auditmanager_framework_share.new](#fn-new), this function will not inject the `resource`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `comment` (`string`): Set the `comment` field on the resulting object. When `null`, the `comment` field will be omitted from the resulting object.\n - `destination_account` (`string`): Set the `destination_account` field on the resulting object.\n - `destination_region` (`string`): Set the `destination_region` field on the resulting object.\n - `framework_id` (`string`): Set the `framework_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `auditmanager_framework_share` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + destination_account, + destination_region, + framework_id, + comment=null + ):: std.prune(a={ + comment: comment, + destination_account: destination_account, + destination_region: destination_region, + framework_id: framework_id, + }), + '#withComment':: d.fn(help='`aws.string.withComment` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the comment field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `comment` field.\n', args=[]), + withComment(resourceLabel, value): { + resource+: { + aws_auditmanager_framework_share+: { + [resourceLabel]+: { + comment: value, + }, + }, + }, + }, + '#withDestinationAccount':: d.fn(help='`aws.string.withDestinationAccount` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the destination_account field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `destination_account` field.\n', args=[]), + withDestinationAccount(resourceLabel, value): { + resource+: { + aws_auditmanager_framework_share+: { + [resourceLabel]+: { + destination_account: value, + }, + }, + }, + }, + '#withDestinationRegion':: d.fn(help='`aws.string.withDestinationRegion` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the destination_region field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `destination_region` field.\n', args=[]), + withDestinationRegion(resourceLabel, value): { + resource+: { + aws_auditmanager_framework_share+: { + [resourceLabel]+: { + destination_region: value, + }, + }, + }, + }, + '#withFrameworkId':: d.fn(help='`aws.string.withFrameworkId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the framework_id field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `framework_id` field.\n', args=[]), + withFrameworkId(resourceLabel, value): { + resource+: { + aws_auditmanager_framework_share+: { + [resourceLabel]+: { + framework_id: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/resources/auditmanager_organization_admin_account_registration.libsonnet b/4.x/_gen/resources/auditmanager_organization_admin_account_registration.libsonnet new file mode 100644 index 00000000..0d6d1c53 --- /dev/null +++ b/4.x/_gen/resources/auditmanager_organization_admin_account_registration.libsonnet @@ -0,0 +1,32 @@ +local tf = (import 'github.com/tf-libsonnet/core/main.libsonnet'); +local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); +{ + '#':: d.pkg(name='auditmanager_organization_admin_account_registration', url='', help='`auditmanager_organization_admin_account_registration` represents the `aws_auditmanager_organization_admin_account_registration` Terraform resource.\n\n\n\nThis package contains functions and utilities for setting up the resource using Jsonnet code.\n'), + '#new':: d.fn(help="\n`aws.auditmanager_organization_admin_account_registration.new` injects a new `aws_auditmanager_organization_admin_account_registration` Terraform `resource`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n aws.auditmanager_organization_admin_account_registration.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.auditmanager_organization_admin_account_registration` using the reference:\n\n $._ref.aws_auditmanager_organization_admin_account_registration.some_id.get('id')\n\nThis is the same as directly entering `\"${ aws_auditmanager_organization_admin_account_registration.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block.\n - `admin_account_id` (`string`): Set the `admin_account_id` field on the resulting resource block.\n\n**Returns**:\n- A mixin object that injects the new resource into the root Terraform configuration.\n", args=[]), + new( + resourceLabel, + admin_account_id, + _meta={} + ):: tf.withResource( + type='aws_auditmanager_organization_admin_account_registration', + label=resourceLabel, + attrs=self.newAttrs(admin_account_id=admin_account_id), + _meta=_meta + ), + '#newAttrs':: d.fn(help='\n`aws.auditmanager_organization_admin_account_registration.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_organization_admin_account_registration`\nTerraform resource.\n\nUnlike [aws.auditmanager_organization_admin_account_registration.new](#fn-new), this function will not inject the `resource`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `admin_account_id` (`string`): Set the `admin_account_id` field on the resulting object.\n\n**Returns**:\n - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `auditmanager_organization_admin_account_registration` resource into the root Terraform configuration.\n', args=[]), + newAttrs( + admin_account_id + ):: std.prune(a={ + admin_account_id: admin_account_id, + }), + '#withAdminAccountId':: d.fn(help='`aws.string.withAdminAccountId` constructs a mixin object that can be merged into the `string`\nTerraform resource block to set or update the admin_account_id field.\n\n\n\n**Args**:\n - `resourceLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `admin_account_id` field.\n', args=[]), + withAdminAccountId(resourceLabel, value): { + resource+: { + aws_auditmanager_organization_admin_account_registration+: { + [resourceLabel]+: { + admin_account_id: value, + }, + }, + }, + }, +} diff --git a/4.x/_gen/resources/medialive_channel.libsonnet b/4.x/_gen/resources/medialive_channel.libsonnet index 5fefd660..6d2e13e2 100644 --- a/4.x/_gen/resources/medialive_channel.libsonnet +++ b/4.x/_gen/resources/medialive_channel.libsonnet @@ -112,12 +112,13 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); }, codec_settings:: { aac_settings:: { - '#new':: d.fn(help='\n`aws.medialive_channel.encoder_settings.audio_descriptions.codec_settings.aac_settings.new` constructs a new object with attributes and blocks configured for the `aac_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `bitrate` (`number`): Set the `bitrate` field on the resulting object. When `null`, the `bitrate` field will be omitted from the resulting object.\n - `coding_mode` (`string`): Set the `coding_mode` field on the resulting object. When `null`, the `coding_mode` field will be omitted from the resulting object.\n - `input_type` (`string`): Set the `input_type` field on the resulting object. When `null`, the `input_type` field will be omitted from the resulting object.\n - `profile` (`string`): Set the `profile` field on the resulting object. When `null`, the `profile` field will be omitted from the resulting object.\n - `raw_format` (`string`): Set the `raw_format` field on the resulting object. When `null`, the `raw_format` field will be omitted from the resulting object.\n - `sample_rate` (`number`): Set the `sample_rate` field on the resulting object. When `null`, the `sample_rate` field will be omitted from the resulting object.\n - `spec` (`string`): Set the `spec` field on the resulting object. When `null`, the `spec` field will be omitted from the resulting object.\n - `vbr_quality` (`string`): Set the `vbr_quality` field on the resulting object. When `null`, the `vbr_quality` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `aac_settings` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.medialive_channel.encoder_settings.audio_descriptions.codec_settings.aac_settings.new` constructs a new object with attributes and blocks configured for the `aac_settings`\nTerraform sub block.\n\n\n\n**Args**:\n - `bitrate` (`number`): Set the `bitrate` field on the resulting object. When `null`, the `bitrate` field will be omitted from the resulting object.\n - `coding_mode` (`string`): Set the `coding_mode` field on the resulting object. When `null`, the `coding_mode` field will be omitted from the resulting object.\n - `input_type` (`string`): Set the `input_type` field on the resulting object. When `null`, the `input_type` field will be omitted from the resulting object.\n - `profile` (`string`): Set the `profile` field on the resulting object. When `null`, the `profile` field will be omitted from the resulting object.\n - `rate_control_mode` (`string`): Set the `rate_control_mode` field on the resulting object. When `null`, the `rate_control_mode` field will be omitted from the resulting object.\n - `raw_format` (`string`): Set the `raw_format` field on the resulting object. When `null`, the `raw_format` field will be omitted from the resulting object.\n - `sample_rate` (`number`): Set the `sample_rate` field on the resulting object. When `null`, the `sample_rate` field will be omitted from the resulting object.\n - `spec` (`string`): Set the `spec` field on the resulting object. When `null`, the `spec` field will be omitted from the resulting object.\n - `vbr_quality` (`string`): Set the `vbr_quality` field on the resulting object. When `null`, the `vbr_quality` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `aac_settings` sub block.\n', args=[]), new( bitrate=null, coding_mode=null, input_type=null, profile=null, + rate_control_mode=null, raw_format=null, sample_rate=null, spec=null, @@ -127,6 +128,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); coding_mode: coding_mode, input_type: input_type, profile: profile, + rate_control_mode: rate_control_mode, raw_format: raw_format, sample_rate: sample_rate, spec: spec, diff --git a/4.x/_gen/resources/wafv2_rule_group.libsonnet b/4.x/_gen/resources/wafv2_rule_group.libsonnet index 763b4bee..23e877e7 100644 --- a/4.x/_gen/resources/wafv2_rule_group.libsonnet +++ b/4.x/_gen/resources/wafv2_rule_group.libsonnet @@ -246,10 +246,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -506,10 +508,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -690,10 +694,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -874,10 +880,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1060,10 +1068,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1242,10 +1252,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1426,10 +1438,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1700,10 +1714,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1960,10 +1976,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2144,10 +2162,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2328,10 +2348,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2514,10 +2536,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2696,10 +2720,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2888,10 +2914,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3148,10 +3176,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3332,10 +3362,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3516,10 +3548,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3702,10 +3736,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3884,10 +3920,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4068,10 +4106,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4252,10 +4292,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4436,10 +4478,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4622,10 +4666,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4804,10 +4850,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4988,10 +5036,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5270,10 +5320,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5530,10 +5582,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5714,10 +5768,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5898,10 +5954,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6084,10 +6142,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6266,10 +6326,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6450,10 +6512,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6724,10 +6788,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6984,10 +7050,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7168,10 +7236,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7352,10 +7422,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7538,10 +7610,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7720,10 +7794,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7912,10 +7988,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8172,10 +8250,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8356,10 +8436,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8540,10 +8622,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8726,10 +8810,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8908,10 +8994,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9092,10 +9180,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9276,10 +9366,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9460,10 +9552,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9646,10 +9740,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9828,10 +9924,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10028,10 +10126,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10288,10 +10388,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10472,10 +10574,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10656,10 +10760,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10842,10 +10948,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11024,10 +11132,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11208,10 +11318,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11482,10 +11594,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11742,10 +11856,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11926,10 +12042,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12110,10 +12228,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12296,10 +12416,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12478,10 +12600,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12670,10 +12794,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12930,10 +13056,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13114,10 +13242,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13298,10 +13428,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13484,10 +13616,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13666,10 +13800,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13850,10 +13986,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14034,10 +14172,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14218,10 +14358,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14404,10 +14546,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14586,10 +14730,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14770,10 +14916,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14954,10 +15102,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15138,10 +15288,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15324,10 +15476,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15506,10 +15660,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15690,10 +15846,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15982,10 +16140,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16242,10 +16402,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16426,10 +16588,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16610,10 +16774,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16796,10 +16962,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16978,10 +17146,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17162,10 +17332,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17436,10 +17608,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17696,10 +17870,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17880,10 +18056,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18064,10 +18242,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18250,10 +18430,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18432,10 +18614,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18624,10 +18808,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18884,10 +19070,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19068,10 +19256,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19252,10 +19442,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19438,10 +19630,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19620,10 +19814,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19804,10 +20000,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19988,10 +20186,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20172,10 +20372,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20358,10 +20560,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20540,10 +20744,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20724,10 +20930,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21006,10 +21214,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21266,10 +21476,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21450,10 +21662,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21634,10 +21848,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21820,10 +22036,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22002,10 +22220,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22186,10 +22406,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22460,10 +22682,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22720,10 +22944,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22904,10 +23130,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23088,10 +23316,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23274,10 +23504,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23456,10 +23688,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23648,10 +23882,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23908,10 +24144,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24092,10 +24330,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24276,10 +24516,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24462,10 +24704,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24644,10 +24888,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24828,10 +25074,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25012,10 +25260,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25196,10 +25446,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25382,10 +25634,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25564,10 +25818,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25764,10 +26020,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26024,10 +26282,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26208,10 +26468,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26392,10 +26654,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26578,10 +26842,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26760,10 +27026,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26944,10 +27212,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27218,10 +27488,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27478,10 +27750,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27662,10 +27936,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27846,10 +28122,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28032,10 +28310,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28214,10 +28494,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28406,10 +28688,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28666,10 +28950,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28850,10 +29136,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29034,10 +29322,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29220,10 +29510,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29402,10 +29694,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29586,10 +29880,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29770,10 +30066,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29954,10 +30252,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30140,10 +30440,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30322,10 +30624,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30506,10 +30810,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30690,10 +30996,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30874,10 +31182,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31060,10 +31370,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31242,10 +31554,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31450,10 +31764,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31710,10 +32026,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31894,10 +32212,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32078,10 +32398,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32264,10 +32586,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32446,10 +32770,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32630,10 +32956,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32904,10 +33232,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33164,10 +33494,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33348,10 +33680,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33532,10 +33866,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33718,10 +34054,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33900,10 +34238,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34092,10 +34432,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34352,10 +34694,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34536,10 +34880,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34720,10 +35066,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34906,10 +35254,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35088,10 +35438,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35272,10 +35624,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35456,10 +35810,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35640,10 +35996,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35826,10 +36184,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36008,10 +36368,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36192,10 +36554,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36474,10 +36838,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36734,10 +37100,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36918,10 +37286,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37102,10 +37472,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37288,10 +37660,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37470,10 +37844,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37654,10 +38030,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37928,10 +38306,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38188,10 +38568,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38372,10 +38754,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38556,10 +38940,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38742,10 +39128,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38924,10 +39312,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39116,10 +39506,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39376,10 +39768,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39560,10 +39954,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39744,10 +40140,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39930,10 +40328,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40112,10 +40512,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40296,10 +40698,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40480,10 +40884,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40664,10 +41070,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40850,10 +41258,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41032,10 +41442,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41232,10 +41644,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41492,10 +41906,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41676,10 +42092,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41860,10 +42278,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42046,10 +42466,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42228,10 +42650,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42412,10 +42836,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42686,10 +43112,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42946,10 +43374,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43130,10 +43560,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43314,10 +43746,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43500,10 +43934,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43682,10 +44118,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43874,10 +44312,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44134,10 +44574,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44318,10 +44760,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44502,10 +44946,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44688,10 +45134,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44870,10 +45318,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45054,10 +45504,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45238,10 +45690,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45422,10 +45876,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45608,10 +46064,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45790,10 +46248,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45974,10 +46434,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46158,10 +46620,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46342,10 +46806,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46528,10 +46994,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46710,10 +47178,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46934,10 +47404,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47194,10 +47666,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47378,10 +47852,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47562,10 +48038,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47748,10 +48226,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47930,10 +48410,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48114,10 +48596,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48388,10 +48872,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48648,10 +49134,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48832,10 +49320,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49016,10 +49506,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49202,10 +49694,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49384,10 +49878,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49576,10 +50072,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49836,10 +50334,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50020,10 +50520,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50204,10 +50706,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50390,10 +50894,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50572,10 +51078,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50756,10 +51264,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50940,10 +51450,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51124,10 +51636,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51310,10 +51824,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51492,10 +52008,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51676,10 +52194,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51958,10 +52478,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52218,10 +52740,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52402,10 +52926,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52586,10 +53112,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52772,10 +53300,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52954,10 +53484,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53138,10 +53670,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53412,10 +53946,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53672,10 +54208,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53856,10 +54394,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54040,10 +54580,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54226,10 +54768,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54408,10 +54952,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54600,10 +55146,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54860,10 +55408,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55044,10 +55594,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55228,10 +55780,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55414,10 +55968,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55596,10 +56152,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55780,10 +56338,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55964,10 +56524,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56148,10 +56710,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56334,10 +56898,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56516,10 +57082,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56716,10 +57284,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56976,10 +57546,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57160,10 +57732,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57344,10 +57918,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57530,10 +58106,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57712,10 +58290,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57896,10 +58476,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58170,10 +58752,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58430,10 +59014,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58614,10 +59200,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58798,10 +59386,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58984,10 +59574,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59166,10 +59758,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59358,10 +59952,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59618,10 +60214,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59802,10 +60400,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59986,10 +60586,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60172,10 +60774,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60354,10 +60958,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60538,10 +61144,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60722,10 +61330,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60906,10 +61516,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61092,10 +61704,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61274,10 +61888,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61458,10 +62074,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61642,10 +62260,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61826,10 +62446,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62012,10 +62634,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62194,10 +62818,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.rate_based_statement.scope_down_statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62378,10 +63004,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62562,10 +63190,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62746,10 +63376,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62932,10 +63564,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -63114,10 +63748,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_rule_group.rule.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { diff --git a/4.x/_gen/resources/wafv2_web_acl.libsonnet b/4.x/_gen/resources/wafv2_web_acl.libsonnet index 1cd9a3c7..f06baff2 100644 --- a/4.x/_gen/resources/wafv2_web_acl.libsonnet +++ b/4.x/_gen/resources/wafv2_web_acl.libsonnet @@ -364,10 +364,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -624,10 +626,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -808,10 +812,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -992,10 +998,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1178,10 +1186,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1360,10 +1370,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1544,10 +1556,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -1818,10 +1832,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2078,10 +2094,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2262,10 +2280,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2446,10 +2466,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2632,10 +2654,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -2814,10 +2838,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3006,10 +3032,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3266,10 +3294,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3450,10 +3480,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3634,10 +3666,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -3820,10 +3854,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4002,10 +4038,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4186,10 +4224,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4370,10 +4410,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4554,10 +4596,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4740,10 +4784,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -4922,10 +4968,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5106,10 +5154,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5388,10 +5438,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5648,10 +5700,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -5832,10 +5886,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6016,10 +6072,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6202,10 +6260,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6384,10 +6444,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6568,10 +6630,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -6842,10 +6906,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7102,10 +7168,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7286,10 +7354,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7470,10 +7540,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7656,10 +7728,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -7838,10 +7912,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8030,10 +8106,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8290,10 +8368,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8474,10 +8554,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8658,10 +8740,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -8844,10 +8928,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9026,10 +9112,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9210,10 +9298,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9394,10 +9484,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9578,10 +9670,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9764,10 +9858,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -9946,10 +10042,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10146,10 +10244,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10406,10 +10506,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10590,10 +10692,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10774,10 +10878,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -10960,10 +11066,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11142,10 +11250,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11326,10 +11436,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11600,10 +11712,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -11860,10 +11974,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12044,10 +12160,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12228,10 +12346,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12414,10 +12534,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12596,10 +12718,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -12788,10 +12912,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13048,10 +13174,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13232,10 +13360,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13416,10 +13546,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13602,10 +13734,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13784,10 +13918,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -13968,10 +14104,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14152,10 +14290,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14336,10 +14476,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14522,10 +14664,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14704,10 +14848,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -14888,10 +15034,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15072,10 +15220,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15256,10 +15406,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15442,10 +15594,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15624,10 +15778,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -15808,10 +15964,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16262,10 +16420,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16522,10 +16682,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16706,10 +16868,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -16890,10 +17054,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17076,10 +17242,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17258,10 +17426,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17442,10 +17612,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17716,10 +17888,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -17976,10 +18150,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18160,10 +18336,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18344,10 +18522,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18530,10 +18710,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18712,10 +18894,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -18904,10 +19088,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19164,10 +19350,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19348,10 +19536,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19532,10 +19722,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19718,10 +19910,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -19900,10 +20094,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20084,10 +20280,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20268,10 +20466,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20452,10 +20652,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20638,10 +20840,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -20820,10 +21024,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21004,10 +21210,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21286,10 +21494,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21546,10 +21756,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21730,10 +21942,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -21914,10 +22128,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22100,10 +22316,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22282,10 +22500,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22466,10 +22686,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -22740,10 +22962,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23000,10 +23224,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23184,10 +23410,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23368,10 +23596,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23554,10 +23784,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23736,10 +23968,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -23928,10 +24162,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24188,10 +24424,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24372,10 +24610,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24556,10 +24796,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24742,10 +24984,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -24924,10 +25168,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25108,10 +25354,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25292,10 +25540,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25476,10 +25726,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25662,10 +25914,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -25844,10 +26098,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26044,10 +26300,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26304,10 +26562,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26488,10 +26748,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26672,10 +26934,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -26858,10 +27122,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27040,10 +27306,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27224,10 +27492,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27498,10 +27768,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27758,10 +28030,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -27942,10 +28216,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28126,10 +28402,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28312,10 +28590,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28494,10 +28774,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28686,10 +28968,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -28946,10 +29230,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29130,10 +29416,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29314,10 +29602,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29500,10 +29790,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29682,10 +29974,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -29866,10 +30160,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30050,10 +30346,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30234,10 +30532,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30420,10 +30720,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30602,10 +30904,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30786,10 +31090,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -30970,10 +31276,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31154,10 +31462,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31340,10 +31650,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31522,10 +31834,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.managed_rule_group_statement.scope_down_statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -31764,10 +32078,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32024,10 +32340,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32208,10 +32526,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32392,10 +32712,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32578,10 +32900,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32760,10 +33084,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -32944,10 +33270,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33218,10 +33546,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33478,10 +33808,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33662,10 +33994,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -33846,10 +34180,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34032,10 +34368,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34214,10 +34552,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34406,10 +34746,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34666,10 +35008,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -34850,10 +35194,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35034,10 +35380,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35220,10 +35568,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35402,10 +35752,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35586,10 +35938,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35770,10 +36124,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -35954,10 +36310,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36140,10 +36498,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36322,10 +36682,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36506,10 +36868,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -36788,10 +37152,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37048,10 +37414,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37232,10 +37600,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37416,10 +37786,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37602,10 +37974,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37784,10 +38158,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -37968,10 +38344,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38242,10 +38620,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38502,10 +38882,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38686,10 +39068,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -38870,10 +39254,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39056,10 +39442,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39238,10 +39626,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39430,10 +39820,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39690,10 +40082,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -39874,10 +40268,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40058,10 +40454,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40244,10 +40642,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40426,10 +40826,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40610,10 +41012,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40794,10 +41198,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -40978,10 +41384,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41164,10 +41572,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41346,10 +41756,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41546,10 +41958,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41806,10 +42220,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -41990,10 +42406,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42174,10 +42592,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42360,10 +42780,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42542,10 +42964,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -42726,10 +43150,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43000,10 +43426,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43260,10 +43688,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43444,10 +43874,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43628,10 +44060,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43814,10 +44248,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -43996,10 +44432,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44188,10 +44626,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44448,10 +44888,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44632,10 +45074,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -44816,10 +45260,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45002,10 +45448,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45184,10 +45632,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45368,10 +45818,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45552,10 +46004,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45736,10 +46190,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -45922,10 +46378,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46104,10 +46562,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46288,10 +46748,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46472,10 +46934,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46656,10 +47120,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -46842,10 +47308,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47024,10 +47492,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47232,10 +47702,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47492,10 +47964,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47676,10 +48150,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -47860,10 +48336,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48046,10 +48524,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48228,10 +48708,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48412,10 +48894,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48686,10 +49170,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -48946,10 +49432,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49130,10 +49618,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49314,10 +49804,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49500,10 +49992,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49682,10 +50176,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -49874,10 +50370,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50134,10 +50632,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50318,10 +50818,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50502,10 +51004,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50688,10 +51192,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -50870,10 +51376,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51054,10 +51562,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51238,10 +51748,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51422,10 +51934,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51608,10 +52122,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51790,10 +52306,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -51974,10 +52492,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52256,10 +52776,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52516,10 +53038,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52700,10 +53224,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -52884,10 +53410,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53070,10 +53598,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53252,10 +53782,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53436,10 +53968,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53710,10 +54244,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -53970,10 +54506,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54154,10 +54692,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54338,10 +54878,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54524,10 +55066,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54706,10 +55250,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -54898,10 +55444,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55158,10 +55706,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55342,10 +55892,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55526,10 +56078,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55712,10 +56266,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -55894,10 +56450,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56078,10 +56636,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56262,10 +56822,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56446,10 +57008,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56632,10 +57196,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -56814,10 +57380,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57014,10 +57582,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57274,10 +57844,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57458,10 +58030,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57642,10 +58216,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -57828,10 +58404,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58010,10 +58588,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58194,10 +58774,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58468,10 +59050,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58728,10 +59312,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -58912,10 +59498,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59096,10 +59684,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59282,10 +59872,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59464,10 +60056,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59656,10 +60250,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -59916,10 +60512,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60100,10 +60698,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60284,10 +60884,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60470,10 +61072,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60652,10 +61256,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -60836,10 +61442,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61020,10 +61628,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61204,10 +61814,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61390,10 +62002,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61572,10 +62186,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61756,10 +62372,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -61940,10 +62558,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62124,10 +62744,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62310,10 +62932,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62492,10 +63116,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62716,10 +63342,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -62976,10 +63604,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -63160,10 +63790,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -63344,10 +63976,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -63530,10 +64164,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -63712,10 +64348,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -63896,10 +64534,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -64170,10 +64810,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -64430,10 +65072,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -64614,10 +65258,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -64798,10 +65444,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -64984,10 +65632,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -65166,10 +65816,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -65358,10 +66010,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -65618,10 +66272,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -65802,10 +66458,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -65986,10 +66644,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -66172,10 +66832,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -66354,10 +67016,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -66538,10 +67202,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -66722,10 +67388,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -66906,10 +67574,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -67092,10 +67762,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -67274,10 +67946,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -67458,10 +68132,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -67740,10 +68416,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -68000,10 +68678,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -68184,10 +68864,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -68368,10 +69050,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -68554,10 +69238,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -68736,10 +69422,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -68920,10 +69608,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -69194,10 +69884,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -69454,10 +70146,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -69638,10 +70332,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -69822,10 +70518,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -70008,10 +70706,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -70190,10 +70890,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -70382,10 +71084,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -70642,10 +71346,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -70826,10 +71532,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -71010,10 +71718,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -71196,10 +71906,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -71378,10 +72090,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -71562,10 +72276,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -71746,10 +72462,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -71930,10 +72648,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -72116,10 +72836,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -72298,10 +73020,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -72498,10 +73222,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -72758,10 +73484,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -72942,10 +73670,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -73126,10 +73856,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -73312,10 +74044,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -73494,10 +74228,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.and_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -73678,10 +74414,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -73952,10 +74690,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -74212,10 +74952,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -74396,10 +75138,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -74580,10 +75324,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -74766,10 +75512,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -74948,10 +75696,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.not_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -75140,10 +75890,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.byte_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -75400,10 +76152,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -75584,10 +76338,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -75768,10 +76524,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -75954,10 +76712,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -76136,10 +76896,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -76320,10 +77082,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -76504,10 +77268,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -76688,10 +77454,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -76874,10 +77642,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -77056,10 +77826,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.or_statement.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -77240,10 +78012,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -77424,10 +78198,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -77608,10 +78384,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -77794,10 +78572,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -77976,10 +78756,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.rate_based_statement.scope_down_statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -78160,10 +78942,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.regex_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -78344,10 +79128,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.regex_pattern_set_reference_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -78546,10 +79332,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.size_constraint_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -78732,10 +79520,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.sqli_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { @@ -78914,10 +79704,12 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet'); ):: std.prune(a={}), }, body:: { - '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), + '#new':: d.fn(help='\n`aws.wafv2_web_acl.rule.statement.xss_match_statement.field_to_match.body.new` constructs a new object with attributes and blocks configured for the `body`\nTerraform sub block.\n\n\n\n**Args**:\n - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object.\n\n**Returns**:\n - An attribute object that represents the `body` sub block.\n', args=[]), new( - - ):: std.prune(a={}), + oversize_handling=null + ):: std.prune(a={ + oversize_handling: oversize_handling, + }), }, cookies:: { match_pattern:: { diff --git a/docs/4.x/README.md b/docs/4.x/README.md index fe0714e0..997262dd 100644 --- a/docs/4.x/README.md +++ b/docs/4.x/README.md @@ -124,9 +124,12 @@ project. * [athena_workgroup](athena_workgroup.md) * [auditmanager_account_registration](auditmanager_account_registration.md) * [auditmanager_assessment](auditmanager_assessment.md) +* [auditmanager_assessment_delegation](auditmanager_assessment_delegation.md) * [auditmanager_assessment_report](auditmanager_assessment_report.md) * [auditmanager_control](auditmanager_control.md) * [auditmanager_framework](auditmanager_framework.md) +* [auditmanager_framework_share](auditmanager_framework_share.md) +* [auditmanager_organization_admin_account_registration](auditmanager_organization_admin_account_registration.md) * [autoscaling_attachment](autoscaling_attachment.md) * [autoscaling_group](autoscaling_group.md) * [autoscaling_group_tag](autoscaling_group_tag.md) diff --git a/docs/4.x/auditmanager_assessment_delegation.md b/docs/4.x/auditmanager_assessment_delegation.md new file mode 100644 index 00000000..7156a829 --- /dev/null +++ b/docs/4.x/auditmanager_assessment_delegation.md @@ -0,0 +1,168 @@ +--- +permalink: /auditmanager_assessment_delegation/ +--- + +# auditmanager_assessment_delegation + +`auditmanager_assessment_delegation` represents the `aws_auditmanager_assessment_delegation` Terraform resource. + + + +This package contains functions and utilities for setting up the resource using Jsonnet code. + + +## Index + +* [`fn new()`](#fn-new) +* [`fn newAttrs()`](#fn-newattrs) +* [`fn withAssessmentId()`](#fn-withassessmentid) +* [`fn withComment()`](#fn-withcomment) +* [`fn withControlSetId()`](#fn-withcontrolsetid) +* [`fn withRoleArn()`](#fn-withrolearn) +* [`fn withRoleType()`](#fn-withroletype) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.auditmanager_assessment_delegation.new` injects a new `aws_auditmanager_assessment_delegation` Terraform `resource` +block into the root module document. + +Additionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the +resource. For example, if you added a new instance to the root using: + + # arguments omitted for brevity + aws.auditmanager_assessment_delegation.new('some_id') + +You can get the reference to the `id` field of the created `aws.auditmanager_assessment_delegation` using the reference: + + $._ref.aws_auditmanager_assessment_delegation.some_id.get('id') + +This is the same as directly entering `"${ aws_auditmanager_assessment_delegation.some_id.id }"` as the value. + +NOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`, +or `$` to refer to the root object. Instead, make an explicit outer object using `local`. + +**Args**: + - `resourceLabel` (`string`): The name label of the block. + - `assessment_id` (`string`): Set the `assessment_id` field on the resulting resource block. + - `comment` (`string`): Set the `comment` field on the resulting resource block. When `null`, the `comment` field will be omitted from the resulting object. + - `control_set_id` (`string`): Set the `control_set_id` field on the resulting resource block. + - `role_arn` (`string`): Set the `role_arn` field on the resulting resource block. + - `role_type` (`string`): Set the `role_type` field on the resulting resource block. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.auditmanager_assessment_delegation.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_assessment_delegation` +Terraform resource. + +Unlike [aws.auditmanager_assessment_delegation.new](#fn-new), this function will not inject the `resource` +block into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the +[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block. + +This is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to +injecting into a complete block. + +**Args**: + - `assessment_id` (`string`): Set the `assessment_id` field on the resulting object. + - `comment` (`string`): Set the `comment` field on the resulting object. When `null`, the `comment` field will be omitted from the resulting object. + - `control_set_id` (`string`): Set the `control_set_id` field on the resulting object. + - `role_arn` (`string`): Set the `role_arn` field on the resulting object. + - `role_type` (`string`): Set the `role_type` field on the resulting object. + +**Returns**: + - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `auditmanager_assessment_delegation` resource into the root Terraform configuration. + + +### fn withAssessmentId + +```ts +withAssessmentId() +``` + +`aws.string.withAssessmentId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the assessment_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `assessment_id` field. + + +### fn withComment + +```ts +withComment() +``` + +`aws.string.withComment` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the comment field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `comment` field. + + +### fn withControlSetId + +```ts +withControlSetId() +``` + +`aws.string.withControlSetId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the control_set_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `control_set_id` field. + + +### fn withRoleArn + +```ts +withRoleArn() +``` + +`aws.string.withRoleArn` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the role_arn field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `role_arn` field. + + +### fn withRoleType + +```ts +withRoleType() +``` + +`aws.string.withRoleType` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the role_type field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `role_type` field. diff --git a/docs/4.x/auditmanager_framework_share.md b/docs/4.x/auditmanager_framework_share.md new file mode 100644 index 00000000..16fef9da --- /dev/null +++ b/docs/4.x/auditmanager_framework_share.md @@ -0,0 +1,149 @@ +--- +permalink: /auditmanager_framework_share/ +--- + +# auditmanager_framework_share + +`auditmanager_framework_share` represents the `aws_auditmanager_framework_share` Terraform resource. + + + +This package contains functions and utilities for setting up the resource using Jsonnet code. + + +## Index + +* [`fn new()`](#fn-new) +* [`fn newAttrs()`](#fn-newattrs) +* [`fn withComment()`](#fn-withcomment) +* [`fn withDestinationAccount()`](#fn-withdestinationaccount) +* [`fn withDestinationRegion()`](#fn-withdestinationregion) +* [`fn withFrameworkId()`](#fn-withframeworkid) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.auditmanager_framework_share.new` injects a new `aws_auditmanager_framework_share` Terraform `resource` +block into the root module document. + +Additionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the +resource. For example, if you added a new instance to the root using: + + # arguments omitted for brevity + aws.auditmanager_framework_share.new('some_id') + +You can get the reference to the `id` field of the created `aws.auditmanager_framework_share` using the reference: + + $._ref.aws_auditmanager_framework_share.some_id.get('id') + +This is the same as directly entering `"${ aws_auditmanager_framework_share.some_id.id }"` as the value. + +NOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`, +or `$` to refer to the root object. Instead, make an explicit outer object using `local`. + +**Args**: + - `resourceLabel` (`string`): The name label of the block. + - `comment` (`string`): Set the `comment` field on the resulting resource block. When `null`, the `comment` field will be omitted from the resulting object. + - `destination_account` (`string`): Set the `destination_account` field on the resulting resource block. + - `destination_region` (`string`): Set the `destination_region` field on the resulting resource block. + - `framework_id` (`string`): Set the `framework_id` field on the resulting resource block. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.auditmanager_framework_share.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_framework_share` +Terraform resource. + +Unlike [aws.auditmanager_framework_share.new](#fn-new), this function will not inject the `resource` +block into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the +[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block. + +This is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to +injecting into a complete block. + +**Args**: + - `comment` (`string`): Set the `comment` field on the resulting object. When `null`, the `comment` field will be omitted from the resulting object. + - `destination_account` (`string`): Set the `destination_account` field on the resulting object. + - `destination_region` (`string`): Set the `destination_region` field on the resulting object. + - `framework_id` (`string`): Set the `framework_id` field on the resulting object. + +**Returns**: + - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `auditmanager_framework_share` resource into the root Terraform configuration. + + +### fn withComment + +```ts +withComment() +``` + +`aws.string.withComment` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the comment field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `comment` field. + + +### fn withDestinationAccount + +```ts +withDestinationAccount() +``` + +`aws.string.withDestinationAccount` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the destination_account field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `destination_account` field. + + +### fn withDestinationRegion + +```ts +withDestinationRegion() +``` + +`aws.string.withDestinationRegion` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the destination_region field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `destination_region` field. + + +### fn withFrameworkId + +```ts +withFrameworkId() +``` + +`aws.string.withFrameworkId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the framework_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `framework_id` field. diff --git a/docs/4.x/auditmanager_organization_admin_account_registration.md b/docs/4.x/auditmanager_organization_admin_account_registration.md new file mode 100644 index 00000000..3988dee9 --- /dev/null +++ b/docs/4.x/auditmanager_organization_admin_account_registration.md @@ -0,0 +1,92 @@ +--- +permalink: /auditmanager_organization_admin_account_registration/ +--- + +# auditmanager_organization_admin_account_registration + +`auditmanager_organization_admin_account_registration` represents the `aws_auditmanager_organization_admin_account_registration` Terraform resource. + + + +This package contains functions and utilities for setting up the resource using Jsonnet code. + + +## Index + +* [`fn new()`](#fn-new) +* [`fn newAttrs()`](#fn-newattrs) +* [`fn withAdminAccountId()`](#fn-withadminaccountid) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.auditmanager_organization_admin_account_registration.new` injects a new `aws_auditmanager_organization_admin_account_registration` Terraform `resource` +block into the root module document. + +Additionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the +resource. For example, if you added a new instance to the root using: + + # arguments omitted for brevity + aws.auditmanager_organization_admin_account_registration.new('some_id') + +You can get the reference to the `id` field of the created `aws.auditmanager_organization_admin_account_registration` using the reference: + + $._ref.aws_auditmanager_organization_admin_account_registration.some_id.get('id') + +This is the same as directly entering `"${ aws_auditmanager_organization_admin_account_registration.some_id.id }"` as the value. + +NOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`, +or `$` to refer to the root object. Instead, make an explicit outer object using `local`. + +**Args**: + - `resourceLabel` (`string`): The name label of the block. + - `admin_account_id` (`string`): Set the `admin_account_id` field on the resulting resource block. + +**Returns**: +- A mixin object that injects the new resource into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.auditmanager_organization_admin_account_registration.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_organization_admin_account_registration` +Terraform resource. + +Unlike [aws.auditmanager_organization_admin_account_registration.new](#fn-new), this function will not inject the `resource` +block into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the +[tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) function to build a complete block. + +This is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to +injecting into a complete block. + +**Args**: + - `admin_account_id` (`string`): Set the `admin_account_id` field on the resulting object. + +**Returns**: + - An attribute object that can be used with [tf.withResource](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withresource) to construct a new `auditmanager_organization_admin_account_registration` resource into the root Terraform configuration. + + +### fn withAdminAccountId + +```ts +withAdminAccountId() +``` + +`aws.string.withAdminAccountId` constructs a mixin object that can be merged into the `string` +Terraform resource block to set or update the admin_account_id field. + + + +**Args**: + - `resourceLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `admin_account_id` field. diff --git a/docs/4.x/data/auditmanager_framework.md b/docs/4.x/data/auditmanager_framework.md new file mode 100644 index 00000000..edbd1744 --- /dev/null +++ b/docs/4.x/data/auditmanager_framework.md @@ -0,0 +1,199 @@ +--- +permalink: /data/auditmanager_framework/ +--- + +# data.auditmanager_framework + +`auditmanager_framework` represents the `aws_auditmanager_framework` Terraform data source. + + + +This package contains functions and utilities for setting up the data source using Jsonnet code. + + +## Index + +* [`fn new()`](#fn-new) +* [`fn newAttrs()`](#fn-newattrs) +* [`fn withControlSets()`](#fn-withcontrolsets) +* [`fn withControlSetsMixin()`](#fn-withcontrolsetsmixin) +* [`fn withFrameworkType()`](#fn-withframeworktype) +* [`fn withName()`](#fn-withname) +* [`obj control_sets`](#obj-control_sets) + * [`fn new()`](#fn-control_setsnew) + * [`obj control_sets.controls`](#obj-control_setscontrols) + * [`fn new()`](#fn-control_setscontrolsnew) + +## Fields + +### fn new + +```ts +new() +``` + + +`aws.data.auditmanager_framework.new` injects a new `data_aws_auditmanager_framework` Terraform `data source` +block into the root module document. + +Additionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the +resource. For example, if you added a new instance to the root using: + + # arguments omitted for brevity + aws.data.auditmanager_framework.new('some_id') + +You can get the reference to the `id` field of the created `aws.data.auditmanager_framework` using the reference: + + $._ref.data_aws_auditmanager_framework.some_id.get('id') + +This is the same as directly entering `"${ data_aws_auditmanager_framework.some_id.id }"` as the value. + +NOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`, +or `$` to refer to the root object. Instead, make an explicit outer object using `local`. + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block. + - `framework_type` (`string`): Set the `framework_type` field on the resulting data source block. + - `name` (`string`): Set the `name` field on the resulting data source block. + - `control_sets` (`list[obj]`): Set the `control_sets` field on the resulting data source block. When `null`, the `control_sets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.data.auditmanager_framework.control_sets.new](#fn-control_setsnew) constructor. + +**Returns**: +- A mixin object that injects the new data source into the root Terraform configuration. + + +### fn newAttrs + +```ts +newAttrs() +``` + + +`aws.data.auditmanager_framework.newAttrs` constructs a new object with attributes and blocks configured for the `auditmanager_framework` +Terraform data source. + +Unlike [aws.data.auditmanager_framework.new](#fn-new), this function will not inject the `data source` +block into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the +[tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) function to build a complete block. + +This is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to +injecting into a complete block. + +**Args**: + - `framework_type` (`string`): Set the `framework_type` field on the resulting object. + - `name` (`string`): Set the `name` field on the resulting object. + - `control_sets` (`list[obj]`): Set the `control_sets` field on the resulting object. When `null`, the `control_sets` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.data.auditmanager_framework.control_sets.new](#fn-control_setsnew) constructor. + +**Returns**: + - An attribute object that can be used with [tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) to construct a new `auditmanager_framework` data source into the root Terraform configuration. + + +### fn withControlSets + +```ts +withControlSets() +``` + +`aws.list[obj].withControlSets` constructs a mixin object that can be merged into the `list[obj]` +Terraform data source block to set or update the control_sets field. + +This function will replace the array with the passed in `value`. If you wish to instead append the +passed in value to the existing array, use the [aws.list[obj].withControlSetsMixin](TODO) function. + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `control_sets` field. + + +### fn withControlSetsMixin + +```ts +withControlSetsMixin() +``` + +`aws.list[obj].withControlSetsMixin` constructs a mixin object that can be merged into the `list[obj]` +Terraform data source block to set or update the control_sets field. + +This function will append the passed in array or object to the existing array. If you wish +to instead replace the array with the passed in `value`, use the [aws.list[obj].withControlSets](TODO) +function. + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`list[obj]`): The value to set for the `control_sets` field. + + +### fn withFrameworkType + +```ts +withFrameworkType() +``` + +`aws.string.withFrameworkType` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the framework_type field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `framework_type` field. + + +### fn withName + +```ts +withName() +``` + +`aws.string.withName` constructs a mixin object that can be merged into the `string` +Terraform data source block to set or update the name field. + + + +**Args**: + - `dataSrcLabel` (`string`): The name label of the block to update. + - `value` (`string`): The value to set for the `name` field. + + +## obj control_sets + + + +### fn control_sets.new + +```ts +new() +``` + + +`aws.auditmanager_framework.control_sets.new` constructs a new object with attributes and blocks configured for the `control_sets` +Terraform sub block. + + + +**Args**: + - `controls` (`list[obj]`): Set the `controls` field on the resulting object. When `null`, the `controls` sub block will be omitted from the resulting object. When setting the sub block, it is recommended to construct the object using the [aws.auditmanager_framework.control_sets.controls.new](#fn-control_setscontrolsnew) constructor. + +**Returns**: + - An attribute object that represents the `control_sets` sub block. + + +## obj control_sets.controls + + + +### fn control_sets.controls.new + +```ts +new() +``` + + +`aws.auditmanager_framework.control_sets.controls.new` constructs a new object with attributes and blocks configured for the `controls` +Terraform sub block. + + + +**Returns**: + - An attribute object that represents the `controls` sub block. diff --git a/docs/4.x/data/index.md b/docs/4.x/data/index.md index 48aeabab..7ad967c4 100644 --- a/docs/4.x/data/index.md +++ b/docs/4.x/data/index.md @@ -32,6 +32,7 @@ permalink: /data/ * [appmesh_virtual_service](appmesh_virtual_service.md) * [arn](arn.md) * [auditmanager_control](auditmanager_control.md) +* [auditmanager_framework](auditmanager_framework.md) * [autoscaling_group](autoscaling_group.md) * [autoscaling_groups](autoscaling_groups.md) * [availability_zone](availability_zone.md) diff --git a/docs/4.x/medialive_channel.md b/docs/4.x/medialive_channel.md index 99b59946..0ce367d1 100644 --- a/docs/4.x/medialive_channel.md +++ b/docs/4.x/medialive_channel.md @@ -1134,6 +1134,7 @@ Terraform sub block. - `coding_mode` (`string`): Set the `coding_mode` field on the resulting object. When `null`, the `coding_mode` field will be omitted from the resulting object. - `input_type` (`string`): Set the `input_type` field on the resulting object. When `null`, the `input_type` field will be omitted from the resulting object. - `profile` (`string`): Set the `profile` field on the resulting object. When `null`, the `profile` field will be omitted from the resulting object. + - `rate_control_mode` (`string`): Set the `rate_control_mode` field on the resulting object. When `null`, the `rate_control_mode` field will be omitted from the resulting object. - `raw_format` (`string`): Set the `raw_format` field on the resulting object. When `null`, the `raw_format` field will be omitted from the resulting object. - `sample_rate` (`number`): Set the `sample_rate` field on the resulting object. When `null`, the `sample_rate` field will be omitted from the resulting object. - `spec` (`string`): Set the `spec` field on the resulting object. When `null`, the `spec` field will be omitted from the resulting object. diff --git a/docs/4.x/wafv2_rule_group.md b/docs/4.x/wafv2_rule_group.md index 2123cb59..fbe9f8f5 100644 --- a/docs/4.x/wafv2_rule_group.md +++ b/docs/4.x/wafv2_rule_group.md @@ -13853,6 +13853,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -14411,6 +14414,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -14848,6 +14854,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -15286,6 +15295,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -15722,6 +15734,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -16158,6 +16173,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -16596,6 +16614,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -17209,6 +17230,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -17767,6 +17791,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -18204,6 +18231,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -18642,6 +18672,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -19078,6 +19111,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -19514,6 +19550,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -20006,6 +20045,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -20564,6 +20606,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -21001,6 +21046,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -21439,6 +21487,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -21875,6 +21926,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -22311,6 +22365,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -22748,6 +22805,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -23185,6 +23245,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -23623,6 +23686,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -24059,6 +24125,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -24495,6 +24564,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -24933,6 +25005,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -25603,6 +25678,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -26161,6 +26239,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -26598,6 +26679,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -27036,6 +27120,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -27472,6 +27559,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -27908,6 +27998,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -28346,6 +28439,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -28959,6 +29055,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -29517,6 +29616,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -29954,6 +30056,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -30392,6 +30497,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -30828,6 +30936,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -31264,6 +31375,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -31756,6 +31870,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -32314,6 +32431,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -32751,6 +32871,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -33189,6 +33312,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -33625,6 +33751,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -34061,6 +34190,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -34498,6 +34630,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -34935,6 +35070,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -35373,6 +35511,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -35809,6 +35950,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -36245,6 +36389,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -36794,6 +36941,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -37352,6 +37502,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -37789,6 +37942,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -38227,6 +38383,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -38663,6 +38822,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -39099,6 +39261,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -39537,6 +39702,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -40150,6 +40318,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -40708,6 +40879,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -41145,6 +41319,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -41583,6 +41760,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -42019,6 +42199,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -42455,6 +42638,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -42947,6 +43133,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -43505,6 +43694,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -43942,6 +44134,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -44380,6 +44575,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -44816,6 +45014,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -45252,6 +45453,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -45689,6 +45893,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -46126,6 +46333,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -46564,6 +46774,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -47000,6 +47213,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -47436,6 +47652,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -47873,6 +48092,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -48310,6 +48532,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -48748,6 +48973,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -49184,6 +49412,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -49620,6 +49851,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -50058,6 +50292,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -50785,6 +51022,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -51343,6 +51583,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -51780,6 +52023,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -52218,6 +52464,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -52654,6 +52903,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -53090,6 +53342,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -53528,6 +53783,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -54141,6 +54399,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -54699,6 +54960,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -55136,6 +55400,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -55574,6 +55841,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -56010,6 +56280,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -56446,6 +56719,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -56938,6 +57214,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -57496,6 +57775,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -57933,6 +58215,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -58371,6 +58656,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -58807,6 +59095,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -59243,6 +59534,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -59680,6 +59974,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -60117,6 +60414,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -60555,6 +60855,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -60991,6 +61294,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -61427,6 +61733,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -61865,6 +62174,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -62535,6 +62847,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -63093,6 +63408,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -63530,6 +63848,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -63968,6 +64289,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -64404,6 +64728,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -64840,6 +65167,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -65278,6 +65608,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -65891,6 +66224,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -66449,6 +66785,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -66886,6 +67225,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -67324,6 +67666,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -67760,6 +68105,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -68196,6 +68544,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -68688,6 +69039,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -69246,6 +69600,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -69683,6 +70040,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -70121,6 +70481,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -70557,6 +70920,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -70993,6 +71359,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -71430,6 +71799,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -71867,6 +72239,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -72305,6 +72680,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -72741,6 +73119,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -73177,6 +73558,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -73726,6 +74110,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -74284,6 +74671,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -74721,6 +75111,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -75159,6 +75552,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -75595,6 +75991,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -76031,6 +76430,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -76469,6 +76871,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -77082,6 +77487,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -77640,6 +78048,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -78077,6 +78488,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -78515,6 +78929,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -78951,6 +79368,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -79387,6 +79807,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -79879,6 +80302,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -80437,6 +80863,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -80874,6 +81303,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -81312,6 +81744,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -81748,6 +82183,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -82184,6 +82622,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -82621,6 +83062,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -83058,6 +83502,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -83496,6 +83943,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -83932,6 +84382,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -84368,6 +84821,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -84805,6 +85261,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -85242,6 +85701,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -85680,6 +86142,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -86116,6 +86581,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -86552,6 +87020,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -87158,6 +87629,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -87716,6 +88190,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -88153,6 +88630,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -88591,6 +89071,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -89027,6 +89510,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -89463,6 +89949,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -89901,6 +90390,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -90514,6 +91006,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -91072,6 +91567,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -91509,6 +92007,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -91947,6 +92448,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -92383,6 +92887,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -92819,6 +93326,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -93311,6 +93821,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -93869,6 +94382,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -94306,6 +94822,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -94744,6 +95263,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -95180,6 +95702,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -95616,6 +96141,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -96053,6 +96581,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -96490,6 +97021,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -96928,6 +97462,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -97364,6 +97901,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -97800,6 +98340,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -98238,6 +98781,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -98908,6 +99454,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -99466,6 +100015,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -99903,6 +100455,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -100341,6 +100896,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -100777,6 +101335,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -101213,6 +101774,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -101651,6 +102215,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -102264,6 +102831,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -102822,6 +103392,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -103259,6 +103832,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -103697,6 +104273,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -104133,6 +104712,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -104569,6 +105151,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -105061,6 +105646,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -105619,6 +106207,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -106056,6 +106647,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -106494,6 +107088,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -106930,6 +107527,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -107366,6 +107966,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -107803,6 +108406,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -108240,6 +108846,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -108678,6 +109287,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -109114,6 +109726,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -109550,6 +110165,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -110099,6 +110717,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -110657,6 +111278,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -111094,6 +111718,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -111532,6 +112159,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -111968,6 +112598,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -112404,6 +113037,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -112842,6 +113478,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -113455,6 +114094,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -114013,6 +114655,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -114450,6 +115095,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -114888,6 +115536,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -115324,6 +115975,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -115760,6 +116414,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -116252,6 +116909,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -116810,6 +117470,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -117247,6 +117910,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -117685,6 +118351,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -118121,6 +118790,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -118557,6 +119229,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -118994,6 +119669,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -119431,6 +120109,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -119869,6 +120550,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -120305,6 +120989,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -120741,6 +121428,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -121178,6 +121868,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -121615,6 +122308,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -122053,6 +122749,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -122489,6 +123188,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -122925,6 +123627,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -123558,6 +124263,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -124116,6 +124824,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -124553,6 +125264,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -124991,6 +125705,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -125427,6 +126144,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -125863,6 +126583,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -126301,6 +127024,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -126914,6 +127640,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -127472,6 +128201,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -127909,6 +128641,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -128347,6 +129082,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -128783,6 +129521,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -129219,6 +129960,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -129711,6 +130455,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -130269,6 +131016,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -130706,6 +131456,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -131144,6 +131897,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -131580,6 +132336,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -132016,6 +132775,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -132453,6 +133215,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -132890,6 +133655,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -133328,6 +134096,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -133764,6 +134535,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -134200,6 +134974,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -134638,6 +135415,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -135308,6 +136088,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -135866,6 +136649,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -136303,6 +137089,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -136741,6 +137530,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -137177,6 +137969,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -137613,6 +138408,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -138051,6 +138849,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -138664,6 +139465,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -139222,6 +140026,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -139659,6 +140466,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -140097,6 +140907,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -140533,6 +141346,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -140969,6 +141785,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -141461,6 +142280,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -142019,6 +142841,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -142456,6 +143281,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -142894,6 +143722,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -143330,6 +144161,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -143766,6 +144600,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -144203,6 +145040,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -144640,6 +145480,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -145078,6 +145921,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -145514,6 +146360,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -145950,6 +146799,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -146499,6 +147351,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -147057,6 +147912,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -147494,6 +148352,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -147932,6 +148793,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -148368,6 +149232,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -148804,6 +149671,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -149242,6 +150112,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -149855,6 +150728,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -150413,6 +151289,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -150850,6 +151729,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -151288,6 +152170,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -151724,6 +152609,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -152160,6 +153048,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -152652,6 +153543,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -153210,6 +154104,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -153647,6 +154544,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -154085,6 +154985,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -154521,6 +155424,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -154957,6 +155863,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -155394,6 +156303,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -155831,6 +156743,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -156269,6 +157184,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -156705,6 +157623,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -157141,6 +158062,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -157578,6 +158502,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -158015,6 +158942,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -158453,6 +159383,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -158889,6 +159822,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -159325,6 +160261,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -159762,6 +160701,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -160199,6 +161141,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -160637,6 +161582,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -161073,6 +162021,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -161509,6 +162460,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. diff --git a/docs/4.x/wafv2_web_acl.md b/docs/4.x/wafv2_web_acl.md index 031e52f6..91cb107c 100644 --- a/docs/4.x/wafv2_web_acl.md +++ b/docs/4.x/wafv2_web_acl.md @@ -17393,6 +17393,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -17951,6 +17954,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -18388,6 +18394,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -18826,6 +18835,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -19262,6 +19274,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -19698,6 +19713,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -20136,6 +20154,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -20749,6 +20770,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -21307,6 +21331,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -21744,6 +21771,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -22182,6 +22212,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -22618,6 +22651,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -23054,6 +23090,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -23546,6 +23585,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -24104,6 +24146,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -24541,6 +24586,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -24979,6 +25027,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -25415,6 +25466,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -25851,6 +25905,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -26288,6 +26345,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -26725,6 +26785,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -27163,6 +27226,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -27599,6 +27665,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -28035,6 +28104,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -28473,6 +28545,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -29143,6 +29218,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -29701,6 +29779,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -30138,6 +30219,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -30576,6 +30660,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -31012,6 +31099,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -31448,6 +31538,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -31886,6 +31979,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -32499,6 +32595,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -33057,6 +33156,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -33494,6 +33596,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -33932,6 +34037,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -34368,6 +34476,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -34804,6 +34915,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -35296,6 +35410,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -35854,6 +35971,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -36291,6 +36411,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -36729,6 +36852,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -37165,6 +37291,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -37601,6 +37730,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -38038,6 +38170,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -38475,6 +38610,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -38913,6 +39051,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -39349,6 +39490,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -39785,6 +39929,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -40334,6 +40481,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -40892,6 +41042,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -41329,6 +41482,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -41767,6 +41923,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -42203,6 +42362,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -42639,6 +42801,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -43077,6 +43242,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -43690,6 +43858,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -44248,6 +44419,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -44685,6 +44859,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -45123,6 +45300,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -45559,6 +45739,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -45995,6 +46178,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -46487,6 +46673,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -47045,6 +47234,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -47482,6 +47674,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -47920,6 +48115,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -48356,6 +48554,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -48792,6 +48993,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -49229,6 +49433,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -49666,6 +49873,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -50104,6 +50314,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -50540,6 +50753,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -50976,6 +51192,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -51413,6 +51632,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -51850,6 +52072,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -52288,6 +52513,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -52724,6 +52952,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -53160,6 +53391,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -53598,6 +53832,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -54782,6 +55019,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -55340,6 +55580,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -55777,6 +56020,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -56215,6 +56461,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -56651,6 +56900,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -57087,6 +57339,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -57525,6 +57780,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -58138,6 +58396,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -58696,6 +58957,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -59133,6 +59397,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -59571,6 +59838,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -60007,6 +60277,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -60443,6 +60716,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -60935,6 +61211,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -61493,6 +61772,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -61930,6 +62212,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -62368,6 +62653,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -62804,6 +63092,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -63240,6 +63531,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -63677,6 +63971,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -64114,6 +64411,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -64552,6 +64852,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -64988,6 +65291,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -65424,6 +65730,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -65862,6 +66171,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -66532,6 +66844,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -67090,6 +67405,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -67527,6 +67845,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -67965,6 +68286,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -68401,6 +68725,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -68837,6 +69164,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -69275,6 +69605,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -69888,6 +70221,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -70446,6 +70782,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -70883,6 +71222,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -71321,6 +71663,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -71757,6 +72102,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -72193,6 +72541,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -72685,6 +73036,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -73243,6 +73597,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -73680,6 +74037,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -74118,6 +74478,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -74554,6 +74917,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -74990,6 +75356,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -75427,6 +75796,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -75864,6 +76236,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -76302,6 +76677,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -76738,6 +77116,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -77174,6 +77555,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -77723,6 +78107,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -78281,6 +78668,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -78718,6 +79108,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -79156,6 +79549,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -79592,6 +79988,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -80028,6 +80427,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -80466,6 +80868,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -81079,6 +81484,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -81637,6 +82045,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -82074,6 +82485,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -82512,6 +82926,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -82948,6 +83365,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -83384,6 +83804,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -83876,6 +84299,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -84434,6 +84860,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -84871,6 +85300,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -85309,6 +85741,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -85745,6 +86180,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -86181,6 +86619,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -86618,6 +87059,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -87055,6 +87499,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -87493,6 +87940,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -87929,6 +88379,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -88365,6 +88818,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -88802,6 +89258,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -89239,6 +89698,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -89677,6 +90139,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -90113,6 +90578,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -90549,6 +91017,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -91155,6 +91626,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -91713,6 +92187,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -92150,6 +92627,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -92588,6 +93068,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -93024,6 +93507,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -93460,6 +93946,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -93898,6 +94387,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -94511,6 +95003,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -95069,6 +95564,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -95506,6 +96004,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -95944,6 +96445,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -96380,6 +96884,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -96816,6 +97323,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -97308,6 +97818,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -97866,6 +98379,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -98303,6 +98819,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -98741,6 +99260,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -99177,6 +99699,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -99613,6 +100138,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -100050,6 +100578,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -100487,6 +101018,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -100925,6 +101459,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -101361,6 +101898,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -101797,6 +102337,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -102235,6 +102778,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -102905,6 +103451,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -103463,6 +104012,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -103900,6 +104452,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -104338,6 +104893,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -104774,6 +105332,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -105210,6 +105771,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -105648,6 +106212,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -106261,6 +106828,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -106819,6 +107389,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -107256,6 +107829,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -107694,6 +108270,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -108130,6 +108709,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -108566,6 +109148,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -109058,6 +109643,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -109616,6 +110204,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -110053,6 +110644,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -110491,6 +111085,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -110927,6 +111524,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -111363,6 +111963,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -111800,6 +112403,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -112237,6 +112843,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -112675,6 +113284,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -113111,6 +113723,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -113547,6 +114162,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -114096,6 +114714,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -114654,6 +115275,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -115091,6 +115715,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -115529,6 +116156,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -115965,6 +116595,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -116401,6 +117034,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -116839,6 +117475,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -117452,6 +118091,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -118010,6 +118652,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -118447,6 +119092,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -118885,6 +119533,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -119321,6 +119972,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -119757,6 +120411,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -120249,6 +120906,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -120807,6 +121467,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -121244,6 +121907,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -121682,6 +122348,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -122118,6 +122787,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -122554,6 +123226,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -122991,6 +123666,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -123428,6 +124106,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -123866,6 +124547,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -124302,6 +124986,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -124738,6 +125425,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -125175,6 +125865,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -125612,6 +126305,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -126050,6 +126746,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -126486,6 +127185,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -126922,6 +127624,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -127528,6 +128233,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -128086,6 +128794,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -128523,6 +129234,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -128961,6 +129675,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -129397,6 +130114,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -129833,6 +130553,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -130271,6 +130994,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -130884,6 +131610,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -131442,6 +132171,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -131879,6 +132611,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -132317,6 +133052,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -132753,6 +133491,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -133189,6 +133930,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -133681,6 +134425,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -134239,6 +134986,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -134676,6 +135426,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -135114,6 +135867,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -135550,6 +136306,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -135986,6 +136745,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -136423,6 +137185,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -136860,6 +137625,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -137298,6 +138066,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -137734,6 +138505,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -138170,6 +138944,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -138608,6 +139385,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -139278,6 +140058,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -139836,6 +140619,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -140273,6 +141059,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -140711,6 +141500,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -141147,6 +141939,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -141583,6 +142378,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -142021,6 +142819,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -142634,6 +143435,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -143192,6 +143996,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -143629,6 +144436,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -144067,6 +144877,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -144503,6 +145316,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -144939,6 +145755,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -145431,6 +146250,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -145989,6 +146811,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -146426,6 +147251,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -146864,6 +147692,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -147300,6 +148131,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -147736,6 +148570,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -148173,6 +149010,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -148610,6 +149450,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -149048,6 +149891,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -149484,6 +150330,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -149920,6 +150769,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -150469,6 +151321,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -151027,6 +151882,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -151464,6 +152322,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -151902,6 +152763,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -152338,6 +153202,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -152774,6 +153641,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -153212,6 +154082,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -153825,6 +154698,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -154383,6 +155259,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -154820,6 +155699,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -155258,6 +156140,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -155694,6 +156579,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -156130,6 +157018,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -156622,6 +157513,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -157180,6 +158074,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -157617,6 +158514,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -158055,6 +158955,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -158491,6 +159394,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -158927,6 +159833,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -159364,6 +160273,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -159801,6 +160713,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -160239,6 +161154,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -160675,6 +161593,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -161111,6 +162032,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -161548,6 +162472,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -161985,6 +162912,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -162423,6 +163353,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -162859,6 +163792,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -163295,6 +164231,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -163928,6 +164867,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -164486,6 +165428,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -164923,6 +165868,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -165361,6 +166309,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -165797,6 +166748,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -166233,6 +167187,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -166671,6 +167628,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -167284,6 +168244,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -167842,6 +168805,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -168279,6 +169245,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -168717,6 +169686,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -169153,6 +170125,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -169589,6 +170564,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -170081,6 +171059,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -170639,6 +171620,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -171076,6 +172060,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -171514,6 +172501,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -171950,6 +172940,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -172386,6 +173379,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -172823,6 +173819,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -173260,6 +174259,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -173698,6 +174700,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -174134,6 +175139,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -174570,6 +175578,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -175008,6 +176019,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -175678,6 +176692,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -176236,6 +177253,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -176673,6 +177693,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -177111,6 +178134,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -177547,6 +178573,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -177983,6 +179012,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -178421,6 +179453,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -179034,6 +180069,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -179592,6 +180630,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -180029,6 +181070,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -180467,6 +181511,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -180903,6 +181950,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -181339,6 +182389,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -181831,6 +182884,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -182389,6 +183445,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -182826,6 +183885,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -183264,6 +184326,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -183700,6 +184765,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -184136,6 +185204,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -184573,6 +185644,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -185010,6 +186084,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -185448,6 +186525,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -185884,6 +186964,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -186320,6 +187403,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -186869,6 +187955,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -187427,6 +188516,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -187864,6 +188956,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -188302,6 +189397,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -188738,6 +189836,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -189174,6 +190275,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -189612,6 +190716,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -190225,6 +191332,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -190783,6 +191893,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -191220,6 +192333,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -191658,6 +192774,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -192094,6 +193213,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -192530,6 +193652,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -193022,6 +194147,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -193580,6 +194708,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -194017,6 +195148,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -194455,6 +195589,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -194891,6 +196028,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -195327,6 +196467,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -195764,6 +196907,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -196201,6 +197347,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -196639,6 +197788,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -197075,6 +198227,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -197511,6 +198666,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -197948,6 +199106,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -198385,6 +199546,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -198823,6 +199987,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -199259,6 +200426,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -199695,6 +200865,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -200132,6 +201305,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -200569,6 +201745,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -201054,6 +202233,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -201490,6 +202672,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block. @@ -201926,6 +203111,9 @@ Terraform sub block. +**Args**: + - `oversize_handling` (`string`): Set the `oversize_handling` field on the resulting object. When `null`, the `oversize_handling` field will be omitted from the resulting object. + **Returns**: - An attribute object that represents the `body` sub block.